Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'module/Schedule/view/schedule/schedule/overview.phtml')
-rw-r--r--module/Schedule/view/schedule/schedule/overview.phtml61
1 files changed, 0 insertions, 61 deletions
diff --git a/module/Schedule/view/schedule/schedule/overview.phtml b/module/Schedule/view/schedule/schedule/overview.phtml
deleted file mode 100644
index 09d67f6..0000000
--- a/module/Schedule/view/schedule/schedule/overview.phtml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-/**
- *
- * bareos-webui - Bareos Web-Frontend
- *
- * @link https://github.com/bareos/bareos-webui for the canonical source repository
- * @copyright Copyright (c) 2013-2016 Bareos GmbH & Co. KG (http://www.bareos.org/)
- * @license GNU Affero General Public License (http://www.gnu.org/licenses/)
- *
- * 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/>.
- *
- */
-
-$title = _('Schedules');
-$this->headTitle($title);
-
-?>
-
-<ul class="nav nav-tabs">
- <li><a href="<?php echo $this->url('schedule', array('action'=>'index')); ?>"><?php echo $this->translate('Show'); ?></a></li>
- <li class="active"><a href="<?php echo $this->url('schedule', array('action'=>'overview')); ?>"><?php echo $this->translate('Overview'); ?></a></li>
- <li><a href="<?php echo $this->url('schedule', array('action'=>'status')); ?>"><?php echo $this->translate('Scheduler status'); ?></a></li>
-</ul>
-
-<br />
-
-<?php if($this->acl_alert) : echo $this->ACLAlert($this->required_commands); elseif(!$this->acl_alert) : ?>
-
-<div class="row">
-<div class="col-md-8">
-
-<div class="panel panel-default">
-
-<div class="panel-heading">
- <h3 class="panel-title"><?php echo $this->translate("Schedules"); ?></h3>
-</div>
-
-<div class="panel-body">
-<pre class="dird-messages" style="height: 500px; font-size: 8pt;">
-<code>
-<?php echo $this->result; ?>
-</code>
-</pre>
-</div>
-
-</div>
-</div>
-
-<?php endif; ?>