1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
namespace Nette\Bridges\FormsDI;
use Nette;
/**
* Forms extension for Nette DI.
*/
class FormsExtension extends Nette\DI\CompilerExtension
{
public $defaults = [
'messages' => [],
];
public function afterCompile(Nette\PhpGenerator\ClassType $class)
{
$initialize = $class->getMethod('initialize');
$config = $this->validateConfig($this->defaults);
foreach ((array) $config['messages'] as $name => $text) {
if (defined('Nette\Forms\Form::' . $name)) {
$initialize->addBody('Nette\Forms\Validator::$messages[Nette\Forms\Form::?] = ?;', [$name, $text]);
} elseif (defined($name)) {
$initialize->addBody('Nette\Forms\Validator::$messages[' . $name . '] = ?;', [$text]);
} else {
throw new Nette\InvalidArgumentException('Constant Nette\Forms\Form::' . $name . ' or constant ' . $name . ' does not exist.');
}
}
}
}
|