模块配置工具栏按钮不会显示在Prestashop 1.6中

时间:2014-04-25 09:13:45

标签: prestashop prestashop-1.6

我正在努力使我的自定义prestashop模块适应prestashop 1.6。配置页面上的工具栏按钮没有显示在1.6上(它们确实出现在1.5上)并且没有给出错误消息。

1.5中的工具栏

Toolbar in 1.5

1.6中没有工具栏

No Toolbar in 1.6

有谁知道如何在prestashop 1.6中展示它们?这是我声明工具栏的代码片段:

  $helper = new HelperForm();

  // Module, token and currentIndex
  $helper->module = $this;
  $helper->name_controller = $this->name;
  $helper->token = Tools::getAdminTokenLite('AdminModules');
  $helper->currentIndex = AdminController::$currentIndex.'&configure='.$this->name;

  // Language
  $helper->default_form_language = $default_lang;
  $helper->allow_employee_form_lang = $default_lang;

  // Title and toolbar
  $helper->title = $this->displayName;
  $helper->show_toolbar = true;
  $helper->toolbar_scroll = true;      // yes - > Toolbar is always visible on the top of the screen.
  $helper->submit_action = 'delete'.$this->name;
  $this->uri = ToolsCore::getCurrentUrlProtocolPrefix() .$this->context->shop->domain_ssl.$this->context->shop->physical_uri;
  $helper->toolbar_btn = array(
      'import' => array(
          'desc' => $this->l('Descargar CSV'),
          'href' =>$this->uri. 'modules/' . $this->getName() . '/excel.csv',
      ),
      'delete' => array(
          'desc' => $this->l('Borrar CSV'),
          'href' => AdminController::$currentIndex.'&configure='.$this->name.'&delete'.$this->name.
          '&token='.Tools::getAdminTokenLite('AdminModules'),
      ),
      'back' => array(
          'href' => AdminController::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminModules'),
          'desc' => $this->l('Back to list')
      )
 );

提前致谢。

3 个答案:

答案 0 :(得分:2)

在做了一些研究后,我尝试使用HelperList而不是HelperForm,工具栏按钮确实出现,但是在列表标题处,而不是绿色区域。

另一方面,HelperForm提供了一个“按钮”数组(我不确定这是否是Prestashop 1.6的更改,或者它是1.5.x版本的那个),它们出现在提交按钮中表格下方的工具栏。 buttons

$this->fields_form[0]['form'] = array(
    'tinymce' => true,
    'legend' => array(
        'title' => $this->l('New test block'),
    ),
    'input' => array(
        array(
            'type' => 'textarea',
            'label' => $this->l('Text'),
            'lang' => true,
            'name' => 'text',
            'cols' => 40,
            'rows' => 10,
            'class' => 'rte',
            'autoload_rte' => true,

        )
    ),
    'submit' => array(
        'title' => $this->l('Save'),
    ),
    'buttons' => array(
        array(
            'href' => AdminController::$currentIndex.'&configure='.$this->name.'&token='.Tools::getAdminTokenLite('AdminModules'),
            'title' => $this->l('Back to list'),
            'icon' => 'process-icon-back'
        )
    )
);

我认为工具栏的行为和目的随着新的后端主题而改变。

答案 1 :(得分:1)

我一直在帮助修复我们为prestashop开发的模块,这是我们发现的错误之一。如果要在绿色栏中显示任何信息,则必须使用属性$ page_header_toolbar_btn来扩展位于“/ classes / controller”的AdminCrontrollerCore类,直到prestashop团队修复我将报告的错误。如果你想让你的插件与旧版本兼容,你将不得不使用_PS_VERSION全局变量。

编辑:https://github.com/PrestaShop/PrestaShop/pull/2065拉取请求以解决错误。

这是我的示例代码:

    class AdminOrdersController extends AdminOrdersControllerCore
    {

    .....  

    public function initToolbar()
    {
    if ($this->display == 'view' && $this->_order->module == 'mymodule') {
            if ($this->_mymodule->isOrderComplete($this->_order)) {
                $mymodule_return = array(
                    'short' => $this->l('mymodule account'),
                    'href' => self::$currentIndex . '&id_order=' . $this->_order->id . '&vieworder&return_mymodule=1&token=' . $this->token,
                    'desc' => $this->l('return to mymodule'),
                    'class' => 'process-icon-standardreturn mymodule-return',
                );
                $mymodule_partial_return = array(
                    'short' => 'return customer mymodule account',
                    'href' => '#',
                    'desc' => $this->l('return to mymodule'),
                    'class' => 'process-icon-partialreturn',
                );

                //Depend of the prestashop version, we use $toolbar_btn[]
                // or we use $page_header_toolbar_btn[]
                if (_PS_VERSION_ > '1.5') {
                    $mymodule_return['class'] = "process-icon-delete mymodule-return";
                    $this->page_header_toolbar_btn['return_mymodule'] = $mymodule_return;

                } else {
                    $this->toolbar_btn['return_mymodule'] = $mymodule_return;
                    $this->toolbar_btn['return_mymodule_partial'] = $mymodule_partial_return;
                }
            }
        }      
    }  
   }        

答案 2 :(得分:0)

我也搜索在HelperList中显示按钮的方法,但我希望它们出现在面板页脚中。

唯一按此方式工作的按钮是back按钮。

    $helperList->toolbar_btn = array(
        'back' => array(
            'href' => $this->context->link->getAdminLink('AdminModules').'&configure='.$this->name.'&add_new_feed=1',
            'desc' => $this->l('New Feed')
    ));

prestashop button

显然,缺点是图标,与目的无关。