DigiComp.SettingValidator/Classes/Package.php

45 lines
1.3 KiB
PHP
Raw Normal View History

2014-04-18 14:20:28 +02:00
<?php
namespace DigiComp\SettingValidator;
/*
* This file is part of the DigiComp.SettingValidator package.
*
* (c) digital competence
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/
2017-03-13 17:00:13 +01:00
use Neos\Flow\Configuration\ConfigurationManager;
use Neos\Flow\Core\Bootstrap;
use Neos\Flow\Package\Package as BasePackage;
2014-04-18 14:20:28 +02:00
/**
* Package base class of the DigiComp.SettingValidator package.
2014-04-18 14:20:28 +02:00
*/
2016-08-01 01:00:29 +02:00
class Package extends BasePackage
{
const CONFIGURATION_TYPE_VALIDATION = 'Validation';
2017-03-13 17:00:13 +01:00
/**
* @param Bootstrap $bootstrap
*/
2016-08-01 01:00:29 +02:00
public function boot(Bootstrap $bootstrap)
{
parent::boot($bootstrap);
2014-04-18 14:20:28 +02:00
2016-08-01 01:00:29 +02:00
$dispatcher = $bootstrap->getSignalSlotDispatcher();
2017-03-13 17:00:13 +01:00
$dispatcher->connect(ConfigurationManager::class, 'configurationManagerReady',
function ($configurationManager) {
/* @var ConfigurationManager $configurationManager */
2016-08-01 01:00:29 +02:00
$configurationManager->registerConfigurationType(
static::CONFIGURATION_TYPE_VALIDATION,
2016-08-01 01:00:29 +02:00
ConfigurationManager::CONFIGURATION_PROCESSING_TYPE_DEFAULT,
true
);
}
);
}
2014-04-18 14:20:28 +02:00
}