settings.php 997 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * ownCloud - user_migrate
  4. *
  5. * @author Thomas Schmidt
  6. * @copyright 2011 Thomas Schmidt tom@opensuse.org
  7. * @author Tom Needham
  8. * @copyright 2012 Tom Needham tom@owncloud.com
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  12. * License as published by the Free Software Foundation; either
  13. * version 3 of the License, or any later version.
  14. *
  15. * This library 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
  21. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. OCP\App::checkAppEnabled('user_migrate');
  25. // fill template
  26. $tmpl = new OCP\Template('user_migrate', 'settings');
  27. return $tmpl->fetchPage();