Exemple #1
0
/**
 * Search users, search by User ID and/or a keyword
 *
 * @param integer $uid
 *        User ID
 * @param string $keyword
 *        Keyword
 * @param integer $count
 *        Search limit
 * @return array Array of user's data
 */
function phonebook_search_user($uid, $keyword = "", $count = 0)
{
    $ret = core_call_hook();
    return $ret;
}
Exemple #2
0
/**
 * Get active themes
 *
 * @global array $core_config
 * @return string
 */
function core_themes_get()
{
    global $core_config;
    $ret = core_call_hook();
    if (!$ret) {
        return $core_config['main']['themes_module'];
    }
    return $ret;
}
Exemple #3
0
function rate_refund($smslog_id)
{
    return core_call_hook();
}
Exemple #4
0
/**
 * Check IP address is exists in blacklist
 *
 * @param string $label
 *        single label, can be $username or $uid, its up to the implementator
 * @param string $ip
 *        single IP address
 * @return boolean TRUE when found and FALSE if not found
 */
function blacklist_ifipexists($label, $ip)
{
    $ret = core_call_hook();
    return $ret;
}
Exemple #5
0
/**
 * Get list of all blacklisted mobile numbers
 *
 * @return array all blacklisted mobile numbers
 */
function blacklist_mobile_getall()
{
    $ret = core_call_hook();
    return $ret;
}
Exemple #6
0
/**
 * Get all billing data from specific User ID
 * @param integer $uid User ID
 * @return array Billing information
 */
function billing_getdata_by_uid($uid)
{
    $ret = core_call_hook();
    return $ret;
}