Features to src

Move Features to class in Friendica\Content namespace. Update function calls and references.
This commit is contained in:
Adam Magness 2017-12-04 08:33:49 -05:00
parent 2685c9bb1c
commit 2f0da29c75
24 changed files with 241 additions and 211 deletions

View file

@ -1,5 +1,8 @@
<?php
/**
* @file include/contact_widgets.php
*/
use Friendica\Content\Features;
use Friendica\Core\System;
use Friendica\Core\Config;
use Friendica\Core\PConfig;
@ -105,7 +108,7 @@ function networks_widget($baseurl, $selected = '') {
return '';
}
if (!feature_enabled(local_user(), 'networks')) {
if (!Features::isEnabled(local_user(), 'networks')) {
return '';
}
@ -144,7 +147,7 @@ function fileas_widget($baseurl, $selected = '') {
return '';
}
if (! feature_enabled(local_user(), 'filing')) {
if (! Features::isEnabled(local_user(), 'filing')) {
return '';
}
@ -178,7 +181,7 @@ function categories_widget($baseurl, $selected = '') {
$a = get_app();
if (! feature_enabled($a->profile['profile_uid'], 'categories')) {
if (! Features::isEnabled($a->profile['profile_uid'], 'categories')) {
return '';
}