nextcloud/apps/user_openid/settings.php

10 lines
275 B
PHP
Raw Normal View History

<?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','');
2012-06-11 02:23:35 +04:00
$tmpl->assign('identity',htmlentities($identity));
2012-05-01 22:03:41 +04:00
OCP\Util::addscript('user_openid','settings');
return $tmpl->fetchPage();
?>