PHP Velho Oeste 2024

The Yaf_Bootstrap_Abstract class

(No version information available, might only be in Git)

Introducere

Bootstrap is a mechanism used to do some initial 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.

Exemple

Example #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();
?>

Exemplul de mai sus va afișa ceva similar cu:

string(22) "Bootstrap::_initConfig"
string(22) "Bootstrap::_initPlugin"

Sinopsisul clasei

abstract Yaf_Bootstrap_Abstract {
/* Proprietăți */
/* Metode */
}
add a note add a note

User Contributed Notes 1 note

up
0
Anonymous
5 years ago
Hui vam pidoras! How are you, friend?
To Top