public function initToolbarTitle()
 {
     parent::initToolbarTitle();
     $this->toolbar_title = $this->l("LeoTheme Positions Control: " . $this->theme_name);
     $this->toolbar_btn['save'] = array('href' => 'index.php?tab=AdminLeotempcpPanel&token=' . Tools::getAdminTokenLite('AdminLeotempcpPanel') . '&action=savepos', 'id' => 'savepos', 'desc' => $this->l('Save Positions'));
     $this->toolbar_btn['controlpanel'] = array('href' => 'index.php?controller=adminmodules&configure=leotempcp&token=' . Tools::getAdminTokenLite('AdminModules') . '&tab_module=Home&module_name=leotempcp', 'id' => 'controlpanel', 'desc' => $this->l('Theme Control Panel'));
     $admin_dir = basename(_PS_ADMIN_DIR_);
     $live_edit_params = array('live_edit' => true, 'ad' => $admin_dir, 'liveToken' => Tools::getAdminTokenLite('AdminModulesPositions'), 'id_employee' => (int) $this->context->employee->id);
     $this->toolbar_btn['liveedit'] = array('href' => $this->getLiveEditUrl($live_edit_params), 'id' => 'liveedit', 'desc' => $this->l('Live Edit'));
     $helpURL = __PS_BASE_URI__ . str_replace("//", "/", 'modules/leotempcp') . "/help/help.pdf";
     $this->toolbar_btn['help'] = array('href' => $helpURL, 'id' => 'help', 'jsddd' => 'showHelp(\'' . $helpURL . '\')', 'desc' => $this->l('Help'));
 }