21 lines
401 B
PHP
21 lines
401 B
PHP
|
<?php
|
||
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
||
|
|
||
|
namespace Icinga\Controllers;
|
||
|
|
||
|
use Icinga\Web\Controller;
|
||
|
|
||
|
/**
|
||
|
* Display external or internal links within an iframe
|
||
|
*/
|
||
|
class IframeController extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* Display iframe w/ the given URL
|
||
|
*/
|
||
|
public function indexAction()
|
||
|
{
|
||
|
$this->view->url = $this->params->getRequired('url');
|
||
|
}
|
||
|
}
|