]> git.mxchange.org Git - friendica.git/blobdiff - mod/friendica.php
Merge remote-tracking branch 'upstream/develop' into 1601-api-statuses-lookup
[friendica.git] / mod / friendica.php
index d79c89a6b24ec9ddb867c7f7cf73434b913ceeb1..f613dfd39cef05e171db82c410fc75be35714507 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 
-function friendica_init(App &$a) {
+use \Friendica\Core\Config;
+
+function friendica_init(App $a) {
        if ($a->argv[1]=="json"){
                $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
 
@@ -29,7 +31,7 @@ function friendica_init(App &$a) {
                                        $visible_plugins[] = $rr['name'];
                }
 
-               load_config('feature_lock');
+               Config::load('feature_lock');
                $locked_features = array();
                if(is_array($a->config['feature_lock']) && count($a->config['feature_lock'])) {
                        foreach($a->config['feature_lock'] as $k => $v) {
@@ -59,7 +61,7 @@ function friendica_init(App &$a) {
 
 
 
-function friendica_content(App &$a) {
+function friendica_content(App $a) {
 
        $o = '';
        $o .= '<h3>Friendica</h3>';
@@ -70,7 +72,7 @@ function friendica_content(App &$a) {
        $o .= t('This is Friendica, version') . ' ' . FRIENDICA_VERSION . ' ';
        $o .= t('running at web location') . ' ' . z_root() . '</p><p>';
 
-       $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';        
+       $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';
 
        $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">'.t('the bugtracker at github').'</a></p><p>';
        $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';
@@ -102,7 +104,7 @@ function friendica_content(App &$a) {
        else
                $o .= '<p>' . t('No installed plugins/addons/apps') . '</p>';
 
-       call_hooks('about_hook', $o);   
+       call_hooks('about_hook', $o);
 
        return $o;