diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-05-16 01:40:10 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-23 12:36:37 +0200 |
commit | 560ab2e91158fa57b12cb5f382dfd79cbbc1ffc4 (patch) | |
tree | 679e3b4989fed3aea1d62d97f69b0a878fb75bf9 /settings/templates/admin | |
parent | 247b305b79e16ef1e26b374a4efed7e44c241e91 (diff) | |
download | nextcloud-server-560ab2e91158fa57b12cb5f382dfd79cbbc1ffc4.tar.gz nextcloud-server-560ab2e91158fa57b12cb5f382dfd79cbbc1ffc4.zip |
one settings link, common template, styling
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'settings/templates/admin')
-rw-r--r-- | settings/templates/admin/frame.php | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/settings/templates/admin/frame.php b/settings/templates/admin/frame.php deleted file mode 100644 index 2b234f4cd9b..00000000000 --- a/settings/templates/admin/frame.php +++ /dev/null @@ -1,60 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016 Arthur Schiwon <blizzz@arthur-schiwon.de> - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see <http://www.gnu.org/licenses/>. - * - */ - -style('settings', 'settings'); -script('settings', [ 'settings', 'admin', 'log', 'certificates'] ); -script('core', ['multiselect', 'setupchecks']); -script('files', 'jquery.fileupload'); - -?> - -<div id="app-navigation"> - <ul> - <?php - foreach($_['forms'] as $form) { - if (isset($form['anchor'])) { - $anchor = \OC::$server->getURLGenerator()->linkToRoute('settings.AdminSettings.index', ['section' => $form['anchor']]); - $class = 'nav-icon-' . $form['anchor']; - $sectionName = $form['section-name']; - $active = $form['active'] ? ' class="active"' : ''; - ?> - <li <?php print_unescaped($form['active'] ? ' class="active"' : ''); ?>> - <a href="<?php p($anchor); ?>"> - <?php if (!empty($form['icon'])) { ?> - <img alt="" src="<?php print_unescaped($form['icon']); ?>"> - <span><?php p($form['section-name']); ?></span> - <?php } else { ?> - <span class="no-icon"><?php p($form['section-name']); ?></span> - <?php } ?> - </a> - </li> - <?php - } - } - ?> - </ul> -</div> - -<div id="app-content"> - <?php print_unescaped($_['content']); ?> -</div> |