Documentation

Available Resource Plugins - Zend_Application

Available Resource Plugins

Here you'll find API-like documentation about all resource plugins available by default in Zend_Application.

Zend_Application_Resource_Cachemanager

Zend_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.

  1. resources.cachemanager.database.frontend.name = Core
  2. resources.cachemanager.database.frontend.customFrontendNaming = false
  3. resources.cachemanager.database.frontend.options.lifetime = 7200
  4. resources.cachemanager.database.frontend.options.automatic_serialization = true
  5. resources.cachemanager.database.backend.name = File
  6. resources.cachemanager.database.backend.customBackendNaming = false
  7. resources.cachemanager.database.backend.options.cache_dir = "/path/to/cache"
  8. resources.cachemanager.database.frontendBackendAutoload = false

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.

  1. $manager = $this->getFrontController()
  2.             ->getParam('bootstrap')
  3.             ->getPluginResource('cachemanager')
  4.             ->getCacheManager();
  5. $dbCache = $manager->getCache('database');

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_Db

Zend_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:

  • adapter: Zend_Db adapter type.

  • params: associative array of configuration parameters to use when retrieving the adapter instance.

  • isDefaultTableAdapter: whether or not to establish this adapter as the default table adapter.

  • defaultMetadataCache: the name of the cache template or an instance of Zend_Cache_Core to use as metadata cache for Zend_Db_Table.

Example #2 Sample DB adapter resource configuration

Below is an example INI configuration that can be used to initialize the DB resource.

  1. [production]
  2. resources.db.adapter = "pdo_mysql"
  3. resources.db.params.host = "localhost"
  4. resources.db.params.username = "webuser"
  5. resources.db.params.password = "XXXXXXX"
  6. resources.db.params.dbname = "test"
  7. resources.db.isDefaultTableAdapter = true
  8.  
  9. ; Optionally you can also the cache template to use for metadata caching:
  10. resources.db.defaultMetadataCache = "database"

Note: Retrieving the Adapter instance
If you choose not to make the adapter instantiated with this resource the default table adapter, how do you retrieve the adapter instance?
As with any resource plugin, you can fetch the DB resource plugin from your bootstrap:

  1. $resource = $bootstrap->getPluginResource('db');
Once you have the resource object, you can fetch the DB adapter using the getDbAdapter() method:
  1. $db = $resource->getDbAdapter();

Zend_Application_Resource_Dojo

Zend_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.

  1. resources.dojo.enable = true ; Always load the Dojo javascript files

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_Frontcontroller

Probably 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:

  • controllerDirectory: either a string value specifying a single controller directory, or an array of module to controller directory pairs.

  • moduleControllerDirectoryName: a string value indicating the subdirectory under a module that contains controllers.

  • moduleDirectory: directory under which modules may be found.

  • defaultControllerName: base name of the default controller (normally "index").

  • defaultAction: base name of the default action (normally "index").

  • defaultModule: base name of the default module (normally "default").

  • baseUrl: explicit base URL to the application (normally auto-detected).

  • plugins: array of front controller plugin class names. The resource will instantiate each class (with no constructor arguments) and then register the instance with the front controller. If you want to register a plugin with a particular stack index, you need to provide an array with two keys class and stackIndex.

  • params: array of key to value pairs to register with the front controller.

  • returnresponse: whether or not to return the response object after dispatching the front controller. Value should be a boolean; by default, this is disabled.

  • dispatcher: allows overriding the default dispatcher. Has two subkeys, class (the classname of new dispatcher) and params, an array of parameters to pass to the dispatcher constructor.

    Example #4 Overriding the dispatcher

    1. [production]
    2. resources.frontController.dispatcher.class = "My_Custom_Dispatcher"
    3. resources.frontController.dispatcher.params.foo = "bar"
    4. resources.frontController.dispatcher.params.baz = "grok"

If an unrecognized key is provided, it is registered as a front controller parameter by passing it to setParam().

Example #5 Sample Front Controller resource configuration

Below is a sample INI snippet showing how to configure the front controller resource.

  1. [production]
  2. resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
  3. resources.frontController.moduleControllerDirectoryName = "actions"
  4. resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
  5. resources.frontController.defaultControllerName = "site"
  6. resources.frontController.defaultAction = "home"
  7. resources.frontController.defaultModule = "static"
  8. resources.frontController.baseUrl = "/subdir"
  9. resources.frontController.plugins.foo = "My_Plugin_Foo"
  10. resources.frontController.plugins.bar = "My_Plugin_Bar"
  11. resources.frontController.plugins.baz.class = "My_Plugin_Baz"
  12. resources.frontController.plugins.baz.stackIndex = 123
  13. resources.frontController.returnresponse = 1
  14. resources.frontController.env = APPLICATION_ENV
  15.  
  16. ; The following proxies to:
  17. ; Zend_Controller_Action_HelperBroker::addPath('Helper_Path', $helperPrefix);
  18. resources.frontController.actionHelperPaths.HELPER_Prefix = "My/Helper/Path"

