0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
templates
/
debug
/
[
Home
]
File: tiki-debug_console_help.tpl
{* $Header: /cvsroot/tikiwiki/tiki/templates/debug/tiki-debug_console_help.tpl,v 1.3 2004/03/15 21:27:35 mose Exp $ *} {* 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}