// #PSFV-94 : Update and bug fix with new toolbar implementation
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9873 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -347,8 +347,8 @@ class HelperListCore extends Helper
|
||||
'current_index' => $this->currentIndex,
|
||||
'view' => in_array('view', $this->actions),
|
||||
'edit' => in_array('edit', $this->actions),
|
||||
'has_actions' => (bool)count($this->actions),
|
||||
'has_bulk_actions' => (bool)count($this->bulk_actions),
|
||||
'has_actions' => !empty($this->actions),
|
||||
'has_bulk_actions' => !empty($this->bulk_actions),
|
||||
'list_skip_actions' => $this->list_skip_actions,
|
||||
));
|
||||
return $this->content_tpl->fetch();
|
||||
@@ -591,8 +591,8 @@ class HelperListCore extends Helper
|
||||
'identifier' => $this->identifier,
|
||||
'id_cat' => $id_cat,
|
||||
'shop_link_type' => $this->shopLinkType,
|
||||
'has_actions' => (bool)count($this->actions),
|
||||
'has_bulk_actions' => (bool)count($this->bulk_actions),
|
||||
'has_actions' => !empty($this->actions),
|
||||
'has_bulk_actions' => !empty($this->bulk_actions),
|
||||
'toolbar_btn' => $this->toolbar_btn,
|
||||
'table_id' => isset($table_id) ? $table_id : null,
|
||||
'table_dnd' => isset($table_dnd) ? $table_dnd : null,
|
||||
|
||||
Reference in New Issue
Block a user