Example #6 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.

  1. $bootstrap->bootstrap('frontController');
  2. $front = $bootstrap->frontController;

Zend_Application_Resource_Layout

Zend_Application_Resource_Layout can be used to configure Zend_Layout. Configuration options are per the Zend_Layout options.

Example #7 Sample Layout configuration

Below is a sample INI snippet showing how to configure the layout resource.

  1. resources.layout.layout = "NameOfDefaultLayout"
  2. resources.layout.layoutPath = "/path/to/layouts"

Zend_Application_Resource_Locale

Zend_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. By default the locale is saved in a Zend_Registry entry with key 'Zend_Locale'.

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 use

Without 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:

  • The browser could be setup to send no language

  • The user could have manually set a locale which does not exist

In both cases Zend_Locale will fallback to other mechanism to detect the locale:

  • When a locale has been set which does not exist, Zend_Locale tries to downgrade this string.

    When, for example, en_ZZ is set it will automatically be degraded to en. In this case en will be used as locale for your application.

  • When the locale could also not be detected by downgrading, the locale of your environment (web server) will be used. Most available environments from Web Hosters use en as locale.

  • When the systems locale could not be detected Zend_Locale will use it's default locale, which is set to en per default.

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 fallback

The 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 #8 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.

  1. ; Try to determine automatically first,
  2. ; if unsuccessful, use nl_NL as fallback.
  3. resources.locale.default = "nl_NL"

Forcing a specific locale to use

Sometimes 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 #9 Defining a single locale to use

The following snippet shows how to set a single locale for your entire application.

  1. ; No matter what, the nl_NL locale will be used.
  2. resources.locale.default = "nl_NL"
  3. resources.locale.force = true

Configure cache template

When you have set no cache, Zend_Locale will set itself a cache with the file backend by default. But if you want to choose the backend or others options, you can use the name of a cache template or an instance of Zend_Cache_Core. For more informations look into Speed up Zend_Locale and its subclasses.

Example #10 Defining a cache template to use

  1. ; Optionally you can also the cache template to use for caching:
  2. resources.locale.cache = "locale"

Zend_Application_Resource_Log

Zend_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 #11 Sample Log Resource Configuration

Below is a sample INI snippet showing how to configure the log resource.

  1. resources.log.stream.writerName = "Stream"
  2. resources.log.stream.writerParams.stream = APPLICATION_PATH "/../data/logs/application.log"
  3. resources.log.stream.writerParams.mode = "a"
  4. resources.log.stream.filterName = "Priority"
  5. resources.log.stream.filterParams.priority = 4

For more information on available options, please review the Zend_Log::factory() documentation.

Zend_Application_Resource_Mail

Zend_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 #12 Sample Mail Resource Configuration

Below is a sample INI snippet showing how to configure the mail resource plugin.

  1. resources.mail.transport.type = smtp
  2. resources.mail.transport.host = "smtp.example.com"
  3. resources.mail.transport.auth = login
  4. resources.mail.transport.username = myUsername
  5. resources.mail.transport.password = myPassword
  6. resources.mail.transport.register = true ; True by default
  7.  
  8. resources.mail.defaultFrom.email = john@example.com
  9. resources.mail.defaultFrom.name = "John Doe"
  10. resources.mail.defaultReplyTo.email = Jane@example.com
  11. resources.mail.defaultReplyTo.name = "Jane Doe"

Zend_Application_Resource_Modules

Zend_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:

  1. resources.modules[] =

In XML style configuration, this looks like:

  1. <resources>
  2.     <modules>
  3.         <!-- Placeholder to ensure an array is created -->
  4.         <placeholder />
  5.     </modules>
  6. </resources>

Using a standard PHP array, simply create it as an empty array:

  1. $options = array(
  2.     'resources' => array(
  3.         'modules' => array(),
  4.     ),
  5. );

Note: Front Controller Resource Dependency
The Modules resource has a dependency on the Front Controller resource. You can, of course, provide your own replacement for that resource via a custom Front Controller resource class or a class initializer method -- so long as the resource plugin class ends in "Frontcontroller" or the initializer method is named "_initFrontController" (case insensitive).

