OpenCart admin menu link url(OpenCart 管理菜单链接网址)
问题描述
我是 OpenCart 的新手,我正在尝试为它制作一个模块.
I'm verry new to OpenCart and I'm trying to make a module for it.
我希望在管理菜单中有一个指向我正在创建的模块的链接,因此我编辑了这个文件:
I want a link in the admin menu to the module I am creating thus I've edited this file:
/admin/view/template/common/header.tpl
我添加的代码:
<li><a class="top">Import / Export</a>
<ul>
<li><a href="" target="_blank">Link 1</a></li>
<li><a href="" target="_blank">Link 2</a></li>
<li><a href="" target="_blank">Link 3</a></li>
</ul>
</li>
我的问题可能非常简单:
My question is propably verry simple:
在普通链接中,<a href="">
的 url 设置如下:
In the normal links the url for the <a href="">
is set like this:
<a href="<?php echo $report_customer_online; ?>">
如何使用 OpenCart 的令牌制作正确模块的网址?
模块路径为module/order_export
.
如果您需要更多信息,请随时询问...
If you need more info, feel free to ask...
推荐答案
在这里查看我的答案:https://stackoverflow.com/a/16418443/598500 - 我已经回答了非常相似的问题,无论如何答案与您的问题相同.
Check my answer here: https://stackoverflow.com/a/16418443/598500 - I have answered for the very similar question, anyway the answer is the same as for Your question.
但为了更准确地指导您:
But to guide You more precisely:
语言文件/admin/language/
添加例如:
language file /admin/language/<YOUR_LANGUAGE>/common/header.php
add e.g.:
$_['text_my_module'] = 'My Module Title';
控制器文件 /admin/controller/common/header.php
添加例如:
controller file /admin/controller/common/header.php
add e.g.:
$this->data['text_my_module'] = $this->language->get('text_my_module');
和
$this->data['my_module'] = $this->url->link('module/order_export', 'token=' . $this->session->data['token'], 'SSL');
最后模板文件/admin/view/template/common/header.tpl
添加:
and finally the template file /admin/view/template/common/header.tpl
add:
<a href="<?php echo $my_module; ?>" class="top"><?php echo $text_my_module; ?></a>
在适用的情况下...
这是你的正确答案吗?
这篇关于OpenCart 管理菜单链接网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:OpenCart 管理菜单链接网址
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01