2011-08-08 21:32:54 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-06 21:00:36 +00:00
|
|
|
$tmpl = new OCP\Template( 'user_openid', 'settings');
|
2012-05-02 13:54:34 +00:00
|
|
|
$identity=OCP\Config::getUserValue(OCP\USER::getUser(),'user_openid','identity','');
|
2011-08-08 21:32:54 +00:00
|
|
|
$tmpl->assign('identity',$identity);
|
|
|
|
|
2012-05-01 18:03:41 +00:00
|
|
|
OCP\Util::addscript('user_openid','settings');
|
2011-08-08 21:32:54 +00:00
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|
|
|
|
?>
|