{* $Id$ *} {* Show help for debugger commands *} {if $command_result.action eq 'one'} {* Show help about single command *}
{$command_result.name} {$command_result.description}

{tr}Syntax:{/tr}
{$command_result.syntax}

{tr}Example:{/tr}
{$command_result.example}
{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 *} {section name=i loop=$command_result[0]} {/section}
{$command_result[0][i].cmd} {$command_result[0][i].description}
{/if}