Exemplo n.º 1
0
<?php

/**
 * ownCloud - registration
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Pellaeon Lin <*****@*****.**>
 * @copyright Pellaeon Lin 2014
 */
namespace OCA\Registration\App;

$app = new Registration();
$c = $app->getContainer();
\OC_App::registerLogIn(array('name' => $c->query('L10N')->t('Register'), 'href' => $c->query('URLGenerator')->linkToRoute('registration.register.askEmail')));
\OCP\App::registerAdmin($c->getAppName(), 'admin');
Exemplo n.º 2
0
<?php

/**
 * ownCloud - registration
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Pellaeon Lin <*****@*****.**>
 * @copyright Pellaeon Lin 2015
 */
namespace OCA\Registration\App;

$app = new Registration();
$controller = $app->getContainer()->query('SettingsController');
return $controller->displayPanel()->render();