aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/checkboxes.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/checkboxes.php')
-rw-r--r--views/default/input/checkboxes.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/views/default/input/checkboxes.php b/views/default/input/checkboxes.php
index 6d39d823d..c27a197cf 100644
--- a/views/default/input/checkboxes.php
+++ b/views/default/input/checkboxes.php
@@ -17,6 +17,9 @@
* @uses $vars['options'] An array of strings representing the options for the checkbox field
*
*/
+
+ $class = $vars['class'];
+ if (!$class) $class = "input-checkboxes";
foreach($vars['options'] as $label => $option) {
//if (!in_array($option,$vars['value'])) {
@@ -39,7 +42,7 @@
}
if ($vars['disabled']) $disabled = ' disabled="yes" ';
- echo "<label><input type=\"checkbox\" $disabled {$vars['js']} name=\"{$vars['internalname']}[]\" {$selected} value=\"".htmlentities($option)."\" {$selected} />{$label}</label><br />";
+ echo "<label><input type=\"checkbox\" $disabled {$vars['js']} name=\"{$vars['internalname']}[]\" {$selected} value=\"".htmlentities($option)."\" {$selected} class=\"$class\" />{$label}</label><br />";
}
?> \ No newline at end of file