doc/lib: Move all renderer classes to the renderer namespace
refs #6630
This commit is contained in:
parent
d1aed4f773
commit
03100b8c59
|
@ -8,7 +8,7 @@ use Icinga\Module\Doc\DocParser;
|
|||
use Icinga\Module\Doc\Exception\DocException;
|
||||
use Icinga\Module\Doc\Search\DocSearch;
|
||||
use Icinga\Module\Doc\Search\DocSearchIterator;
|
||||
use Icinga\Module\Doc\Search\DocSearchRenderer;
|
||||
use Icinga\Module\Doc\Renderer\DocSearchRenderer;
|
||||
|
||||
class Doc_SearchController extends DocController
|
||||
{
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
namespace Icinga\Module\Doc;
|
||||
|
||||
use Icinga\Module\Doc\Renderer\DocSectionRenderer;
|
||||
use Icinga\Module\Doc\Renderer\DocTocRenderer;
|
||||
use Icinga\Web\Controller\ModuleActionController;
|
||||
|
||||
class DocController extends ModuleActionController
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Doc;
|
||||
namespace Icinga\Module\Doc\Renderer;
|
||||
|
||||
use Exception;
|
||||
use RecursiveIteratorIterator;
|
|
@ -1,10 +1,11 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Doc\Search;
|
||||
namespace Icinga\Module\Doc\Renderer;
|
||||
|
||||
use RecursiveIteratorIterator;
|
||||
use Icinga\Module\Doc\DocRenderer;
|
||||
use Icinga\Module\Doc\Search\DocSearchIterator;
|
||||
use Icinga\Module\Doc\Search\DocSearchMatch;
|
||||
|
||||
/**
|
||||
* Renderer for doc searches
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Doc;
|
||||
namespace Icinga\Module\Doc\Renderer;
|
||||
|
||||
require_once 'Parsedown/Parsedown.php';
|
||||
|
||||
|
@ -11,6 +11,7 @@ use Parsedown;
|
|||
use RecursiveIteratorIterator;
|
||||
use Icinga\Data\Tree\SimpleTree;
|
||||
use Icinga\Module\Doc\Exception\ChapterNotFoundException;
|
||||
use Icinga\Module\Doc\DocSectionFilterIterator;
|
||||
use Icinga\Module\Doc\Search\DocSearch;
|
||||
use Icinga\Module\Doc\Search\DocSearchMatch;
|
||||
use Icinga\Web\Dom\DomNodeIterator;
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Doc;
|
||||
namespace Icinga\Module\Doc\Renderer;
|
||||
|
||||
use Icinga\Web\View;
|
||||
use Icinga\Data\Tree\TreeNodeIterator;
|
Loading…
Reference in New Issue