Nyah Posted June 8, 2015 Share Posted June 8, 2015 Hi, I would like to add a shortcut in the menu of an Admin tab to configure my module like "Add a new product" Link to comment Share on other sites More sharing options...
Tharushan Posted June 8, 2015 Share Posted June 8, 2015 public function initPageHeaderToolbar() { if (empty($this->display)) $this->page_header_toolbar_btn['new_supplier'] = array( 'href' => self::$currentIndex.'&addsupplier&token='.$this->token, 'desc' => $this->l('Add new supplier', null, null, false), 'icon' => 'process-icon-new' ); parent::initPageHeaderToolbar(); } This is the code to add a new Supplier, it's in AdminSuppliersController.php 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now