/* Get the current state of our config variable */
$fromapp = PConfig::get(local_user(),'fromapp','app');
- if($fromapp === false)
+ if(is_null($fromapp))
$fromapp = '';
$force = intval(PConfig::get(local_user(),'fromapp','force'));
}
-function fromapp_post_hook(&$a,&$item) {
- if(! local_user())
- return;
+function fromapp_post_hook(&$a,&$item)
+{
+ if(! local_user()) {
+ return;
+ }
- if(local_user() != $item['uid'])
- return;
+ if(local_user() != $item['uid']) {
+ return;
+ }
$app = PConfig::get(local_user(), 'fromapp', 'app');
$force = intval(PConfig::get(local_user(), 'fromapp','force'));
- if(($app === false) || (! strlen($app)))
- return;
+ 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)]);
+
return;
-
}
/* Get the current state of our config variable */
$notimeline = PConfig::get(local_user(),'system','no_wall_archive_widget');
- if($notimeline === false)
+ if(is_null($notimeline)) {
$notimeline = false;
+ }
$notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
/* Get the current state of our config variable */
$numfriends = PConfig::get(local_user(),'system','display_friend_count');
- if($numfriends === false)
+ if(is_null($numfriends)) {
$numfriends = 24;
+ }
/* Add some HTML to the existing form */
$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($words === false)
+ if(is_null($words)) {
$words = t(':-)') . "\n" . t(':-(') . "\n" . t('lol');
+ }
$s .= '<div class="settings-block">';
$s .= '<h3>' . t('Quick Comment Settings') . '</h3>';