app.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @author Felix Moeller <mail@felixmoeller.de>
  4. * @author Frank Karlitschek <frank@owncloud.org>
  5. * @author j-ed <juergen@eisfair.org>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. *
  8. * @copyright Copyright (c) 2015, ownCloud, Inc.
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. require_once OC_App::getAppPath('user_webdavauth').'/user_webdavauth.php';
  25. OC_APP::registerAdmin('user_webdavauth', 'settings');
  26. OC_User::registerBackend("WEBDAVAUTH");
  27. OC_User::useBackend( "WEBDAVAUTH" );
  28. // add settings page to navigation
  29. $entry = array(
  30. 'id' => "user_webdavauth_settings",
  31. 'order'=>1,
  32. 'href' => \OCP\Util::linkTo( "user_webdavauth", "settings.php" ),
  33. 'name' => 'WEBDAVAUTH'
  34. );