2009-01-05 08:05:50 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-06-22 20:46:40 +08:00
|
|
|
<? 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 ?>
|
2009-02-17 05:11:39 +00:00
|
|
|
</span>
|
|
|
|
|
</a>
|
2009-06-22 20:46:40 +08:00
|
|
|
<? endforeach ?>
|
2009-01-06 09:30:32 +00:00
|
|
|
|
2009-06-22 20:46:40 +08:00
|
|
|
<? if (!empty($button_list->additional)): ?>
|
2009-03-18 02:49:04 +00:00
|
|
|
<a class="gButtonLink ui-corner-all ui-state-default options" href="#" title="<?= t("additional options") ?>">
|
2009-03-05 06:03:04 +00:00
|
|
|
<span class="ui-icon ui-icon-triangle-1-s">
|
2009-01-14 06:36:47 +00:00
|
|
|
<?= t("Additional options") ?>
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
2009-02-08 00:42:17 +00:00
|
|
|
|
2009-04-07 07:14:36 +00:00
|
|
|
<ul id="gQuickPaneOptions" style="display: none">
|
2009-06-22 20:46:40 +08:00
|
|
|
<? foreach ($button_list->additional as $button): ?>
|
|
|
|
|
<li><a class="<?= $button->class ?>" href="<?= $button->href ?>"
|
|
|
|
|
title="<?= $button->title ?>">
|
|
|
|
|
<?= $button->title ?>
|
2009-04-07 07:14:36 +00:00
|
|
|
</a></li>
|
2009-06-22 20:46:40 +08:00
|
|
|
<? endforeach ?>
|
2009-04-07 07:14:36 +00:00
|
|
|
</ul>
|
2009-02-08 00:42:17 +00:00
|
|
|
<? endif ?>
|