Documentation

Zend_Filter_Inflector - Zend_Filter

Zend_Filter_Inflector

Zend_Filter_Inflector is a general purpose tool for rules-based inflection of strings to a given target.

As an example, you may find you need to transform MixedCase or camelCasedWords into a path; for readability, OS policies, or other reasons, you also need to lower case this, and you want to separate the words using a dash ('-'). An inflector can do this for you.

Zend_Filter_Inflector implements Zend_Filter_Interface; you perform inflection by calling filter() on the object instance.

Example #1 Transforming MixedCase and camelCaseText to another format

  1. $inflector = new Zend_Filter_Inflector('pages/:page.:suffix');
  2. $inflector->setRules(array(
  3.     ':page'  => array('Word_CamelCaseToDash', 'StringToLower'),
  4.     'suffix' => 'html'
  5. ));
  6.  
  7. $string   = 'camelCasedWords';
  8. $filtered = $inflector->filter(array('page' => $string));
  9. // pages/camel-cased-words.html
  10.  
  11. $string   = 'this_is_not_camel_cased';
  12. $filtered = $inflector->filter(array('page' => $string));
  13. // pages/this_is_not_camel_cased.html

Operation

An inflector requires a target and one or more rules. A target is basically a string that defines placeholders for variables you wish to substitute. These are specified by prefixing with a ':': :script.

When calling filter(), you then pass in an array of key and value pairs corresponding to the variables in the target.

Each variable in the target can have zero or more rules associated with them. Rules may be either static or refer to a Zend_Filter class. Static rules will replace with the text provided. Otherwise, a class matching the rule provided will be used to inflect the text. Classes are typically specified using a short name indicating the filter name stripped of any common prefix.

As an example, you can use any Zend_Filter concrete implementations; however, instead of referring to them as 'Zend_Filter_Alpha' or 'Zend_Filter_StringToLower', you'd specify only 'Alpha' or 'StringToLower'.

Setting Paths To Alternate Filters

Zend_Filter_Inflector uses Zend_Loader_PluginLoader to manage loading filters to use with inflection. By default, any filter prefixed with Zend_Filter will be available. To access filters with that prefix but which occur deeper in the hierarchy, such as the various Word filters, simply strip off the Zend_Filter prefix:

  1. // use Zend_Filter_Word_CamelCaseToDash as a rule
  2. $inflector->addRules(array('script' => 'Word_CamelCaseToDash'));

To set alternate paths, Zend_Filter_Inflector has a utility method that proxies to the plugin loader, addFilterPrefixPath():

  1. $inflector->addFilterPrefixPath('My_Filter', 'My/Filter/');

Alternatively, you can retrieve the plugin loader from the inflector, and interact with it directly:

  1. $loader = $inflector->getPluginLoader();
  2. $loader->addPrefixPath('My_Filter', 'My/Filter/');

For more options on modifying the paths to filters, please see the PluginLoader documentation.

Setting the Inflector Target

The inflector target is a string with some placeholders for variables. Placeholders take the form of an identifier, a colon (':') by default, followed by a variable name: ':script', ':path', etc. The filter() method looks for the identifier followed by the variable name being replaced.

You can change the identifier using the setTargetReplacementIdentifier() method, or passing it as the third argument to the constructor:

  1. // Via constructor:
  2. $inflector = new Zend_Filter_Inflector('#foo/#bar.#sfx', null, '#');
  3.  
  4. // Via accessor:
  5. $inflector->setTargetReplacementIdentifier('#');

Typically, you will set the target via the constructor. However, you may want to re-set the target later (for instance, to modify the default inflector in core components, such as the ViewRenderer or Zend_Layout). setTarget() can be used for this purpose:

  1. $inflector = $layout->getInflector();
  2. $inflector->setTarget('layouts/:script.phtml');

Additionally, you may wish to have a class member for your class that you can use to keep the inflector target updated -- without needing to directly update the target each time (thus saving on method calls). setTargetReference() allows you to do this:

  1. class Foo
  2. {
  3.     /**
  4.      * @var string Inflector target
  5.      */
  6.     protected $_target = 'foo/:bar/:baz.:suffix';
  7.  
  8.     /**
  9.      * Constructor
  10.      * @return void
  11.      */
  12.     public function __construct()
  13.     {
  14.         $this->_inflector = new Zend_Filter_Inflector();
  15.         $this->_inflector->setTargetReference($this->_target);
  16.     }
  17.  
  18.     /**
  19.      * Set target; updates target in inflector
  20.      *
  21.      * @param  string $target
  22.      * @return Foo
  23.      */
  24.     public function setTarget($target)
  25.     {
  26.         $this->_target = $target;
  27.         return $this;
  28.     }
  29. }

Inflection Rules

As mentioned in the introduction, there are two types of rules: static and filter-based.

Note: It is important to note that regardless of the method in which you add rules to the inflector, either one-by-one, or all-at-once; the order is very important. More specific names, or names that might contain other rule names, must be added before least specific names. For example, assuming the two rule names 'moduleDir' and 'module', the 'moduleDir' rule should appear before module since 'module' is contained within 'moduleDir'. If 'module' were added before 'moduleDir', 'module' will match part of 'moduleDir' and process it leaving 'Dir' inside of the target uninflected.

Static Rules

