Replaced yes/no selection with checkboxes, refs #645 @2h0m

Finished all for admin pages. admin_<section>.php files need to be cleaned.
This commit is contained in:
Andreas Burchert (scarya)
2011-03-26 23:09:29 +01:00
parent 7d97544f05
commit 1730088ab1
9 changed files with 284 additions and 114 deletions

View File

@@ -31,8 +31,11 @@ return array(
),
'isactive' => array(
'label' => $lng['admin']['activated'],
'type' => 'yesno',
'yesno_var' => $isactive
'type' => 'checkbox',
'values' => array(
array ('label' => $lng['panel']['yes'], 'value' => '1')
),
'value' => array($result['isactive'])
),
'interval_value' => array(
'label' => $lng['cronjob']['cronjobintervalv'],