passman/appinfo/app.php
2016-09-09 18:36:38 +02:00

26 lines
No EOL
545 B
PHP

<?php
/**
* Nextcloud - passman
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Sander Brand <brantje@gmail.com>
* @copyright Sander Brand 2016
*/
namespace OCA\Passman\AppInfo;
use OCP\Util;
require_once __DIR__ . '/autoload.php';
$app = new \OCA\Passman\AppInfo\Application();
$app->registerNavigationEntry();
$app->registerPersonalPage();
/**
* Loading translations
*
* The string has to match the app's folder name
*/
Util::addTranslations('passman');