diff options
author | RedMatrix <info@friendica.com> | 2015-02-19 13:39:44 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2015-02-19 13:39:44 +1100 |
commit | b7451b455728708427091e518b349cf61a5c6f78 (patch) | |
tree | 13de6a3e6cfb79718b415bb292ac5cd2f13ad628 | |
parent | 2091e1e0bc371afcda7cf192237a3b32cab9626e (diff) | |
parent | 2fc61e780a87d3280e99c6f64943426f454d7b80 (diff) | |
download | volse-hubzilla-b7451b455728708427091e518b349cf61a5c6f78.tar.gz volse-hubzilla-b7451b455728708427091e518b349cf61a5c6f78.tar.bz2 volse-hubzilla-b7451b455728708427091e518b349cf61a5c6f78.zip |
Merge pull request #902 from dawnbreak/docu
Updated doxygen docu about deperecated functions.
-rwxr-xr-x | boot.php | 32 |
1 files changed, 27 insertions, 5 deletions
@@ -1598,11 +1598,14 @@ function get_account_id() { } /** - * @brief Returns the entity id (channel_id) of locally logged in user or false. + * @brief Returns the entity id (channel_id) of locally logged in channel or false. * * Returns authenticated numeric channel_id if authenticated and connected to * a channel or 0. Sometimes referred to as $uid in the code. * + * Before 2.1 this function was called local_user(). + * + * @since 2.1 * @return int|bool channel_id or false */ function local_channel() { @@ -1612,16 +1615,29 @@ function local_channel() { return false; } +/** + * local_user() got deprecated and replaced by local_channel(). + * + * @deprecated since v2.1, use local_channel() + * @see local_channel() + */ function local_user() { - // DEPRECATED + logger('local_user() is DEPRECATED, use local_channel()'); return local_channel(); } /** - * @brief Returns contact id (visitor_id) of authenticated site visitor or false. + * @brief Returns a xchan_hash (visitor_id) of remote authenticated visitor + * or false. + * + * Returns authenticated string hash of Red global identifier (xchan_hash), if + * authenticated via remote auth, or an empty string. * - * @return int|bool visitor_id or false + * Before 2.1 this function was called remote_user(). + * + * @since 2.1 + * @return string|bool visitor_id or false */ function remote_channel() { if((x($_SESSION, 'authenticated')) && (x($_SESSION, 'visitor_id'))) @@ -1630,8 +1646,14 @@ function remote_channel() { return false; } +/** + * remote_user() got deprecated and replaced by remote_channel(). + * + * @deprecated since v2.1, use remote_channel() + * @see remote_channel() + */ function remote_user() { - // DEPRECATED + logger('remote_user() is DEPRECATED, use remote_channel()'); return remote_channel(); } |