[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
templates
/
help
/
[
Home
]
File: toc.tpl
{** * toc.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Help table of contents. * *} <div style="padding-top: 0.5em;"> <form action="{url op="search"}" method="post" style="display: inline"> <input type="text" name="keyword" size="16" maxlength="60" value="{$helpSearchKeyword|escape}" class="textField" /> <input type="submit" value="{translate key="common.search"}" class="button" /> </form> </div> {if !empty($helpSearchResult) && !empty($helpSearchKeyword)} <br /> <div><a href="{url op="search" anchor="result-$helpSearchResult"|escape keyword=$helpSearchKeyword|escape}">{translate key="help.searchReturnResults"}</a></div> {/if} <br /> <div><a href="{url op="toc"}">{translate key="help.toc"}</a></div> <br /> {if $toc->getParentTopicId() && $toc->getParentTopicId() != $topic->getId()} <div id="helpContents"> {translate key="help.contents"} <a href="{url op="view" path=$toc->getParentTopicId()|explode:"/"}">{translate key="help.upALevel"}</a> </div> <br /> {/if} <div id="helpToc" class="block"> <span class="blockTitle">{$toc->getTitle()}</span> <ul> {foreach from=$toc->getTopics() item=currTopic} {if $currTopic->getId() == $topic->getId()} <li><a href="{url op="view" path=$currTopic->getId()|explode:"/"}" class="current">{$currTopic->getTitle()}</a> {if $subToc} <ul> {foreach from=$subToc->getTopics() item=currSubTopic} <li><a href="{url op="view" path=$currSubTopic->getId()|explode:"/"}">{$currSubTopic->getTitle()}</a></li> {/foreach} </ul> {/if} </li> {else} <li><a href="{url op="view" path=$currTopic->getId()|explode:"/"}">{$currTopic->getTitle()}</a></li> {/if} {/foreach} </ul> </div>