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

get_api_key()

Description

Return a private scramble key for this user.

Parameters

ColumnTypeDefaultDescription
$user integer The user ID

Return

string|false

Location

include/api_functions.php lines 22 to 26

Definition

 
function get_api_key($user)
    {
    global 
$api_scramble_key;
    return 
hash("sha256"$user $api_scramble_key);
    }

This article was last updated 19th March 2024 11:05 Europe/London time based on the source file dated 6th March 2024 14:45 Europe/London time.