Static rules do simple string substitution; use them when you have a segment in the target that will typically be static, but which you want to allow the developer to modify. Use the setStaticRule() method to set or modify the rule:

  1. $inflector = new Zend_Filter_Inflector(':script.:suffix');
  2. $inflector->setStaticRule('suffix', 'phtml');
  3.  
  4. // change it later:
  5. $inflector->setStaticRule('suffix', 'php');

Much like the target itself, you can also bind a static rule to a reference, allowing you to update a single variable instead of require a method call; this is often useful when your class uses an inflector internally, and you don't want your users to need to fetch the inflector in order to update it. The setStaticRuleReference() method is used to accomplish this:

  1. class Foo
  2. {
  3.     /**
  4.      * @var string Suffix
  5.      */
  6.     protected $_suffix = 'phtml';
  7.  
  8.     /**
  9.      * Constructor
  10.      * @return void
  11.      */
  12.     public function __construct()
  13.     {
  14.         $this->_inflector = new Zend_Filter_Inflector(':script.:suffix');
  15.         $this->_inflector->setStaticRuleReference('suffix', $this->_suffix);
  16.     }
  17.  
  18.     /**
  19.      * Set suffix; updates suffix static rule in inflector
  20.      *
  21.      * @param  string $suffix
  22.      * @return Foo
  23.      */
  24.     public function setSuffix($suffix)
  25.     {
  26.         $this->_suffix = $suffix;
  27.         return $this;
  28.     }
  29. }

Filter Inflector Rules

Zend_Filter filters may be used as inflector rules as well. Just like static rules, these are bound to a target variable; unlike static rules, you may define multiple filters to use when inflecting. These filters are processed in order, so be careful to register them in an order that makes sense for the data you receive.

Rules may be added using setFilterRule() (which overwrites any previous rules for that variable) or addFilterRule() (which appends the new rule to any existing rule for that variable). Filters are specified in one of the following ways:

  • String. The string may be a filter class name, or a class name segment minus any prefix set in the inflector's plugin loader (by default, minus the 'Zend_Filter' prefix).

  • Filter object. Any object instance implementing Zend_Filter_Interface may be passed as a filter.

  • Array. An array of one or more strings or filter objects as defined above.

  1. $inflector = new Zend_Filter_Inflector(':script.:suffix');
  2.  
  3. // Set rule to use Zend_Filter_Word_CamelCaseToDash filter
  4. $inflector->setFilterRule('script', 'Word_CamelCaseToDash');
  5.  
  6. // Add rule to lowercase string
  7. $inflector->addFilterRule('script', new Zend_Filter_StringToLower());
  8.  
  9. // Set rules en-masse
  10. $inflector->setFilterRule('script', array(
  11.     'Word_CamelCaseToDash',
  12.     new Zend_Filter_StringToLower()
  13. ));

Setting Many Rules At Once

Typically, it's easier to set many rules at once than to configure a single variable and its inflection rules at a time. Zend_Filter_Inflector's addRules() and setRules() method allow this.

Each method takes an array of variable and rule pairs, where the rule may be whatever the type of rule accepts (string, filter object, or array). Variable names accept a special notation to allow setting static rules and filter rules, according to the following notation:

  • ':' prefix: filter rules.

  • No prefix: static rule.

Example #2 Setting Multiple Rules at Once

  1. // Could also use setRules() with this notation:
  2. $inflector->addRules(array(
  3.     // filter rules:
  4.     ':controller' => array('CamelCaseToUnderscore','StringToLower'),
  5.     ':action'     => array('CamelCaseToUnderscore','StringToLower'),
  6.  
  7.     // Static rule:
  8.     'suffix'      => 'phtml'
  9. ));

Utility Methods

Zend_Filter_Inflector has a number of utility methods for retrieving and setting the plugin loader, manipulating and retrieving rules, and controlling if and when exceptions are thrown.

  • setPluginLoader() can be used when you have configured your own plugin loader and wish to use it with Zend_Filter_Inflector; getPluginLoader() retrieves the currently set one.

  • setThrowTargetExceptionsOn() can be used to control whether or not filter() throws an exception when a given replacement identifier passed to it is not found in the target. By default, no exceptions are thrown. isThrowTargetExceptionsOn() will tell you what the current value is.

  • getRules($spec = null) can be used to retrieve all registered rules for all variables, or just the rules for a single variable.

  • getRule($spec, $index) fetches a single rule for a given variable; this can be useful for fetching a specific filter rule for a variable that has a filter chain. $index must be passed.

  • clearRules() will clear all currently registered rules.

Using Zend_Config with Zend_Filter_Inflector

You can use Zend_Config to set rules, filter prefix paths, and other object state in your inflectors, either by passing a Zend_Config object to the constructor or setOptions(). The following settings may be specified:

  • target specifies the inflection target.

  • filterPrefixPath specifies one or more filter prefix and path pairs for use with the inflector.

  • throwTargetExceptionsOn should be a boolean indicating whether or not to throw exceptions when a replacement identifier is still present after inflection.

  • targetReplacementIdentifier specifies the character to use when identifying replacement variables in the target string.

  • rules specifies an array of inflection rules; it should consist of keys that specify either values or arrays of values, consistent with addRules().

Example #3 Using Zend_Config with Zend_Filter_Inflector

  1. // With the constructor:
  2. $config    = new Zend_Config($options);
  3. $inflector = new Zend_Filter_Inflector($config);
  4.  
  5. // Or with setOptions():
  6. $inflector = new Zend_Filter_Inflector();
  7. $inflector->setOptions($config);

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