小编Joh*_*lia的帖子

Opencart如何在php循环中添加语言文件中的所有内容

有没有办法从Opencart语言中读取所有内容?

目前我必须:

Controller
$this->load->language('help');          
$this->data['heading_title'] = $this->language->get('heading_title');    
$this->data['tab1'] = $this->language->get('tab1');
Run Code Online (Sandbox Code Playgroud)

语言文件

<?php
// Heading
$_['heading_title']      = 'Help';
$_['tab1'] = 'Account';    
?>
Run Code Online (Sandbox Code Playgroud)

opencart

8
推荐指数
1
解决办法
3173
查看次数

TinyMCE外包装选定元素

我在让TinyMCE包装选择内容时遇到问题.

第一个style_format simple将类添加到所选元素,这很好.

问题在于第二个style_format我希望它将所选元素包装在其中

比如,之前

<p>test text</p>
<p>test text</p>
<p>test text</p>
<p>test text</p>
Run Code Online (Sandbox Code Playgroud)

<p class="accordion_top">test text</p>
<div class="accordion_middle">
<div class="accordion_middle-wrapper">
    <p>test text</p>
    <p>test text</p>
    <p>test text</p>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)

使用我下面的jQuery版本,有问题的代码是底部样式格式

$("#tinymce").tinymce({
    script_url : HOME+"/webapp/shared/javascript/tiny_mce/tiny_mce.js",
    mode : "textareas",
    theme : "advanced",
    skin : "cirkuit",
    width: "726",
    plugins : "advlist,insertdatetime,paste,print,searchreplace,spellchecker,table,wordcount,visualchars,xhtmlxtras,template,codemagic",
    theme_advanced_buttons1 : "cut,copy,paste,pastetext,pasteword,selectall,undo,redo,|,hr,acronym,charmap,blockquote,replace,|,insertdate,inserttime,|,cleanup,removeformat,codemagic,",
    theme_advanced_buttons2 : "wrap_div,styleselect,formatselect,|,bold,italic,underline,bullist,numlist,|,table,|,link,unlink,insertimage,spellchecker|mybutton",
    theme_advanced_buttons3 : "",
    theme_advanced_buttons4 : "",
    //theme_advanced_buttons1 : "|,,table,pasteword",
    theme_advanced_blockformats : "p,h2,h3,h4,h5,h6",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,
    forced_root_block : …
Run Code Online (Sandbox Code Playgroud)

javascript jquery tinymce

7
推荐指数
1
解决办法
8190
查看次数

Tinymce只调整纵向

反正只有迫使tinymce 调整垂直大小?水平调整大小时会破坏我的布局.

因此,这与默认的textarea相同 resize: vertical;

tinymce

7
推荐指数
2
解决办法
7982
查看次数

Tinymce html5占位符通过从textarea读取属性

对于标准textareas,我使用此插件来创建占位符.我怎样才能扩展tinymce以便以这种方式工作.

例如,从textarea属性读取默认值,然后在用户关注iframe时清除.

与CKEditor类似:http://alfonsoml.blogspot.com.es/2012/04/placeholder-text-in-ckeditor.html

jquery tinymce

7
推荐指数
2
解决办法
1万
查看次数

jQuery将高度增加10px而不选择元素两次

我想将我选择的元素高度增加10px.没有选择元素两次是否有更好的方法.

例如

$(this).height($(this).height()+10);
Run Code Online (Sandbox Code Playgroud)

在jquery中是否有一些方法可以处理我错过的内容?

jquery

7
推荐指数
1
解决办法
9535
查看次数

mysql如果不为null,则为0或""

SELECT * 
  FROM table WHERE id IN ('21') 
   AND (content_id IS NULL OR content_id = 0 OR content_id = '')
Run Code Online (Sandbox Code Playgroud)

是否有更短的方式来写这种情况.

我有一个int()列,可以是:NULL,0或EMPTY.

mysql isnull

7
推荐指数
1
解决办法
7033
查看次数

将字符串转换为类的安全名称

我有一个动态菜单,我需要使用CSS类转换为背景图像.我想将标签转换为css的安全类名.

一个例子是: - 转换字符串:'Products&Sunflowers' - 转换为仅包含az和1-9的字符串.以上内容将转换为可用作类名的验证字符串,例如:'products_sunflowers'

css php

6
推荐指数
1
解决办法
6717
查看次数

PhpMyAdmin超时,带有大的SQL导入错误

当我尝试将大型(5000行)sql文件粘贴到PhpMyAdmin中时,出现此错误?我知道我可以使用上传,但是在我的旧版本的PhpMyAdmin上,它可以正常工作。

ALERT - configured request variable value length limit exceeded - dropped variable 
'sql_query' (attacker '111.171.123.123', file '/usr/share/apache2/phpmyadmin/import.php'),
referer: https://example.co.uk/phpmyadmin/db_sql.php?db=test&server=1&
token=0f355f8bbc6fc09d5c512e0409e9cac9&db_query_force=1
Run Code Online (Sandbox Code Playgroud)

我已经尝试过更改 $cfg['ExecTimeLimit'] = 0;

php.ini

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

; Maximum execution time of each script, in seconds
max_execution_time = 120     
; Maximum amount of time each script may spend parsing request data
max_input_time = 60 
;max_input_nesting_level = 64 ; Maximum input variable nesting level
;Maximum amount of memory a script may consume (128MB)
memory_limit = 100M 
Run Code Online (Sandbox Code Playgroud)

php phpmyadmin

6
推荐指数
1
解决办法
1万
查看次数

Jquery绑定单击并悬停,如何检查是否单击

我有这样的功能(简化版):

$('label').bind('click hover', function() {
    $('label').removeClass("active");
    $(this).addClass("active");
});
Run Code Online (Sandbox Code Playgroud)

如何添加if以检查是否是点击?

javascript jquery

6
推荐指数
1
解决办法
3156
查看次数

Opencart如何测试vqmod是否安装?

我编写了一个使用vqmod for opencart的模块.如何检查管理模块中是否安装了vqmod?

我想在模块内部显示一个警告,检查是否安装了vqmod?更好的方法是检查它是否具有正确的写入权限以生成缓存文件并写入vamod.log

这样做的最佳方式是什么?

PS:如果你能用vqmod标记问题会很酷.我没有足够的声誉来创建新标签.

php xml opencart vqmod

6
推荐指数
2
解决办法
9938
查看次数

标签 统计

jquery ×4

php ×3

tinymce ×3

javascript ×2

opencart ×2

css ×1

isnull ×1

mysql ×1

phpmyadmin ×1

vqmod ×1

xml ×1