Example #13 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.

  1. [production]
  2. news.resources.db.adapter = "pdo_mysql"
  3. news.resources.db.params.host = "localhost"
  4. news.resources.db.params.username = "webuser"
  5. news.resources.db.params.password = "XXXXXXX"
  6. news.resources.db.params.dbname = "news"
  1. <?xml version="1.0"?>
  2. <config>
  3.     <production>
  4.         <news>
  5.             <resources>
  6.                 <db>
  7.                     <adapter>pdo_mysql</adapter>
  8.                     <params>
  9.                         <host>localhost</host>
  10.                         <username>webuser</username>
  11.                         <password>XXXXXXX</password>
  12.                         <dbname>news</dbname>
  13.                     </params>
  14.                     <isDefaultAdapter>true</isDefaultAdapter>
  15.                 </db>
  16.             </resources>
  17.         </news>
  18.     </production>
  19. </config>

Example #14 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.

  1. $resource = $bootstrap->getPluginResource('modules');
  2. $moduleBootstraps = $resource->getExecutedBootstraps();
  3. $newsBootstrap = $moduleBootstraps['news'];

Zend_Application_Resource_Multidb

Zend_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 #15 Setting up multiple Db Connections

Below is an example INI configuration that can be used to initialize two Db Connections.

  1. [production]
  2. resources.multidb.db1.adapter = "pdo_mysql"
  3. resources.multidb.db1.host = "localhost"
  4. resources.multidb.db1.username = "webuser"
  5. resources.multidb.db1.password = "XXXX"
  6. resources.multidb.db1.dbname = "db1"
  7.  
  8. resources.multidb.db2.adapter = "pdo_pgsql"
  9. resources.multidb.db2.host = "example.com"
  10. resources.multidb.db2.username = "dba"
  11. resources.multidb.db2.password = "notthatpublic"
  12. resources.multidb.db2.dbname = "db2"
  13. resources.multidb.db2.default = true

Example #16 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.

  1. $resource = $bootstrap->getPluginResource('multidb');
  2. $db1 = $resource->getDb('db1');
  3. $db2 = $resource->getDb('db2');
  4. $defaultDb = $resource->getDb();

Example #17 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:

  1. $resource = $bootstrap->getPluginResource('multidb');
  2. $db2 = $resource->getDefaultDb();
  3.  
  4. // Same config, but now without a default db:
  5. $db1 = $resource->getDefaultDb();
  6. $null = $resource->getDefaultDb(false); // null

Zend_Application_Resource_Navigation

Zend_Application_Resource_Navigation can be used to configure a Zend_Navigation instance. Configuration options are per the Zend_Navigation options.

Once done configuring the navigation instance, it assigns the instance to Zend_View_Helper_Navigation by default -- from which you may retrieve it later.

Example #18 Sample Navigation resource configuration

Below is a sample INI snippet showing how to configure the navigation resource.

  1. resources.navigation.pages.page1.label = "Label of the first page"
  2. resources.navigation.pages.page1.route = "Route that belongs to the first page"
  3.  
  4. ; Page 2 is a subpage of page 1
  5. resources.navigation.pages.page1.pages.page2.type = "Zend_Navigation_Page_Uri"
  6. resources.navigation.pages.page1.pages.page2.label = "Label of the second page"
  7. resources.navigation.pages.page1.pages.page2.uri = "/url/to/page/2"

Zend_Application_Resource_Router

Zend_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 #19 Sample Router Resource configuration

Below is a sample INI snippet showing how to configure the router resource.

  1. resources.router.routes.route_id.route               = "/login"
  2. resources.router.routes.route_id.defaults.module     = "admin"
  3. resources.router.routes.route_id.defaults.controller = "user"
  4. resources.router.routes.route_id.defaults.action     = "login"
  5.  
  6. ; Optionally you can also set a Chain Name Separator:
  7. resources.router.chainNameSeparator = "_"
  8.  
  9. ; Example with parameter
  10. resources.router.routes.route_id.route               = "/user/:user_id"
  11. resources.router.routes.route_id.defaults.module     = "admin"
  12. resources.router.routes.route_id.defaults.controller = "user"
  13. resources.router.routes.route_id.defaults.action     = "edit"
  14. resources.router.routes.route_id.reqs.user_id        = "^\d+$"

For more information on the Chain Name Separator, please see its section.

Zend_Application_Resource_Session

Zend_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:

  • String : A string indicating a class implementing Zend_Session_SaveHandler_Interface that should be instantiated.

  • Array : An array with the keys "class" and, optionally, "options", indicating a class implementing Zend_Session_SaveHandler_Interface that should be instantiated and an array of options to provide to its constructor.

  • Zend_Session_SaveHandler_Interface: an object implementing this interface.

