mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Module\Setup\Forms;
 | |
| 
 | |
| use Icinga\Web\Form;
 | |
| use Icinga\Module\Setup\SetupWizard;
 | |
| 
 | |
| /**
 | |
|  * Wizard page to list setup requirements
 | |
|  */
 | |
| class RequirementsPage extends Form
 | |
| {
 | |
|     /**
 | |
|      * The wizard
 | |
|      *
 | |
|      * @var SetupWizard
 | |
|      */
 | |
|     protected $wizard;
 | |
| 
 | |
|     /**
 | |
|      * Initialize this page
 | |
|      */
 | |
|     public function init()
 | |
|     {
 | |
|         $this->setName('setup_requirements');
 | |
|         $this->setViewScript('form/setup-requirements.phtml');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Set the wizard
 | |
|      *
 | |
|      * @param   SetupWizard    $wizard
 | |
|      *
 | |
|      * @return  $this
 | |
|      */
 | |
|     public function setWizard(SetupWizard $wizard)
 | |
|     {
 | |
|         $this->wizard = $wizard;
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return the wizard
 | |
|      *
 | |
|      * @return  SetupWizard
 | |
|      */
 | |
|     public function getWizard()
 | |
|     {
 | |
|         return $this->wizard;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Validate the given form data and check whether the wizard's requirements are fulfilled
 | |
|      *
 | |
|      * @param   array   $data   The data to validate
 | |
|      *
 | |
|      * @return  bool
 | |
|      */
 | |
|     public function isValid($data)
 | |
|     {
 | |
|         if (false === parent::isValid($data)) {
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         return $this->wizard->getRequirements()->fulfilled();
 | |
|     }
 | |
| }
 |