start working on wiki

This commit is contained in:
Dennis Eichhorn 2020-02-23 22:59:20 +01:00
parent ff6e521eb9
commit b8d33a6e5b
4 changed files with 1 additions and 4 deletions

View File

@ -18,4 +18,3 @@ $app = $this->getData('app');
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();
?>

View File

@ -18,4 +18,3 @@ $apps = $this->getData('apps');
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();
?>

View File

@ -18,4 +18,3 @@ $app = $this->getData('app');
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();
?>

View File

@ -16,7 +16,7 @@ use \phpOMS\Uri\UriFactory;
/** /**
* @var \Modules\Knowledgebase\Models\WikiCategory[] $categories * @var \Modules\Knowledgebase\Models\WikiCategory[] $categories
* @var \Modules\Knowledgebase\Models\WikiDoc[] $documents * @var \Modules\Knowledgebase\Models\WikiDoc[] $documents
*/ */
$categories = $this->getData('categories') ?? []; $categories = $this->getData('categories') ?? [];
$documents = $this->getData('docs') ?? []; $documents = $this->getData('docs') ?? [];