mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			389 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			389 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| 
 | |
| use Icinga\Application\Icinga;
 | |
| use Icinga\Module\Doc\DocController;
 | |
| 
 | |
| class Doc_IcingawebController extends DocController
 | |
| {
 | |
|     /**
 | |
|      * View toc of Icinga Web 2's documentation
 | |
|      */
 | |
|     public function tocAction()
 | |
|     {
 | |
|         $this->renderToc(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2');
 | |
|     }
 | |
| }
 |