43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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.
|
|
*/
|
|
|
|
use Neos\Flow\Configuration\ConfigurationManager;
|
|
use Neos\Flow\Core\Bootstrap;
|
|
use Neos\Flow\Package\Package as NeosFlowPackagePackage;
|
|
|
|
/**
|
|
* Package base class of the DigiComp.SettingValidator package.
|
|
*/
|
|
class Package extends NeosFlowPackagePackage
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function boot(Bootstrap $bootstrap): void
|
|
{
|
|
parent::boot($bootstrap);
|
|
|
|
$dispatcher = $bootstrap->getSignalSlotDispatcher();
|
|
|
|
$dispatcher->connect(
|
|
ConfigurationManager::class,
|
|
'configurationManagerReady',
|
|
function (ConfigurationManager $configurationManager): void {
|
|
$configurationManager->registerConfigurationType('Validation');
|
|
}
|
|
);
|
|
}
|
|
}
|