Available Resource PluginsHere you'll find API-like documentation about all resource plugins available by default in Zend_Application. Zend_Application_Resource_CachemanagerZend_Application_Resource_Cachemanager may be utilised to configure a set of Zend_Cache option bundles for use when lazy loading caches using Zend_Cache_Manager As the Cache Manager is a lazy loading mechanism, the options are translated to option templates used to instantiate a cache object on request. Example #1 Sample Cachemanager resource configuration Below is a sample INI file showing how Zend_Cache_Manager may be configured. The format is the Cachemanager resource prefix (resources.cachemanager) followed be the name to assign to an option cache template or bundle (e.g. resources.cachemanager.database) and finally followed by a typical Zend_Cache option.
Actually retrieving this cache from the Cache Manager is as simple as accessing an instance of the Manager (Zend_Cache_Manager) retrieved from Zend_Application_Resource_Cachemanager and calling Zend_Cache_Manager::getCache('database'). The example below is taken from a controller where the bootstrap class can be accessed as a Front Controller parameter (which is automatically assigned during bootstrapping). As you can see, the Cache Manager Resource implements a getCacheManager() method to retrieve the bootstrapped instance of Zend_Cache_Manager.
See Zend_Cache::factory() method to get a description of the default values you can assign when configuring a cache via a configuration file such as out example INI file above. Zend_Application_Resource_DbZend_Application_Resource_Db will initialize a Zend_Db adapter based on the options passed to it. By default, it also sets the adapter as the default adapter for use with Zend_Db_Table. If you want to use mutliple databases simultaneously, you can use the Multidb Resource Plugin. The following configuration keys are recognized:
Example #2 Sample DB adapter resource configuration Below is an example INI configuration that can be used to initialize the DB resource.
Zend_Application_Resource_DojoZend_Application_Resource_Dojo can be used to configure the Zend_Dojo viewhelpers. Example #3 Sample Dojo resource configuration Below is a sample INI file showing how Zend_Dojo can be enabled.
The Zend_Dojo resource plugin utilises the options for the Zend_Dojo_View_Helper_Dojo_Container::setOptions() to configure the viewhelpers. Please see the Zend_Dojo chapter for full descriptions and available options. Zend_Application_Resource_FrontcontrollerProbably the most common resource you will load with Zend_Application will be the Front Controller resource, which provides the ability to configure Zend_Controller_Front. This resource provides the ability to set arbitrary front controller parameters, specify plugins to initialize, and much more. Once initialized, the resource assigns the $frontController property of the bootstrap to the Zend_Controller_Front instance. Available configuration keys include the following, and are case insensitive:
If an unrecognized key is provided, it is registered as a front controller parameter by passing it to setParam(). Example #4 Sample Front Controller resource configuration Below is a sample INI snippet showing how to configure the front controller resource.
Example #5 Retrieving the Front Controller in your bootstrap Once your Front Controller resource has been initialized, you can fetch the Front Controller instance via the $frontController property of your bootstrap.
Zend_Application_Resource_LayoutZend_Application_Resource_Layout can be used to configure Zend_Layout. Configuration options are per the Zend_Layout options. Example #6 Sample Layout configuration Below is a sample INI snippet showing how to configure the layout resource.
Zend_Application_Resource_LocaleZend_Application_Resource_Locale can be used to set an application-wide locale which is then used in all classes and components which work with localization or internationalization. There are basically three usecases for the Locale Resource Plugin. Each of them should be used depending on the applications need. Autodetect the locale to useWithout specifying any options for Zend_Application_Resource_Locale, Zend_Locale will detect the locale, which your application will use, automatically. This detection works because your client sends the wished language within his HTTP request. Normally the clients browser sends the languages he wants to see, and Zend_Locale uses this information for detection. But there are 2 problems with this approach:
In both cases Zend_Locale will fallback to other mechanism to detect the locale:
For more informations about locale detection take a look into this chapter on Zend_Locale's automatic detection. Autodetect the locale and adding a own fallbackThe above autodetection could lead to problems when the locale could not be detected and you want to have another default locale than en. To prevent this, Zend_Application_Resource_Locale allows you to set a own locale which will be used in the case that the locale could not be detected. Example #7 Autodetect locale and setting a fallback The following snippet shows how to set a own default locale which will be used when the client does not send a locale himself.
Forcing a specific locale to useSometimes it is useful to define a single locale which has to be used. This can be done by using the force option. In this case this single locale will be used and the automatic detection is turned off. Example #8 Defining a single locale to use The following snippet shows how to set a single locale for your entire application.
Zend_Application_Resource_LogZend_Application_Resource_Log to instantiate a Zend_Log instance with an arbitrary number of log writers. Configuration will be passed to the Zend_Log::factory() method, allowing you to specify combinations of log writers and filters. The log instance may then be retrieved from the bootstrap later in order to log events. Example #9 Sample Log Resource Configuration Below is a sample INI snippet showing how to configure the log resource.
For more information on available options, please review the Zend_Log::factory() documentation. Zend_Application_Resource_MailZend_Application_Resource_Mail can be used to instantiate a transport for Zend_Mail or set the default name and address, as well as the default replyto- name and address. When instantiating a transport, it's registered automatically to Zend_Mail. Though, by setting the transport.register directive to FALSE, this behaviour does no more occur. Example #10 Sample Mail Resource Configuration Below is a sample INI snippet showing how to configure the mail resource plugin.
Zend_Application_Resource_ModulesZend_Application_Resource_Modules is used to initialize your application modules. If your module has a Bootstrap.php file in its root, and it contains a class named Module_Bootstrap (where "Module" is the module name), then it will use that class to bootstrap the module. By default, an instance of Zend_Application_Module_Autoloader will be created for the module, using the module name and directory to initialize it. Since the Modules resource does not take any arguments by default, in order to enable it via configuration, you need to create it as an empty array. In INI style configuration, this looks like:
In XML style configuration, this looks like:
Using a standard PHP array, simply create it as an empty array:
Example #11 Configuring Modules You can specify module-specific configuration using the module name as a prefix or sub-section in your configuration file. For example, let's assume that your application has a "news" module. The following are INI and XML examples showing configuration of resources in that module.
Example #12 Retrieving a specific module bootstrap On occasion, you may need to retrieve the bootstrap object for a specific module -- perhaps to run discrete bootstrap methods, or to fetch the autoloader in order to configure it. This can be done using the Modules resource's getExecutedBootstraps() method.
Zend_Application_Resource_MultidbZend_Application_Resource_Multidb is used to initialize multiple Database connections. You can use the same options as you can with the Db Resource Plugin. However, for specifying a default connection, you can also use the 'default' directive. Example #13 Setting up multiple Db Connections Below is an example INI configuration that can be used to initialize two Db Connections.
Example #14 Retrieving a specific database adapter When using this resource plugin you usually will want to retrieve a specific database. This can be done by using the resource's getDb(). The method getDb() returns an instance of a class that extends Zend_Db_Adapter_Abstract. If you have not set a default database, an exception will be thrown when this method is called without specifying a parameter.
Example #15 Retrieving the default database adapter Additionally, you can retrieve the default database adapter by using the method getDefaultDb(). If you have not set a default adapter, the first configured db adapter will be returned. Unless you specify FALSE as first parameter, then NULL will be returned when no default database adapter was set. Below is an example that assumes the Multidb resource plugin has been configured with the INI sample above:
Zend_Application_Resource_RouterZend_Application_Resource_Router can be used to configure the router as it is registered with the Front Controller. Configuration options are per the Zend_Controller_Router_Route options. Example #17 Sample Router Resource configuration Below is a sample INI snippet showing how to configure the router resource.
For more information on the Chain Name Separator, please see its section. Zend_Application_Resource_SessionZend_Application_Resource_Session allows you to configure Zend_Session as well as optionally initialize a session SaveHandler. To set a session save handler, simply pass the saveHandler (case insensitive) option key to the resource. The value of this option may be one of the following:
Any other option keys passed will be passed to Zend_Session::setOptions() to configure Zend_Session. Example #18 Sample Session resource configuration Below is a sample INI snippet showing how to configure the session resource. It sets several Zend_Session options, as well as configures a Zend_Session_SaveHandler_DbTable instance.
Zend_Application_Resource_ViewZend_Application_Resource_View can be used to configure a Zend_View instance. Configuration options are per the Zend_View options. Once done configuring the view instance, it creates an instance of Zend_Controller_Action_Helper_ViewRenderer and registers the ViewRenderer with Zend_Controller_Action_HelperBroker -- from which you may retrieve it later. Example #19 Sample View resource configuration Below is a sample INI snippet showing how to configure the view resource.
|