mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 19:34:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			463 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			463 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| // @codingStandardsIgnoreStart
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| 
 | |
| use Icinga\Application\Icinga;
 | |
| use Icinga\Module\Doc\Controller as DocController;
 | |
| 
 | |
| class Doc_IndexController extends DocController
 | |
| {
 | |
|     /**
 | |
|      * Display the application's documentation
 | |
|      */
 | |
|     public function indexAction()
 | |
|     {
 | |
|         $this->populateViewFromDocDirectory(Icinga::app()->getApplicationDir('/../doc'));
 | |
|     }
 | |
| }
 | |
| // @codingStandardsIgnoreEnd
 |