2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2018-02-05 00:44:42 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-04-03 13:48:31 +02:00
|
|
|
*
|
2015-12-24 01:31:17 +01:00
|
|
|
* Friendica is a communications platform for integrated social communications
|
|
|
|
* utilising decentralised communications and linkage to several indie social
|
|
|
|
* projects - as well as popular mainstream providers.
|
2016-04-03 13:48:31 +02:00
|
|
|
*
|
2015-12-24 01:31:17 +01:00
|
|
|
* Our mission is to free our friends and families from the clutches of
|
|
|
|
* data-harvesting corporations, and pave the way to a future where social
|
|
|
|
* communications are free and open and flow between alternate providers as
|
|
|
|
* easily as email does today.
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2022-10-17 23:11:00 +02:00
|
|
|
use Friendica\Core\Session;
|
2017-01-17 20:21:46 +01:00
|
|
|
|
2015-12-25 18:36:13 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Constant with a HTML line break.
|
2015-12-25 18:36:13 +01:00
|
|
|
*
|
|
|
|
* Contains a HTML line break (br) element and a real carriage return with line
|
|
|
|
* feed for the source.
|
|
|
|
* This can be used in HTML and JavaScript where needed a line break.
|
|
|
|
*/
|
2022-10-18 06:35:06 +02:00
|
|
|
define('EOL', "<br />\r\n");
|
2011-08-17 05:05:02 +02:00
|
|
|
|
2010-12-10 13:04:35 +01:00
|
|
|
/**
|
2015-12-25 20:58:26 +01:00
|
|
|
* @name Gravity
|
2016-10-02 05:29:30 +02:00
|
|
|
*
|
2015-12-25 20:58:26 +01:00
|
|
|
* Item weight for query ordering
|
|
|
|
* @{
|
2010-12-10 13:04:35 +01:00
|
|
|
*/
|
2017-11-09 17:05:18 +01:00
|
|
|
define('GRAVITY_PARENT', 0);
|
2018-06-27 20:09:33 +02:00
|
|
|
define('GRAVITY_ACTIVITY', 3);
|
2017-11-09 17:05:18 +01:00
|
|
|
define('GRAVITY_COMMENT', 6);
|
2018-06-27 20:09:33 +02:00
|
|
|
define('GRAVITY_UNKNOWN', 9);
|
2015-12-25 20:58:26 +01:00
|
|
|
/* @}*/
|
|
|
|
|
2015-12-24 01:31:17 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Returns the user id of locally logged in user or false.
|
2016-10-02 05:29:30 +02:00
|
|
|
*
|
2015-12-24 01:31:17 +01:00
|
|
|
* @return int|bool user id or false
|
2022-10-18 07:57:59 +02:00
|
|
|
* @deprecated since version 2022.12, use Core\Session::getLocalUser() instead
|
2015-12-24 01:31:17 +01:00
|
|
|
*/
|
2017-11-09 17:05:18 +01:00
|
|
|
function local_user()
|
|
|
|
{
|
2022-10-17 23:11:00 +02:00
|
|
|
return Session::getLocalUser();
|
2012-04-09 14:04:49 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-06 11:06:05 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Returns the public contact id of logged in user or false.
|
2017-03-06 11:06:05 +01:00
|
|
|
*
|
|
|
|
* @return int|bool public contact id or false
|
2022-10-18 07:57:59 +02:00
|
|
|
* @deprecated since version 2022.12, use Core\Session:: getPublicContact() instead
|
2017-03-06 11:06:05 +01:00
|
|
|
*/
|
2017-11-09 17:05:18 +01:00
|
|
|
function public_contact()
|
|
|
|
{
|
2022-10-17 23:11:00 +02:00
|
|
|
return Session::getPublicContact();
|
2017-03-06 11:06:05 +01:00
|
|
|
}
|
|
|
|
|
2015-12-24 01:31:17 +01:00
|
|
|
/**
|
2020-08-05 04:44:42 +02:00
|
|
|
* Returns public contact id of authenticated site visitor or false
|
2016-10-02 05:29:30 +02:00
|
|
|
*
|
2015-12-24 01:31:17 +01:00
|
|
|
* @return int|bool visitor_id or false
|
2022-10-18 07:57:59 +02:00
|
|
|
* @deprecated since version 2022.12, use Core\Session:: getRemoteUser() instead
|
2015-12-24 01:31:17 +01:00
|
|
|
*/
|
2019-09-28 11:59:08 +02:00
|
|
|
function remote_user()
|
2017-11-09 17:05:18 +01:00
|
|
|
{
|
2022-10-17 23:11:00 +02:00
|
|
|
return Session::getRemoteUser();
|
2012-04-09 14:04:49 +02:00
|
|
|
}
|