blob: eabf4a670a12b9bdd35bea05c42cb0c480926275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? foreach ($button_list->main as $button): ?>
<a class="<?= $button->class ?> ui-corner-all ui-state-default" href="<?= $button->href ?>"
title="<?= $button->title ?>">
<span class="ui-icon <?= $button->icon ?>">
<?= $button->title ?>
</span>
</a>
<? endforeach ?>
<? if (!empty($button_list->additional)): ?>
<a class="gButtonLink ui-corner-all ui-state-default options" href="#" title="<?= t("additional options") ?>">
<span class="ui-icon ui-icon-triangle-1-s">
<?= t("Additional options") ?>
</span>
</a>
<ul id="gQuickPaneOptions" style="display: none">
<? foreach ($button_list->additional as $button): ?>
<li><a class="<?= $button->class ?>" href="<?= $button->href ?>"
title="<?= $button->title ?>">
<?= $button->title ?>
</a></li>
<? endforeach ?>
</ul>
<? endif ?>
|