nextcloud/apps/user_openid/settings.php

10 lines
275 B
PHP
Raw Normal View History

<?php
2012-05-06 17:00:36 -04:00
$tmpl = new OCP\Template( 'user_openid', 'settings');
2012-05-02 09:54:34 -04:00
$identity=OCP\Config::getUserValue(OCP\USER::getUser(),'user_openid','identity','');
2012-06-10 18:23:35 -04:00
$tmpl->assign('identity',htmlentities($identity));
2012-05-01 14:03:41 -04:00
OCP\Util::addscript('user_openid','settings');
return $tmpl->fetchPage();
?>