mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			419 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			419 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Module\Iframe\Controllers;
 | |
| 
 | |
| use Icinga\Web\Controller;
 | |
| 
 | |
| /**
 | |
|  * Display external or internal links within an iframe
 | |
|  */
 | |
| class IndexController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * Display iframe w/ the given URL
 | |
|      */
 | |
|     public function indexAction()
 | |
|     {
 | |
|         $this->view->url = $this->params->getRequired('url');
 | |
|     }
 | |
| }
 |