summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/cube-index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/cube-index.phtml')
-rw-r--r--application/views/scripts/cube-index.phtml20
1 files changed, 20 insertions, 0 deletions
diff --git a/application/views/scripts/cube-index.phtml b/application/views/scripts/cube-index.phtml
new file mode 100644
index 0000000..e45bcde
--- /dev/null
+++ b/application/views/scripts/cube-index.phtml
@@ -0,0 +1,20 @@
+<div class="controls">
+ <?php if (! $this->compact): ?>
+ <?= $this->tabs ?>
+ <h1><?= $this->escape($this->title) ?></h1>
+ <?php if ($this->form && ! $this->compact): ?>
+ <?= $this->qlink('Hide settings', $this->url()->without('showSettings'), null, ['icon' => 'wrench']) ?>
+ <?php else: ?>
+ <?= $this->qlink('Show settings', $this->url()->with('showSettings', true), null, ['icon' => 'wrench']) ?>
+ <?php endif ?>
+ <?php endif ?>
+</div>
+
+<div class="content">
+ <?php if ($this->form && ! $this->compact): ?>
+ <?= $this->form ?>
+ <?php endif ?>
+ <?php if ($this->cube): ?>
+ <?= $this->cube->render($this) ?>
+ <?php endif ?>
+</div>