Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

render_user_group_select()

Parameters

ColumnTypeDefaultDescription
$name string
$current integer null Current selected value. Use user group ID
$style ''

Location

include/render_functions.php lines 1281 to 1295

Definition

 
function render_user_group_select($name$current null$style '')
    {
    
?>
    <select id=" echo $name?>" name=" echo $name?>" style=" echo $style?>">
    
    
foreach(get_usergroups() as $usergroup)
        {
        
?>
        <option value=" echo $usergroup['ref']; ?>" echo ((!is_null($current) && $usergroup['ref'] == $current) ? ' selected' ''); ?>> echo $usergroup['name']; ?></option>
        
        
}
        
?>
    </select>
    
    
}

This article was last updated 8th July 2020 11:35 Europe/London time based on the source file dated 7th July 2020 15:22 Europe/London time.