1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/embedlinks/views/embedlinks_sidebar.html.php

24 lines
999 B
PHP
Raw Normal View History

2009-07-09 01:36:56 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? if (module::get_var("embedlinks", "HTMLCode")) { ?>
<a href="<?= url::site("embedlinks/showhtml/{$item->id}") ?>" title="<?= t("HTML Links") ?>"
class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all">
2009-07-09 01:36:56 +00:00
<span class="ui-icon ui-icon-info"></span>
2009-07-13 02:55:47 +00:00
<?= t("Show HTML Code") ?>
2009-07-09 01:36:56 +00:00
</a><br />
<? } ?>
<? if (module::get_var("embedlinks", "BBCode")) { ?>
<a href="<?= url::site("embedlinks/showbbcode/{$item->id}") ?>" title="<?= t("BBCode Links") ?>"
class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all">
2009-07-09 01:36:56 +00:00
<span class="ui-icon ui-icon-info"></span>
2009-07-13 02:55:47 +00:00
<?= t("Show BBCode") ?>
2009-07-09 01:36:56 +00:00
</a>
2009-08-02 19:11:07 +00:00
<? } ?>
<? if (module::get_var("embedlinks", "FullURL")) { ?>
<a href="<?= url::site("embedlinks/showfullurl/{$item->id}") ?>" title="<?= t("URLs") ?>"
class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all">
2009-08-02 19:11:07 +00:00
<span class="ui-icon ui-icon-info"></span>
<?= t("Show URLs") ?>
</a>
2009-07-09 01:36:56 +00:00
<? } ?>