1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\DI\Extensions;
9:
10: use Nette;
11:
12:
13: /**
14: * Constant definitions.
15: */
16: class ConstantsExtension extends Nette\DI\CompilerExtension
17: {
18: public function afterCompile(Nette\PhpGenerator\ClassType $class)
19: {
20: foreach ($this->getConfig() as $name => $value) {
21: $class->getMethod('initialize')->addBody('define(?, ?);', [$name, $value]);
22: }
23: }
24: }
25: