服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > OpenCart教程 >

Opencart后台添加菜单

时间:2016-02-03 20:51来源:未知 作者:最模板 点击:
Opencart后台添加菜单 ,以news模块为例: 说明:本来可以用vqmod来解决,但是制作vqmod是必须先分析代码的! (1)先在controler的head.php中添加两个变量引用,一个是news变量,代表news模块
Opencart后台添加菜单 ,以news模块为例:
 
说明:本来可以用vqmod来解决,但是制作vqmod是必须先分析代码的!
 
(1)先在controler的head.php中添加两个变量引用,一个是news变量,代表news模块的url,第二个是news这几个字符,就是显示在菜单中的,叫text_news。
   在head.php中,有许多$this->date,照着模板添加就可以了:
 
点击(此处)折叠或打开
$this->data['text_news'] = $this->language->get('news');
 $this->data['news'] = $this->url->link('extension/news', 'token=' . $this->session->data['token'], 'SSL');
 
(2)在模板head.tpl中,添加相应在菜单:
 
点击(此处)折叠或打开
<li><a href="<?php echo $feed; ?>"><?php echo $text_feed; ?></a></li>
 
            <li><a href="<?php echo $news; ?>"><?php echo $text_news; ?></a></li>

实例:

1,找到在catalog\language\english\common\header.php

// Text
$_['text_affiliate'] = 'Affiliates';
$_['text_attribute'] = 'Attributes';
$_['text_attribute_group'] = 'Attribute Groups';
$_['text_backup'] = 'Backup / Restore';
$_['text_banner'] = 'Banners';
$_['text_catalog'] = 'Catalog';
$_['text_category'] = 'Categories';

$_['text_wpcms'] = 'Wpcms';  //新添加的菜单名称

2,找到controller\common\header.php

$this->data['text_catalog'] = $this->language->get('text_catalog');
$this->data['text_category'] = $this->language->get('text_category');
$this->data['text_wpcms'] = $this->language->get('text_wpcms'); //  在这个地方赋值之后会显示

 

$this->data['category'] = $this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL');
$this->data['wpcms'] = $this->url->link('catalog/wpcms', 'token=' . $this->session->data['token'], 'SSL');//这里修改实现href链接值得

3,把要添加的菜单写入模板文件view\template\common\header.tpl中即可

 <li><a href="<?php echo $wpcms; ?>"><?php echo $text_wpcms; ?></a></li>

 4,在菜单system-users-users group下面的Top Administrator选项下,注册一下新加菜单。

完成后示例如下图

  Opencart后台添加菜单
 
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容