Maslosoft Zamm API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
<?php
/**
* This software package is licensed under `AGPL, Commercial` license[s].
*
* @package maslosoft/zamm
* @license AGPL, Commercial
*
* @copyright Copyright (c) Peter Maselkowski <pmaselkowski@gmail.com>
* @link https://maslosoft.com/zamm/
*/
namespace Maslosoft\Zamm\Widgets;
use Maslosoft\Staple\Widgets\SubNavRecursive;
/**
* This widget will display recursive tree of sub pages
* relative to current page.
* @package Maslosoft\Zamm\Widgets
*/
class DocNavRecursive extends SubNavRecursive
{
public $title = '';
public function __construct($options = [])
{
if(is_string($options))
{
$this->title = $options;
$options = [];
}
$root = __DIR__;
if(empty($options['root']))
{
$trace = debug_backtrace(null, 1);
$root = dirname($trace[0]['file']);
}
$defaults = [
'root' => $root,
'path' => '.',
'skipLevel' => 1
];
foreach ($defaults as $name => $value)
{
if (!array_key_exists($name, $options))
{
$options[$name] = $value;
}
}
parent::__construct($options);
}
public function __toString()
{
$prefix = '';
if($this->title)
{
$prefix = '<h3>' . $this->title . '</h3>' . "\n";
}
return $prefix . parent::__toString() . "\n\n";
}
}
API documentation generated by ApiGen