2016-02-18 13:48:38 +01:00
|
|
|
<h1 style="clear: both"><?= $this->escape($title) ?></h1>
|
2016-02-17 18:54:46 +01:00
|
|
|
<ul class="main-actions" data-base-target="_next">
|
|
|
|
<?php foreach ($actions as $a): ?>
|
|
|
|
<li>
|
2016-02-28 16:43:45 +01:00
|
|
|
<a<?php
|
|
|
|
if (array_key_exists(4, $a)) {
|
|
|
|
echo ' class="state-' . $a[4] . '"';
|
|
|
|
}
|
|
|
|
?> href="<?= $this->url($a[2]) ?>">
|
2016-02-17 18:54:46 +01:00
|
|
|
<?= $this->icon($a[0]) ?>
|
|
|
|
<?= $this->escape($a[1]) ?>
|
2016-02-18 13:48:38 +01:00
|
|
|
<p><?= $a[3] ?></p>
|
2016-02-17 18:54:46 +01:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</ul>
|
|
|
|
|