Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

config_single_group_select()

Description

Generate an html single-select block for selecting from among RS user groups.

Parameters

ColumnTypeDefaultDescription
$name string the name of the select block. Usually the name of the config variable being set.
$label string the user text displayed to label the select block. Usually a $lang string.
$current array
$width integer 300 the width of the input field in pixels. Default: 300.
array integer $current the current value of the config variable being set.

Location

include/plugin_functions.php lines 809 to 828

Definition

 
function config_single_group_select($name$label$current=array(), $width=300)
    {
    global 
$lang;
?>
  <div class="Question">
    <label for=" echo $name?>" title=" echo str_replace('%cvn'$name$lang['plugins-configvar'])?>"> echo $label?></label>
    <select name=" echo $name?>" id=" echo $name?>" style="width: echo $width ?>px">

    $usergroups
=get_usergroups();
    foreach (
$usergroups as $usergroup)
        {
        echo 
'    <option value="' $usergroup['ref'] . '"' . (($usergroup['ref']==$current)?' selected':'') . '>' $usergroup['name'] . '</option>';
        }
?>
    </select>
    <div class="clearerleft"></div>
  </div>
  

    
}

This article was last updated 19th March 2024 05:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.