Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tutorial_tree.tpl « templates « phpedit « templates « frames « HTML « Converters « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23459a96d43c2c3a35dfbf128334461c9772fe03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  var {$name}tree = new WebFXTree{if $subtree}Item{/if}('{$main.title|strip_tags}','{$main.link}');
{if !$subtree}  {$name}tree.setBehavior('classic');
{/if}  {$name}tree.openIcon = 'media/images/msgInformation.gif';
  {$name}tree.icon = 'media/images/{if $subtree}msgInformation.gif{else}FolderClosed.gif{/if}';
{if $kids}
{$kids}

{/if}{if $subtree}  {$parent}tree.add({$name}tree);
{else}
  document.write({$name}tree);
{/if}