page['htmlhead'] .= '' . "\r\n"; /* Get the current state of our config variable */ $fromapp = get_pconfig(local_user(),'fromapp','app'); if($fromapp === false) $fromapp = ''; /* Add some HTML to the existing form */ $s .= '
'; $s .= '

' . t('FromApp Settings') . '

'; $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'); if(($app === false) || (! strlen($app))) return; $item['app'] = $app; return; }