Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16099 программистов и 1772 робота. Сейчас ищут 1823 программиста ...
The Yaf_Bootstrap_Abstract class
Вернуться к: Yaf
(Информация о версии неизвестна, возможно, только в SVN)
Введение
Bootstrap is a mechanism used to do some intial config before a Application run.
User may define their own Bootstrap class by inheriting Yaf_Bootstrap_Abstract
Any method declared in Bootstrap class with leading "_init", will be called by Yaf_Application::bootstrap() one by one according to their defined order.
Примеры
Пример #1 Bootstrap example
<?php
/* bootstrap class should be defined under ./application/Bootstrap.php */
class Bootstrap extends Yaf_Bootstrap_Abstract {
public function _initConfig(Yaf_Dispatcher $dispatcher) {
var_dump(__METHOD__);
}
public function _initPlugin(Yaf_Dispatcher $dispatcher) {
var_dump(__METHOD__);
}
}
$config = array(
"application" => array(
"directory" => dirname(__FILE__) . "/application/",
),
);
$app = new Yaf_Application($config);
$app->bootstrap();
?>
Результатом выполнения данного примера будет что-то подобное:
string(22) "Bootstrap::_initConfig" string(22) "Bootstrap::_initPlugin"
Обзор классов
abstract
Yaf_Bootstrap_Abstract
{
/* Свойства */
/* Методы */
}Вернуться к: Yaf