friendica/boot.php

87 lines
2.4 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @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/>.
*
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.
*
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
use Friendica\Core\Session;
/**
2020-01-19 07:05:23 +01:00
* Constant with a HTML line break.
*
* 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.
*/
define('EOL', "<br />\r\n");
2011-08-17 05:05:02 +02:00
2010-12-10 13:04:35 +01:00
/**
* @name Gravity
*
* Item weight for query ordering
* @{
2010-12-10 13:04:35 +01:00
*/
define('GRAVITY_PARENT', 0);
2018-06-27 20:09:33 +02:00
define('GRAVITY_ACTIVITY', 3);
define('GRAVITY_COMMENT', 6);
2018-06-27 20:09:33 +02:00
define('GRAVITY_UNKNOWN', 9);
/* @}*/
// Normally this constant is defined - but not if "pcntl" isn't installed
if (!defined('SIGTERM')) {
define('SIGTERM', 15);
2017-03-19 09:04:04 +01:00
}
2017-05-03 04:42:29 +02: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.
*
2015-12-24 01:31:17 +01:00
* @return int|bool user id or false
*/
function local_user()
{
return Session::getLocalUser();
}
2010-07-02 01:48:07 +02:00
/**
2020-01-19 07:05:23 +01:00
* Returns the public contact id of logged in user or false.
*
* @return int|bool public contact id or false
*/
function public_contact()
{
return Session::getPublicContact();
}
2015-12-24 01:31:17 +01:00
/**
* Returns public contact id of authenticated site visitor or false
*
2015-12-24 01:31:17 +01:00
* @return int|bool visitor_id or false
*/
2019-09-28 11:59:08 +02:00
function remote_user()
{
return Session::getRemoteUser();
}