]> git.mxchange.org Git - friendica.git/blob - src/Content/Feature.php
Merge remote-tracking branch 'upstream/develop' into archive-contact
[friendica.git] / src / Content / Feature.php
1 <?php
2 /**
3  * @file src/Content/Feature.php
4  * @brief Features management
5  */
6 namespace Friendica\Content;
7
8 use Friendica\Core\Config;
9 use Friendica\Core\PConfig;
10
11 require_once 'include/plugin.php';
12
13 class Feature
14 {
15         /**
16          * @brief check if feature is enabled
17          *
18          * @param integer $uid     user id
19          * @param string  $feature feature
20          * @return boolean
21          */
22         public static function isEnabled($uid, $feature)
23         {
24                 $x = Config::get('feature_lock', $feature, false);
25
26                 if ($x === false) {
27                         $x = PConfig::get($uid, 'feature', $feature, false);
28                 }
29                 if ($x === false) {
30                         $x = Config::get('feature', $feature, false);
31                 }
32                 if ($x === false) {
33                         $x = self::getDefault($feature);
34                 }
35
36                 $arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);
37                 call_hooks('isEnabled', $arr);
38                 return($arr['enabled']);
39         }
40
41         /**
42          * @brief check if feature is enabled or disabled by default
43          *
44          * @param string $feature feature
45          * @return boolean
46          */
47         private static function getDefault($feature)
48         {
49                 $f = self::get();
50                 foreach ($f as $cat) {
51                         foreach ($cat as $feat) {
52                                 if (is_array($feat) && $feat[0] === $feature) {
53                                         return $feat[3];
54                                 }
55                         }
56                 }
57                 return false;
58         }
59
60         /**
61          * @brief Get a list of all available features
62          *
63          * The array includes the setting group, the setting name,
64          * explainations for the setting and if it's enabled or disabled
65          * by default
66          *
67          * @param bool $filtered True removes any locked features
68          *
69          * @return array
70          */
71         public static function get($filtered = true)
72         {
73                 $arr = array(
74
75                         // General
76                         'general' => array(
77                                 t('General Features'),
78                                 //array('expire',         t('Content Expiration'),              t('Remove old posts/comments after a period of time')),
79                                 array('multi_profiles', t('Multiple Profiles'),                 t('Ability to create multiple profiles'), false, Config::get('feature_lock', 'multi_profiles', false)),
80                                 array('photo_location', t('Photo Location'),                    t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'), false, Config::get('feature_lock', 'photo_location', false)),
81                                 array('export_calendar', t('Export Public Calendar'),           t('Ability for visitors to download the public calendar'), false, Config::get('feature_lock', 'export_calendar', false)),
82                         ),
83
84                         // Post composition
85                         'composition' => array(
86                                 t('Post Composition Features'),
87                                 array('preview',        t('Post Preview'),                      t('Allow previewing posts and comments before publishing them'), false, Config::get('feature_lock', 'preview', false)),
88                                 array('aclautomention', t('Auto-mention Forums'),               t('Add/remove mention when a forum page is selected/deselected in ACL window.'), false, Config::get('feature_lock', 'aclautomention', false)),
89                         ),
90
91                         // Network sidebar widgets
92                         'widgets' => array(
93                                 t('Network Sidebar Widgets'),
94                                 array('archives',       t('Search by Date'),                    t('Ability to select posts by date ranges'), false, Config::get('feature_lock', 'archives', false)),
95                                 array('forumlist_widget', t('List Forums'),                     t('Enable widget to display the forums your are connected with'), true, Config::get('feature_lock', 'forumlist_widget', false)),
96                                 array('groups',         t('Group Filter'),                      t('Enable widget to display Network posts only from selected group'), false, Config::get('feature_lock', 'groups', false)),
97                                 array('networks',       t('Network Filter'),                    t('Enable widget to display Network posts only from selected network'), false, Config::get('feature_lock', 'networks', false)),
98                                 array('savedsearch',    t('Saved Searches'),                    t('Save search terms for re-use'), false, Config::get('feature_lock', 'savedsearch', false)),
99                         ),
100
101                         // Network tabs
102                         'net_tabs' => array(
103                                 t('Network Tabs'),
104                                 array('personal_tab',   t('Network Personal Tab'),              t('Enable tab to display only Network posts that you\'ve interacted on'), false, Config::get('feature_lock', 'personal_tab', false)),
105                                 array('new_tab',        t('Network New Tab'),                   t('Enable tab to display only new Network posts (from the last 12 hours)'), false, Config::get('feature_lock', 'new_tab', false)),
106                                 array('link_tab',       t('Network Shared Links Tab'),          t('Enable tab to display only Network posts with links in them'), false, Config::get('feature_lock', 'link_tab', false)),
107                         ),
108
109                         // Item tools
110                         'tools' => array(
111                                 t('Post/Comment Tools'),
112                                 array('multi_delete',   t('Multiple Deletion'),                 t('Select and delete multiple posts/comments at once'), false, Config::get('feature_lock', 'multi_delete', false)),
113                                 array('edit_posts',     t('Edit Sent Posts'),                   t('Edit and correct posts and comments after sending'), false, Config::get('feature_lock', 'edit_posts', false)),
114                                 array('commtag',        t('Tagging'),                           t('Ability to tag existing posts'), false, Config::get('feature_lock', 'commtag', false)),
115                                 array('categories',     t('Post Categories'),                   t('Add categories to your posts'), false, Config::get('feature_lock', 'categories', false)),
116                                 array('filing',         t('Saved Folders'),                     t('Ability to file posts under folders'), false, Config::get('feature_lock', 'filing', false)),
117                                 array('dislike',        t('Dislike Posts'),                     t('Ability to dislike posts/comments'), false, Config::get('feature_lock', 'dislike', false)),
118                                 array('star_posts',     t('Star Posts'),                        t('Ability to mark special posts with a star indicator'), false, Config::get('feature_lock', 'star_posts', false)),
119                                 array('ignore_posts',   t('Mute Post Notifications'),           t('Ability to mute notifications for a thread'), false, Config::get('feature_lock', 'ignore_posts', false)),
120                         ),
121
122                         // Advanced Profile Settings
123                         'advanced_profile' => array(
124                                 t('Advanced Profile Settings'),
125                                 array('forumlist_profile', t('List Forums'),                    t('Show visitors public community forums at the Advanced Profile Page'), false, Config::get('feature_lock', 'forumlist_profile', false)),
126                                 array('tagadelic',      t('Tag Cloud'),                         t('Provide a personal tag cloud on your profile page'), false, Config::get('feature_lock', 'tagadelic', false)),
127                         ),
128                 );
129
130                 // removed any locked features and remove the entire category if this makes it empty
131
132                 if ($filtered) {
133                         foreach ($arr as $k => $x) {
134                                 $has_items = false;
135                                 $kquantity = count($arr[$k]);
136                                 for ($y = 0; $y < $kquantity; $y ++) {
137                                         if (is_array($arr[$k][$y])) {
138                                                 if ($arr[$k][$y][4] === false) {
139                                                         $has_items = true;
140                                                 } else {
141                                                         unset($arr[$k][$y]);
142                                                 }
143                                         }
144                                 }
145                                 if (! $has_items) {
146                                         unset($arr[$k]);
147                                 }
148                         }
149                 }
150
151                 call_hooks('get', $arr);
152                 return $arr;
153         }
154 }