mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 19:34:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			629 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			629 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Controllers;
 | |
| 
 | |
| use Icinga\Application\Icinga;
 | |
| use Icinga\Web\Controller\ActionController;
 | |
| 
 | |
| /**
 | |
|  * Create complex layout parts
 | |
|  */
 | |
| class LayoutController extends ActionController
 | |
| {
 | |
|     /**
 | |
|      * Render the menu
 | |
|      */
 | |
|     public function menuAction()
 | |
|     {
 | |
|         $this->setAutorefreshInterval(15);
 | |
|         $this->_helper->layout()->disableLayout();
 | |
|         $this->view->menuRenderer = Icinga::app()->getMenu()->getRenderer();
 | |
|     }
 | |
| 
 | |
|     public function announcementsAction()
 | |
|     {
 | |
|         $this->_helper->layout()->disableLayout();
 | |
|     }
 | |
| }
 |