settings.php 567 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
  4. * This file is licensed under the Affero General Public License version 3 or later.
  5. * See the COPYING-README file.
  6. */
  7. OC_Util::checkLoggedIn();
  8. OC_Util::verifyUser();
  9. OC_App::loadApps();
  10. OC_Util::addStyle( 'settings', 'settings' );
  11. OC_App::setActiveNavigationEntry( 'settings' );
  12. $tmpl = new OC_Template( 'settings', 'settings', 'user');
  13. $forms=OC_App::getForms('settings');
  14. $tmpl->assign('forms', array());
  15. foreach($forms as $form) {
  16. $tmpl->append('forms', $form);
  17. }
  18. $tmpl->printPage();