See my answer here: fooobar.com/questions/1480966 / ... - I answered a very similar question, anyway, the answer is the same as for your question.
But itβs more accurate to guide you:
language file /admin/language/<YOUR_LANGUAGE>/common/header.php add, for example:
$_['text_my_module'] = 'My Module Title';
controller file /admin/controller/common/header.php add for example:
$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, add the template file /admin/view/template/common/header.tpl :
<a href="<?php echo $my_module; ?>" class="top"><?php echo $text_my_module; ?></a>
where applicable ...
Is this the right answer for you?
source share