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