Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCart admin menu link url

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

The code I have added:

<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:

In the normal links the url for the <a href=""> is set like this:

<a href="<?php echo $report_customer_online; ?>">

How can i make an url to the right module with the token of OpenCart?

The module path is module/order_export.

If you need more info, feel free to ask...

like image 717
Mathlight Avatar asked Dec 16 '22 10:12

Mathlight


1 Answers

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:

language file /admin/language/<YOUR_LANGUAGE>/common/header.php add e.g.:

$_['text_my_module'] = 'My Module Title';

controller file /admin/controller/common/header.php add e.g.:

$this->data['text_my_module'] = $this->language->get('text_my_module');

and

$this->data['my_module'] = $this->url->link('module/order_export', 'token=' . $this->session->data['token'], 'SSL');

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>

where applicable...

Is this the correct answer for You?

like image 169
shadyyx Avatar answered Dec 29 '22 01:12

shadyyx