mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
form handler - id option for checkbox_toggle method
This commit is contained in:
@@ -405,10 +405,11 @@ class e_form
|
||||
return $this->checkbox($name, $value, $checked).$this->label($label ? $label : LAN_ENABLED, $name, $value);
|
||||
}
|
||||
|
||||
function checkbox_toggle($name, $selector = 'multitoggle')
|
||||
function checkbox_toggle($name, $selector = 'multitoggle', $id = false)
|
||||
{
|
||||
$selector = 'jstarget:'.$selector;
|
||||
return $this->checkbox($name, $selector, false, array('id'=>false,'class'=>'checkbox toggle-all'));
|
||||
if($id) $id = $this->name2id($id);
|
||||
return $this->checkbox($name, $selector, false, array('id' => $id,'class' => 'checkbox toggle-all'));
|
||||
}
|
||||
|
||||
function uc_checkbox($name, $current_value, $uc_options, $field_options = array())
|
||||
|
Reference in New Issue
Block a user