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

generate_share_key()

Description

Generates an external share key based on provided string

Parameters

ColumnTypeDefaultDescription
$string string

Return

string Generated key

Location

include/collections_functions.php lines 6565 to 6568

Definition

 
function generate_share_key($string)
    {
    return 
substr(md5($string "," time() . rand()), 010);
    }

This article was last updated 19th March 2024 07:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.