Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Rest Route
Request-aware route for RESTful modular routing
Zend_Controller_Front $_front = ''
 Detailsarray $_restfulControllers = 'null'Specific Modules=>Controllers to receive RESTful routes
 Detailsarray $_restfulModules = 'null'Specific Modules to receive RESTful routes
 Details__construct(
          Zend_Controller_Front $front, array $defaults
              =
              array, array $responders
              =
              array
          )
        
        :
        Constructor
 Details_allRestful(
          
          )
        
        :
        boolDetermines if RESTful routing applies to the entire app
 Details_checkRestfulController(
          string $moduleName, string $controllerName
          )
        
        :
        boolDetermine if a specified module + controller combination supports RESTful routing
 Details_checkRestfulModule(
          string $moduleName
          )
        
        :
        boolDetermine if a specified module supports RESTful routing
 Details_fullRestfulModule(
          string $moduleName
          )
        
        :
        boolDetermines if RESTful routing applies to an entire module
 Details_parseResponders(
          array $responders
          )
        
        :
        Parses the responders array sent to constructor to know which modules and/or controllers are RESTful
 Detailsassemble(
          array $data
              =
              array, bool $reset
              =
              false, bool $encode
              =
              true
          )
        
        :
        stringAssembles user submitted parameters forming a URL path defined by this route
 DetailsgetInstance(
           $config
          )
        
        :
        Instantiates route based on passed Zend_Config structure
 DetailsgetVersion(
          
          )
        
        :
        intTells Rewrite Router which version this Route is
 Detailsmatch(
          Zend_Controller_Request_Http $request,  $partial
              =
              false
          )
        
        :
        arrayMatches a user submitted request. Assigns and returns an array of variables on a successful match.
If a request object is registered, it uses its setModuleName(), setControllerName(), and setActionName() accessors to set those values. Always returns the values as an array.
 Details