]> git.mxchange.org Git - friendica.git/blob - boot.php
1716956fa1ad962da221989cd4633b552c575b23
[friendica.git] / boot.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  * Friendica is a communications platform for integrated social communications
21  * utilising decentralised communications and linkage to several indie social
22  * projects - as well as popular mainstream providers.
23  *
24  * Our mission is to free our friends and families from the clutches of
25  * data-harvesting corporations, and pave the way to a future where social
26  * communications are free and open and flow between alternate providers as
27  * easily as email does today.
28  */
29
30 use Friendica\Core\Session;
31
32 /**
33  * @name Gravity
34  *
35  * Item weight for query ordering
36  * @{
37  */
38 define('GRAVITY_PARENT',       0);
39 define('GRAVITY_ACTIVITY',     3);
40 define('GRAVITY_COMMENT',      6);
41 define('GRAVITY_UNKNOWN',      9);
42 /* @}*/
43
44 /**
45  * Returns the user id of locally logged in user or false.
46  *
47  * @return int|bool user id or false
48  * @deprecated since version 2022.12, use Core\Session::getLocalUser() instead
49  */
50 function local_user()
51 {
52         return Session::getLocalUser();
53 }
54
55 /**
56  * Returns the public contact id of logged in user or false.
57  *
58  * @return int|bool public contact id or false
59  * @deprecated since version 2022.12, use Core\Session:: getPublicContact() instead
60  */
61 function public_contact()
62 {
63         return Session::getPublicContact();
64 }
65
66 /**
67  * Returns public contact id of authenticated site visitor or false
68  *
69  * @return int|bool visitor_id or false
70  * @deprecated since version 2022.12, use Core\Session:: getRemoteUser() instead
71  */
72 function remote_user()
73 {
74         return Session::getRemoteUser();
75 }