/* For enlight routing */
$this->context->
updateFromEnlightRequest($request);
$params =
$this->
match($request->
getPathInfo(),
$this->context
);
if ($params !== false
) { /* For shopware routing (query === userParams) */
$request->
setQuery($params);
} /* For enlight routing */
$this->context->
updateFromEnlightRequest($request);
$this->context->
setParams([]);
return $request;
} /**
* Sets a global parameter.
*
* @see \Shopware_Controllers_Backend_Newsletter::initMailing
* @see \Enlight_Controller_Router::setGlobalParam
*
* @param string $name
* @param string $value
*
* @return self
*/