You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

44 lines
1.7 KiB

{* $Id$ *}
{* \brief Show plugins help
* included by tiki-show_help.tpl via smarty_block_add_help() *}
{if count($plugins) ne 0}
<h3>{tr}Plugins{/tr}</h3>
<div class="help_section">
<p>
{tr}Note that plugin arguments can be enclosed with double quotes (&quot;); this allows them to contain , or = or &gt;{/tr}.
<br>
{if $prefs.feature_help eq 'y'}{tr}More help here{/tr}
<a href="{$prefs.helpurl}Plugins" target="tikihelp" class="tikihelp" title="{tr}Plugins:{/tr}{tr}Wiki plugins extend the function of wiki syntax with more specialized commands.{/tr}">
{icon name='help' style="vertical-align:middle"}
</a>
{/if}
</p>
{if $tiki_p_admin eq 'y'}
<a href="tiki-admin.php?page=textarea&amp;cookietab=2" target="tikihelp" class="tikihelp">
{tr}Activate/deactivate plugins{/tr}
</a>
{/if}
{if isset($editorId)}
{listfilter selectors='#plugins_help_table tr' editorId=$editorId parentTabId="plugin_help"}
{else}
{listfilter selectors='#plugins_help_table tr' parentTabId="plugin_help"}
{/if}
<table id="plugins_help_table" width="95%" class="formcolor">
<tr><th>{tr}Description{/tr}</th></tr>
{section name=i loop=$plugins}
{if !empty($plugins[i])}
<tr>
<td>{* $plugins[i].help is generated using the tiki-plugin_help.tpl template *}
{$plugins[i].help}
</td>
</tr>
{/if}
{/section}
</table>
</div>
{/if}