Source for file Interface.php
Documentation is available at Interface.php
* "THE BEER-WARE LICENSE" (Revision 42):
* "Sven Strittmatter" <ausserirdisch@sven-space.de> wrote this file.
* As long as you retain this notice you can do whatever you want with
* this stuff. If we meet some day, and you think this stuff is worth it,
* you can buy me a beer in return.
* @package MediaSearch_Config_ParseOptions
* @copyright Copyright (c) 2009 Sven Strittmatter
* Objects implementing this interface can be added to objects of type
* MediaSearch_Config_Interface. You can use these objects to implement
* parse options which modify the default parse behaviour of the
* a config file objects. This parse options are called in the order they
* were added. They receive the whole config data to process it.
* @package MediaSearch_Config_ParseOptions
* @copyright Copyright (c) 2009 Sven Strittmatter
* This method is called by the config object to which this parse option was
* added. Its expects the config data as input to parse. It must return the
* If the parse option object is the first one called by the config file
* it gets the original loaded config ffile string to process. All following
* parse options get the processed return valiou of the previous parse object.
* This can be a string or an array or any other type.
public function parse($input);
|