Files
gallery3/modules/gallery/views/admin_themes_buttonset.html.php

49 lines
1.3 KiB
PHP
Raw Normal View History

2011-04-25 22:06:36 -07:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul class="g-buttonset">
<li>
<a target="_blank"
2018-01-28 12:43:27 +01:00
<?php if (isset($info['author_url'])): ?>
2011-04-25 22:06:36 -07:00
class="ui-state-default ui-icon ui-icon-person ui-corner-left"
href="<?= $info['author_url'] ?>"
2018-01-28 12:43:27 +01:00
<?php else: ?>
2011-04-25 22:06:36 -07:00
class="ui-state-disabled ui-icon ui-icon-person ui-corner-left"
href="#"
2018-01-28 12:43:27 +01:00
<?php endif ?>
2018-01-28 12:43:27 +01:00
<?php if (isset($info['author_name'])): ?>
2011-04-25 22:06:36 -07:00
title="<?= $info['author_name'] ?>"
2018-01-28 12:43:27 +01:00
<?php endif ?>
2011-04-25 22:06:36 -07:00
>
2018-01-28 12:43:27 +01:00
<?php if (isset($info['author_name'])): ?>
2011-04-25 22:06:36 -07:00
<?= $info['author_name'] ?>
2018-01-28 12:43:27 +01:00
<?php endif ?>
2011-04-25 22:06:36 -07:00
</a>
</li>
<li>
<a target="_blank"
2018-01-28 12:43:27 +01:00
<?php if (isset($info['info_url'])): ?>
2011-04-25 22:06:36 -07:00
class="ui-state-default ui-icon ui-icon-info"
href="<?= $info['info_url'] ?>"
2018-01-28 12:43:27 +01:00
<?php else: ?>
2011-04-25 22:06:36 -07:00
class="ui-state-disabled ui-icon ui-icon-info"
href="#"
2018-01-28 12:43:27 +01:00
<?php endif ?>
2011-04-25 22:06:36 -07:00
>
<?= t("info") ?>
</a>
</li>
<li>
<a target="_blank"
2018-01-28 12:43:27 +01:00
<?php if (isset($info['discuss_url'])): ?>
2011-04-25 22:06:36 -07:00
class="ui-state-default ui-icon ui-icon-comment ui-corner-right"
href="<?= $info['discuss_url'] ?>"
2018-01-28 12:43:27 +01:00
<?php else: ?>
2011-04-25 22:06:36 -07:00
class="ui-state-disabled ui-icon ui-icon-comment ui-corner-right"
href="#"
2018-01-28 12:43:27 +01:00
<?php endif ?>
2011-04-25 22:06:36 -07:00
>
<?= t("discuss") ?>
</a>
</li>
</ul>