Bootstrap.php 249 B

1234567891011121314
  1. <?php
  2. class FooBar_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. }
  12. }