Ejemplo n.º 1
0
 /**
  * Matches a Request with parts defined by a map. Assigns and
  * returns an array of variables on a successful match.
  *
  * @param Mage_Api2_Model_Request $request
  * @param boolean $partial Partial path matching
  * @return array|bool An array of assigned values or a boolean false on a mismatch
  */
 public function match($request, $partial = false)
 {
     return parent::match(ltrim($request->getPathInfo(), $this->_urlDelimiter), $partial);
 }