Bootstrap Init Constants from app.ini
1
2
3
4
56
7
8
| protected function _initConstants() { $options = $this->getOptions(); if (isset($options['constant'])) { foreach($options['constant'] as $constName=>$constValue) defined(strtoupper($constName)) || define(strtoupper($constName), $constValue); } } |
Comments
You must login before commenting on a snippet. If you do not have an account, please register.