mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-01 04:51:44 +08:00
26 lines
No EOL
545 B
PHP
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'); |