Bootstrap.php 291 B

123456789101112131415
  1. <?php
  2. class Foo_Bootstrap extends Zend_Application_Module_Bootstrap
  3. {
  4. public $bootstrapped = false;
  5. public function run()
  6. {
  7. }
  8. protected function _bootstrap($resource = null)
  9. {
  10. $this->bootstrapped = true;
  11. $this->getApplication()->foo = true;
  12. }
  13. }