config_add_multi_group_select()

Description

Return a data structure that will instruct the configuration page generator functions to
add a multiple RS user select configuration variable to the setup page.

Parameters

ColumnTypeDefaultDescription
$config_var string the name of the configuration variable to be added.
$label string the user text displayed to label the select block. Usually a $lang string.
$width integer 420 the width of the input field in pixels. Default: 300.

Location

include/plugin_functions.php lines 971 to 974

Definition

 
function config_add_multi_group_select($config_var$label$width=420)
    {
    return array(
'multi_group_select'$config_var$label$width);
    }

This article was last updated 18th March 2025 15:35 Europe/London time based on the source file dated 14th March 2025 12:10 Europe/London time.