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

get_config_option_users()

Description

Get all user refs with a specific configuration option set from database

Parameters

ColumnTypeDefaultDescription
$option string Parameter name
$value string Parameter value

Return

array Array of user references

Location

include/config_functions.php lines 301 to 305

Definition

 
function get_config_option_users($option,$value)
    {
    
$users ps_array("SELECT user value FROM user_preferences WHERE parameter = ? AND value=?",array("s",$option,"s",$value), "preferences");
    return 
$users;   
    }

This article was last updated 10th December 2023 17:35 Europe/London time based on the source file dated 10th November 2023 10:50 Europe/London time.