0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
templates
/
debug
/
[
Home
]
File: tiki-debug_console_help.tpl
{* $Id: tiki-debug_console_help.tpl 17630 2009-03-26 03:37:22Z luciash $ *} {* Show help for debugger commands *} {if $command_result.action eq 'one'} {* Show help about single command *} <table border="0"> <tr> <td width="15%"><code>{$command_result.name}</code></td> <td>{$command_result.description} </td> </tr> <tr><td><br /></td></tr> <tr> <td></td> <td> {tr}Syntax{/tr}: <pre>{$command_result.syntax}</pre> </td> </tr> <tr><td><br /></td></tr> <tr> <td></td> <td> {tr}Example{/tr}: <pre>{$command_result.example}</pre> </td> </tr> </table> {elseif $command_result.action eq 'list'} {* Show help for all available commands. There is any time at least one command present: 'help' -- its appended by debugger itself *} <table border="0"> {section name=i loop=$command_result[0]} <tr> <td width="15%"><code>{$command_result[0][i].cmd}</code></td> <td>{$command_result[0][i].description}</td> </tr> {/section} </table> {/if}