// Replaced screencast option by menu option

This commit is contained in:
Damien Metzger
2013-09-12 18:23:44 +02:00
parent f20a3eb9b5
commit 06a178b8fe
7 changed files with 41 additions and 143 deletions
+9 -10
View File
@@ -234,22 +234,21 @@ class AdminEmployeesControllerCore extends AdminController
'hint' => $this->l('Back Office theme')
),
array(
'type' => 'switch',
'label' => $this->l('Show screencast at login:'),
'name' => 'bo_show_screencast',
'hint' => $this->l('Display the welcome video in the Admin panel dashboard at log in.'),
'type' => 'radio',
'label' => $this->l('Display admin menu:'),
'name' => 'bo_menu',
'required' => false,
'is_bool' => true,
'values' => array(
array(
'id' => 'bo_show_screencast_on',
'value' => 1,
'label' => $this->l('Enabled')
'id' => 'bo_menu_on',
'value' => 0,
'label' => $this->l('Top')
),
array(
'id' => 'bo_show_screencast_off',
'value' => 0,
'label' => $this->l('Disabled')
'id' => 'bo_menu_off',
'value' => 1,
'label' => $this->l('Left')
)
)
)