创建语言文件joomla 3.8.3(与PHP相关)

时间:2018-08-03 08:46:12

标签: joomla virtuemart

我将这个片段代码保存在Constance插件的快速视图中,该视图与“ QUICK VIEW”按钮有关,并连接到后端,可以在其中更改其标签名称。我希望将其连接到.ini文件,以便可以将其设置为多语言。非常感谢您的帮助。

        jQuery(document).ready(function ($) {
            function _SJQuickView(){
                var $item_class = $('<?php echo $cls_str; ?>');
                if ($item_class.length > 0) {
                    for (var i = 0; i < $item_class.length; i++) {
                        if($($item_class[i]).find('.sj_quickview_handler').length <= 0){
                            var producturlpath = $($item_class[i]).find('a', $(this)).attr('href');
                            if(typeof producturlpath !== 'undefined' && producturlpath.length > 0 ){
                                producturlpath = ( producturlpath.indexOf('?')  >= 0 ) ? producturlpath + '&tmpl=component' : producturlpath + '?tmpl=component' ;
                                var _quickviewbutton = "<a  class='sj_quickview_handler' href='" + producturlpath + "'><?php echo $this->_params->get('label_button','quick view');?></a>";
                                $($item_class[i]).append(_quickviewbutton);
                            }
                        }
                    }
                }
            }

我相信这是至关重要的:

var _quickviewbutton = "<a  class='sj_quickview_handler' href='" + producturlpath + "'><?php echo $this->_params->get('label_button','quick view');?></a>";

1 个答案:

答案 0 :(得分:0)

很简单。 只需将代码替换为

var _quickviewbutton =“”;

,只需添加带有QUICK_VIEW的翻译