Jump to content

additional button near "add", "refresh" buttons


Recommended Posts

You need to override the initToolbar() function in your module's controller. For example:

    public function initToolbar()
    {
        parent::initToolbar();
        
        $this->toolbar_btn['print'] = array(
            'href' => 'your_url',
            'desc' => $this->l('Print')
        );
    }
  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...