mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			672 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			672 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
# namespace Icinga\Application\Controllers;
 | 
						|
 | 
						|
use Icinga\Web\Controller\ActionController;
 | 
						|
use Icinga\Application\Benchmark;
 | 
						|
use Icinga\Web\Url;
 | 
						|
 | 
						|
/**
 | 
						|
 * Application wide index controller
 | 
						|
 */
 | 
						|
class IndexController extends ActionController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Use a default redirection rule to welcome page
 | 
						|
     */
 | 
						|
    public function preDispatch()
 | 
						|
    {
 | 
						|
        if ($this->getRequest()->getActionName() !== 'welcome') {
 | 
						|
            $this->redirectNow(Url::fromRequest()->setPath('dashboard'));
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Application's start page
 | 
						|
     */
 | 
						|
    public function welcomeAction()
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |