]> git.mxchange.org Git - friendica-addons.git/commitdiff
Default param
authorAdam Magness <adam.magness@gmail.com>
Wed, 6 Dec 2017 21:27:55 +0000 (16:27 -0500)
committerAdam Magness <adam.magness@gmail.com>
Wed, 6 Dec 2017 21:27:55 +0000 (16:27 -0500)
use that default parameter!!!

fromapp/fromapp.php
notimeline/notimeline.php
numfriends/numfriends.php
qcomment/qcomment.php

index 2828f500d2762000b3057b6111c58d564ee7051a..51392ff57ba5500ffa0438ec15894983e9b20df0 100644 (file)
@@ -50,9 +50,7 @@ function fromapp_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $fromapp = PConfig::get(local_user(),'fromapp','app');
-       if(is_null($fromapp))
-               $fromapp = '';
+       $fromapp = PConfig::get(local_user(),'fromapp', 'app', '');
 
        $force = intval(PConfig::get(local_user(),'fromapp','force'));
 
@@ -84,29 +82,29 @@ function fromapp_settings(&$a,&$s) {
 
 }
 
-function fromapp_post_hook(&$a,&$item)
+function fromapp_post_hook(&$a, &$item)
 {
-       if(! local_user()) {
+       if (! local_user()) {
                return;
        }
 
-    if(local_user() != $item['uid']) {
+       if (local_user() != $item['uid']) {
                return;
        }
 
-    $app = PConfig::get(local_user(), 'fromapp', 'app');
-       $force = intval(PConfig::get(local_user(), 'fromapp','force'));
+       $app = PConfig::get(local_user(), 'fromapp', 'app');
+       $force = intval(PConfig::get(local_user(), 'fromapp', 'force'));
 
-    if(is_null($app) || (! strlen($app))) {
+       if (is_null($app) || (! strlen($app))) {
                return;
        }
 
-       if(strlen(trim($item['app'])) && (! $force)) {
+       if (strlen(trim($item['app'])) && (! $force)) {
                return;
        }
 
-       $apps = explode(',',$app);
-       $item['app'] = trim($apps[mt_rand(0,count($apps)-1)]);
+       $apps = explode(',', $app);
+       $item['app'] = trim($apps[mt_rand(0, count($apps)-1)]);
        
        return;
 }
index 8f0727183e52295128b399d386ca87ee42e7b31f..dcf9693542f38cd065a8932ad9695bb9b98d0b22 100644 (file)
@@ -33,10 +33,11 @@ function notimeline_settings_post($a,$post) {
        info( t('No Timeline settings updated.') . EOL);
 }
 
-function notimeline_settings(&$a,&$s) {
-
-       if(! local_user())
+function notimeline_settings(&$a, &$s)
+{
+       if (! local_user()) {
                return;
+       }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
@@ -44,10 +45,7 @@ function notimeline_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $notimeline = PConfig::get(local_user(),'system','no_wall_archive_widget');
-       if(is_null($notimeline)) {
-               $notimeline = false;
-       }
+       $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false);
 
        $notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
 
@@ -64,5 +62,4 @@ function notimeline_settings(&$a,&$s) {
        /* provide a submit button */
 
        $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
-
 }
index b6d302d58e6bd38943838446f19aa178c302c0aa..98295bfbb2e332b8cdc3d298c1ddf8ad01cebaf0 100755 (executable)
@@ -57,10 +57,11 @@ function numfriends_settings_post($a,$post) {
 
 
 
-function numfriends_settings(&$a,&$s) {
-
-       if(! local_user())
+function numfriends_settings(&$a, &$s)
+{
+       if (! local_user()) {
                return;
+       }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
@@ -68,10 +69,7 @@ function numfriends_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $numfriends = PConfig::get(local_user(),'system','display_friend_count');
-       if(is_null($numfriends)) {
-               $numfriends = 24;
-       }
+       $numfriends = PConfig::get(local_user(), 'system', 'display_friend_count', 24);
        
        /* Add some HTML to the existing form */
 
@@ -85,5 +83,4 @@ function numfriends_settings(&$a,&$s) {
        /* provide a submit button */
 
        $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="numfriends-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
-
 }
index 2a44fcb09dd45243372193ebd9807e51f26cb00d..f4b951843a82a8db18fe65bc622c824bc3c69c6d 100755 (executable)
@@ -39,33 +39,30 @@ function qcomment_uninstall() {
 
 
 
-function qcomment_addon_settings(&$a,&$s) {
-
-       if(! local_user())
+function qcomment_addon_settings(&$a, &$s)
+{
+       if (! local_user()) {
                return;
+       }
 
-    /* Add our stylesheet to the page so we can make our settings look nice */
+       /* Add our stylesheet to the page so we can make our settings look nice */
 
-    $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/qcomment/qcomment.css' . '" media="all" />' . "\r\n";
+       $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/qcomment/qcomment.css' . '" media="all" />' . "\r\n";
 
-       $words = PConfig::get(local_user(),'qcomment','words');
-       if(is_null($words)) {
-               $words = t(':-)') . "\n" . t(':-(') . "\n" .  t('lol');
-       }
+       $words = PConfig::get(local_user(), 'qcomment', 'words', t(':-)') . "\n" . t(':-(') . "\n" .  t('lol'));
 
-    $s .= '<div class="settings-block">';
-    $s .= '<h3>' . t('Quick Comment Settings') . '</h3>';
-    $s .= '<div id="qcomment-wrapper">';
+       $s .= '<div class="settings-block">';
+       $s .= '<h3>' . t('Quick Comment Settings') . '</h3>';
+       $s .= '<div id="qcomment-wrapper">';
        $s .= '<div id="qcomment-desc">' . t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.") . '</div>';
-    $s .= '<label id="qcomment-label" for="qcomment-words">' . t('Enter quick comments, one per line') . ' </label>';
-    $s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(unxmlify($words)) . '</textarea>';
-    $s .= '</div><div class="clear"></div>';
+       $s .= '<label id="qcomment-label" for="qcomment-words">' . t('Enter quick comments, one per line') . ' </label>';
+       $s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(unxmlify($words)) . '</textarea>';
+       $s .= '</div><div class="clear"></div>';
 
-    $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
        $s .= '</div>';
 
        return;
-
 }
 
 function qcomment_addon_settings_post(&$a,&$b) {