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

config_multi_user_select()

Description

Generate an html multi-select block for selecting from among RS users.

An array consisting of the user keys (i.e., values from the "ref" column of the user table) for the
selected users is the value posted.

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 768 to 787

Definition

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

    $users
=get_users();
    foreach (
$users as $user)
        {
        echo 
'    <option value="' $user['ref'] . '"' . ((in_array($user['ref'],$current))?' selected':'') . '>' $user['fullname'] . ' (' $user['email'] . ')</option>';
        }
?>
    </select>
    <div class="clearerleft"></div>
  </div>
  

    
}

This article was last updated 25th April 2024 21:35 Europe/London time based on the source file dated 18th April 2024 17:15 Europe/London time.