JHtmlAccess/actions
From Joomla! Documentation
Contents |
Description
Returns a UL list of user groups with check boxes
Syntax
static JHtmlAccess::actions($name, $selected, $component, $section= 'global')
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | $name The name of the checkbox controls array | |
| $selected | $selected An array of the checked boxes | |
| $component | ||
| $section | 'global' |
Returns
string
Defined in
libraries/joomla/html/html/access.php
Importing
jimport( 'joomla.html.html.access' );
Source Body
public static function actions($name, $selected, $component, $section = 'global')
{
static $count;
$count++;
$actions = JAccess::getActions($component, $section);
$html = array();
$html[] = '<ul class="checklist access-actions">';
for ($i=0, $n=count($actions); $i < $n; $i++)
{
$item = &$actions[$i];
// Setup the variable attributes.
$eid = $count.'action_'.$item->id;
$checked = in_array($item->id, $selected) ? ' checked="checked"' : '';
// Build the HTML for the item.
$html[] = ' <li>';
$html[] = ' <input type="checkbox" name="'.$name.'[]" value="'.$item->id.'" id="'.$eid.'"';
$html[] = ' '.$checked.' />';
$html[] = ' <label for="'.$eid.'">';
$html[] = ' '.JText::_($item->title);
$html[] = ' </label>';
$html[] = ' </li>';
}
$html[] = '</ul>';
return implode("\n", $html);
}