page['htmlhead'] .= '' . "\r\n";
/* Get the current state of our config variable */
$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 .= '';
$s .= '' . t('FromApp Settings') . '
';
$s .= '';
$s .= '
';
$s .= '
';
$s .= '' . t('FromApp Settings') . '
';
$s .= '';
$s .= '
';
$s .= '
';
$s .= '
';
$s .= '
';
$s .= '
';
$s .= '
';
$s .= '
';
/* provide a submit button */
$s .= '
';
}
function fromapp_post_hook(&$a,&$item) {
if(! local_user())
return;
if(local_user() != $item['uid'])
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;
}