1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Database Utilities administration ready;

Database Verification administration ready;
minor admin improvements
This commit is contained in:
secretr
2008-12-30 13:51:41 +00:00
parent d387caf6a1
commit 53cc80a9c0
12 changed files with 1208 additions and 744 deletions

View File

@@ -9,8 +9,8 @@
* Form Handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.12 $
* $Date: 2008-12-23 08:28:42 $
* $Revision: 1.13 $
* $Date: 2008-12-30 13:51:41 $
* $Author: secretr $
*
*/
@@ -108,6 +108,12 @@ class e_form
}
function checkbox_toggle($name, $selector = 'multitoggle')
{
$selector = 'jstarget:'.$selector;
return $this->checkbox($name, $selector, false, array('id'=>false,'class'=>'checkbox toggle-all'));
}
function radio($name, $value, $checked = false, $options = array())
{
$options['checked'] = $checked; //comes as separate argument just for convenience