if(! local_user() || (! x($_POST,'fromapp-submit')))
return;
- set_pconfig(local_user(),'fromapp','app',$_POST['fromapp']);
+ set_pconfig(local_user(),'fromapp','app',$_POST['fromapp-input']);
+ set_pconfig(local_user(),'fromapp','force',intval($_POST['fromapp-force']));
+
info( t('Fromapp settings updated.') . EOL);
}
$fromapp = get_pconfig(local_user(),'fromapp','app');
if($fromapp === false)
$fromapp = '';
+
+ $force = intval(get_pconfig(local_user(),'fromapp','force'));
+
+ $force_enabled = (($force) ? ' checked="checked" ' : '');
+
/* Add some HTML to the existing form */
$s .= '<div class="settings-block">';
$s .= '<h3>' . t('FromApp Settings') . '</h3>';
$s .= '<div id="fromapp-wrapper">';
- $s .= '<label id="fromapp-label" for="fromapp">' . t('The application name you would like to show your posts originating from.') . '</label>';
- $s .= '<input id="fromapp-input" type="text" name="fromapp" value="' . $fromapp . '" ' . '/>';
+ $s .= '<label id="fromapp-label" for="fromapp-input">' . t('The application name you would like to show your posts originating from.') . '</label>';
+ $s .= '<input id="fromapp-input" type="text" name="fromapp-input" value="' . $fromapp . '" ' . '/>';
+ $s .= '<div class="clear"></div>';
+
+ $s .= '<label id="fromapp-force-label" for="fromapp-force">' . t('Use this application name even if another application was used.') . '</label>';
+ $s .= '<input id="fromapp-force" type="checkbox" name="fromapp-force" value="1" ' . $force_enabled . '/>';
+
$s .= '</div><div class="clear"></div>';
/* provide a submit button */
return;
$app = get_pconfig(local_user(), 'fromapp', 'app');
+ $force = intval(get_pconfig(local_user(), 'fromapp','force'));
if(($app === false) || (! strlen($app)))
return;
+ if(strlen(trim($item['app'])) && (! $force))
+ return;
+
$apps = explode(',',$app);
$item['app'] = trim($apps[mt_rand(0,count($apps)-1)]);
return;