// Added row_hover parameter to enable or disable row color on hover

This commit is contained in:
bMancone
2012-01-23 10:22:41 +00:00
parent 84f4d0838c
commit 5e36dd0b97
5 changed files with 15 additions and 7 deletions
+5 -2
View File
@@ -226,15 +226,17 @@ class AdminControllerCore extends Controller
protected $noLink;
protected $specificConfirmDelete;
protected $colorOnBackground;
/** @var bool If true, activates color on hover */
protected $row_hover = true;
/** @string Action to perform : 'edit', 'view', 'add', ... */
protected $action;
protected $display;
protected $_includeContainer = true;
public $tpl_folder;
protected $bo_theme;
/** @var bool Redirect or not ater a creation */
protected $_redirect = true;
@@ -1575,6 +1577,7 @@ class AdminControllerCore extends Controller
$helper->default_form_language = $this->default_form_language;
$helper->allow_employee_form_lang = $this->allow_employee_form_lang;
$helper->multiple_fieldsets = $this->multiple_fieldsets;
$helper->row_hover = $this->row_hover;
// For each action, try to add the corresponding skip elements list
$helper->list_skip_actions = $this->list_skip_actions;