nextcloud/apps/user_webdavauth/appinfo/app.php

40 lines
1.3 KiB
PHP
Raw Normal View History

2012-08-26 19:51:01 +04:00
<?php
/**
2015-03-26 13:44:34 +03:00
* @author Felix Moeller <mail@felixmoeller.de>
* @author Frank Karlitschek <frank@owncloud.org>
* @author j-ed <juergen@eisfair.org>
* @author Morris Jobke <hey@morrisjobke.de>
2015-06-25 12:43:55 +03:00
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-03-26 13:44:34 +03:00
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
require_once OC_App::getAppPath('user_webdavauth').'/user_webdavauth.php';
2012-08-26 19:51:01 +04:00
2012-11-04 14:10:46 +04:00
OC_APP::registerAdmin('user_webdavauth', 'settings');
2012-08-26 19:51:01 +04:00
OC_User::registerBackend("WEBDAVAUTH");
OC_User::useBackend( "WEBDAVAUTH" );
// add settings page to navigation
$entry = array(
'id' => "user_webdavauth_settings",
'order'=>1,
'href' => \OCP\Util::linkTo( "user_webdavauth", "settings.php" ),
2012-08-26 19:51:01 +04:00
'name' => 'WEBDAVAUTH'
);