Theory of Operation

Examples

The Bootstrap class itself will typically be fairly minimal; often, it will simply be an empty stub extending the base bootstrap class:

  1.  

With a corresponding configuration file:

  1. ; APPLICATION_PATH/configs/application.ini
  2. [production]
  3. autoloaderNamespaces[] = "My_"
  4. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  5. bootstrap.class = "Bootstrap"
  6. pluginpaths.My_Bootstrap_Resource = "My/Bootstrap/Resource"
  7. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  8.  
  9. [testing : production]
  10. [development : production]

Note: Autoloader namespaces
Because these examples use custom code, we need to register the namespace prefixes for that code with our configuration; this is done with the autoloaderNamespaces configuration key, which is an array.
Additionally, to ensure that custom plugin resources are discovered, we need to register a plugin prefix path with the bootstrap. This is done with the pluginpaths configuration key, which is an associative array, with keys denoting the prefix to use, and values denoting the path related to that prefix.

However, should custom initialization be necessary, you have two choices. First, you can write methods prefixed with _init to specify discrete code to bootstrap. These methods will be called by bootstrap(), and can also be called as if they were public methods: bootstrap<resource>(). They should accept an optional array of options.

If your resource method returns a value, it will be stored in a container in the bootstrap. This can be useful when different resources need to interact (such as one resource injecting itself into another). The method getResource() can then be used to retrieve those values.

The example below shows a resource method for initializing the request object. It makes use of dependency tracking (it depends on the front controller resource), fetching a resource from the bootstrap, and returning a value to store in the bootstrap.

  1. span style="color: #808080; font-style: italic;">// Ensure front controller instance is present, and fetch it
  2.         $this->bootstrap('FrontController');
  3.         $front = $this->getResource('FrontController');
  4.  
  5.         // Initialize the request object
  6. '/foo');
  7.  
  8.         // Add it to the front controller
  9.         $front->setRequest($request);
  10.  
  11.         // Bootstrap will store this value in the 'request' key of its container

Note in this example the call to bootstrap(); this ensures that the front controller has been initialized prior to calling this method. That call may trigger either a resource or another method in the class.

The other option is to use resource plugins. Resource plugins are objects that perform specific initializations, and may be specified:

  • When instantiating the Zend_Application object

  • During initialization of the bootstrap object

  • By explicitly enabling them via method calls to the bootstrap object

Resource plugins implement Zend_Application_Resource_ResourceAbstract, which defines simply that they allow injection of the caller and options, and that they have an init() method. As an example, a custom "View" bootstrap resource might look like the following:

  1. span style="color: #ff0000;">'XHTML1_STRICT');
  2.         $view->headTitle()->setSeparator(' - ''My Site''Content-Type',
  3.                                            'text/html; charset=utf-8''parseOnLoad''/js/dojo/dojo.js')
  4.                      ->registerModulePath('../spindle', 'spindle')
  5.                      ->addStylesheetModule('spindle.themes.spindle''spindle.main''ViewRenderer'

To tell the bootstrap to use this, you would need to provide either the class name of the resource plugin, or a combination of a plugin loader prefix path and the short name of the resource plugin (e.g, "view"):

  1. span style="color: #ff0000;">'resources''My_Bootstrap_Resource_View'// full class name; OR
  2.             'view'// short name
  3.  
  4.             'FrontController''controllerDirectory''/controllers',
  5.             ),
  6.         ),
  7.  
  8.         // For short names, define plugin paths:
  9.         'pluginPaths = array(
  10.             '' => 'My/Bootstrap/Resource',
  11.         )
  12.     )
  13. );

Resource plugins can call on other resources and initializers by accessing the parent bootstrap:

  1. span style="color: #808080; font-style: italic;">// ensure view is initialized...
  2.         $this->getBootstrap()->bootstrap('view');
  3.  
  4.         // Get view object:
  5.         $view = $this->getBootstrap()->getResource('view');
  6.  
  7.         // ...
  8.     }
  9. }

In normal usage, you would instantiate the application, bootstrap it, and run it:

  1.  

For a custom script, you might need to simply initialize specific resources:

  1. span style="color: #ff0000;">'db''Foo')// uses database...

Instead of using the bootstrap() method to call the internal methods or resources, you may also use overloading:

  1.  

Theory of Operation