3

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

1.5 中的工具栏:

1.5 中的工具栏

1.6 中没有工具栏

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')
      )
 );

提前致谢。

4

3 回答 3

3

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

另一方面,HelperForm 提供了一个“按钮”数组(我不确定这是 Prestashop 1.6 的更改还是在 1.5.x 版本中存在),它出现在工具栏下方的提交按钮的左侧形式。 纽扣

$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'
        )
    )
);

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

于 2014-04-28T10:45:36.240 回答
1

我一直在帮助修复我们为 prestashop 开发的模块,这是我们发现的错误之一。如果您想在绿色栏中显示任何信息,则必须使用扩展 AdminCrontrollerCore 类的属性 $page_header_toolbar_btn,该类位于“/classes/controller”,直到 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;
                }
            }
        }      
    }  
   }        
于 2014-08-22T06:58:34.160 回答
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 按钮

显然,缺点在于图标,与目的不符。

于 2014-06-08T08:34:13.853 回答