|
Revision 3397, 461 bytes
(checked in by grum, 4 years ago)
|
|
Add plugin MyPolls - this release is not published in PEM (functionnal but not tested yet...)
|
| Line | |
|---|
| 1 | |
|---|
| 2 | {if isset($block->data) and count($block->data)} |
|---|
| 3 | <!-- mypolls menu bar --> |
|---|
| 4 | {if $block->get_title() !="" } |
|---|
| 5 | <dt>{$block->get_title()}</dt> |
|---|
| 6 | {/if} |
|---|
| 7 | <dd> |
|---|
| 8 | <ul> |
|---|
| 9 | {foreach from=$block->data key=name item=link} |
|---|
| 10 | <li> |
|---|
| 11 | {$link.nfo}<a href="{$link.link}">{$link.text}</a> |
|---|
| 12 | {if $link.edit!=""} [<a href="{$link.edit}">{"mypolls_admin_edit"|@translate}</a>] |
|---|
| 13 | {/if} |
|---|
| 14 | </li> |
|---|
| 15 | {/foreach} |
|---|
| 16 | </ul> |
|---|
| 17 | </dd> |
|---|
| 18 | {/if} |
|---|