Any other option keys passed will be passed to Zend_Session::setOptions() to configure Zend_Session.

Example #20 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.

  1. resources.session.save_path = APPLICATION_PATH "/../data/session"
  2. resources.session.use_only_cookies = true
  3. resources.session.remember_me_seconds = 864000
  4. resources.session.saveHandler.class = "Zend_Session_SaveHandler_DbTable"
  5. resources.session.saveHandler.options.name = "session"
  6. resources.session.saveHandler.options.primary[] = "session_id"
  7. resources.session.saveHandler.options.primary[] = "save_path"
  8. resources.session.saveHandler.options.primary[] = "name"
  9. resources.session.saveHandler.options.primaryAssignment[] = "sessionId"
  10. resources.session.saveHandler.options.primaryAssignment[] = "sessionSavePath"
  11. resources.session.saveHandler.options.primaryAssignment[] = "sessionName"
  12. resources.session.saveHandler.options.modifiedColumn = "modified"
  13. resources.session.saveHandler.options.dataColumn = "session_data"
  14. resources.session.saveHandler.options.lifetimeColumn = "lifetime"

Note: Bootstrap your database first!
If you are configuring the Zend_Session_SaveHandler_DbTable session save handler, you must first configure your database connection for it to work. Do this by either using the Db resource -- and make sure the "resources.db" key comes prior to the "resources.session" key -- or by writing your own resource that initializes the database, and specifically sets the default Zend_Db_Table adapter.

Zend_Application_Resource_Translate

Zend_Application_Resource_Translate will initialize a Zend_Translate adapter based on the options passed to it.

The following configuration keys are recognized:

  • adapter : Zend_Translate adapter type. The default adapter is array if not specified.

  • data : path to translation.

  • locale : defining the locale to be used in translation. By default, the locale can be detected automatically or forcing with a Zend_Locale instance store in Zend_Registry with a single locale.

  • options : the options are different for each adapter. See the section Options for adapters for more details.

  • registry : the custom key to store the Zend_Translate instance in the registry. By default, the key is Zend_Translate.

  • cache : the name of the cache template or an instance of Zend_Cache_Core to use as cache for Zend_Translate_Adapter. The goal is to accelerate the loading specialy for the XML based files.

Example #21 Sample translate adapter resource configuration

Below is an example INI configuration that can be used to initialize the translate resource.

  1. resources.translate.adapter = tmx
  2. resources.translate.content = APPLICATION_PATH "/../data/locales"
  3. resources.translate.scan = Zend_Translate::LOCALE_DIRECTORY
  4.  
  5. ; Optionally you can also the cache template to use for caching:
  6. resources.translate.cache = "languages"

Zend_Application_Resource_Useragent

Overview

This resource provides the ability to configure and instantiate Zend_Http_UserAgent for use within your application.

Quick Start

Using Zend_Http_UserAgent, including usage of the application resource, is covered in the UserAgent quick start. Below is a quick summary of typical options you might provide.

  1. resources.useragent.wurflapi.wurfl_api_version = "1.1"
  2. resources.useragent.wurflapi.wurfl_lib_dir = APPLICATION_PATH "/../library/Wurfl/1.1"
  3. resources.useragent.wurflapi.wurfl_config_file = APPLICATION_PATH "/../library/Wurfl/1.1/resources/wurfl-config.php"

Configuration Options

Please see the UserAgent options section for details on available options.

Available Methods

init

Called by the bootstrap object to initialize the resource. Calls the getUserAgent() method first (and returns the instance returned by that method); then, if the "view" resource is available, retrieves it and injects the UserAgent instance into the UserAgent view helper.

getUserAgent

Instantiates a Zend_Http_UserAgent instance, using the configuration options provided in the application configuration.

Zend_Application_Resource_View

Zend_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 #22 Sample View resource configuration

Below is a sample INI snippet showing how to configure the view resource.

  1. resources.view.encoding = "UTF-8"
  2. resources.view.basePath = APPLICATION_PATH "/views/"

Defining doctype to use

If you want to obtain more information about values, see Doctype Helper .

Example #23 Sample doctype configuration

The following snippet shows how to set a doctype.

  1. resources.view.doctype = "HTML5"

Defining content type and encoding to use

If you want to obtain more information about values, see HeadMeta Helper .

Example #24 Sample content type and encoding configuration

The following snippet shows how to set a meta Content-Type.

  1. resources.view.contentType = "text/html; charset=UTF-8"

Example #25 Sample encoding configuration for a HTML5 document

The following snippet shows how to set a meta charset in HTML5-style.

  1. resources.view.doctype = "HTML5"
  2. resources.view.charset = "UTF-8"

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts