|
TYPO3 API
SVNRelease
|


Definition at line 37 of file Request.php.
| Tx_Extbase_MVC_Request::getArgument | ( | $ | argumentName | ) |
Returns the value of the specified argument
| string | $argumentName | Name of the argument |
| Tx_Extbase_MVC_Exception_NoSuchArgument | if such an argument does not exist |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 345 of file Request.php.
Referenced by Tx_Extbase_Security_Channel_RequestHashService\verifyRequest().
| Tx_Extbase_MVC_Request::getArguments | ( | ) |
Returns an array of arguments and their values
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 333 of file Request.php.
Referenced by Tx_Extbase_Security_Channel_RequestHashService\verifyRequest().
| Tx_Extbase_MVC_Request::getControllerActionName | ( | ) |
Returns the name of the action the controller is supposed to execute.
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 290 of file Request.php.
References getControllerObjectName().
| Tx_Extbase_MVC_Request::getControllerExtensionKey | ( | ) |
Returns the extension name of the specified controller.
Definition at line 217 of file Request.php.
References t3lib_div\camelCaseToLowerCaseUnderscored().
| Tx_Extbase_MVC_Request::getControllerExtensionName | ( | ) |
Returns the extension name of the specified controller.
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 207 of file Request.php.
| Tx_Extbase_MVC_Request::getControllerName | ( | ) |
Returns the object name of the controller supposed to handle this request, if one was set already (if not, the name of the default controller is returned)
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 263 of file Request.php.
| Tx_Extbase_MVC_Request::getControllerObjectName | ( | ) |
Returns the object name of the controller defined by the extension name and controller name
| Tx_Extbase_MVC_Exception_NoSuchController | if the controller does not exist |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 128 of file Request.php.
Referenced by getControllerActionName().
| Tx_Extbase_MVC_Request::getControllerSubpackageKey | ( | ) |
Returns the subpackage key of the specified controller. If there is no subpackage key set, the method returns NULL
Definition at line 237 of file Request.php.
| Tx_Extbase_MVC_Request::getErrors | ( | ) |
Get errors that occured during the request (e.g. argument mapping errors)
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 398 of file Request.php.
| Tx_Extbase_MVC_Request::getFormat | ( | ) |
Returns the requested representation format
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 379 of file Request.php.
| Tx_Extbase_MVC_Request::getPluginName | ( | ) |
| Tx_Extbase_MVC_Request::hasArgument | ( | $ | argumentName | ) |
Checks if an argument of the given name exists (is set)
| string | $argumentName | Name of the argument to check |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 357 of file Request.php.
Referenced by Tx_Extbase_Security_Channel_RequestHashService\verifyRequest().
| Tx_Extbase_MVC_Request::isDispatched | ( | ) |
If this request has been dispatched and addressed by the responsible controller and the response is ready to be sent.
The dispatcher will try to dispatch the request again if it has not been addressed yet.
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 116 of file Request.php.
| Tx_Extbase_MVC_Request::setArgument | ( | $ | argumentName, |
| $ | value | ||
| ) |
Sets the value of the specified argument
| string | $argumentName | Name of the argument to set |
| mixed | $value | The new value |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 311 of file Request.php.
References $value.
| Tx_Extbase_MVC_Request::setArguments | ( | array $ | arguments | ) |
Sets the whole arguments array and therefore replaces any arguments which existed before.
| array | $arguments | An array of argument names and their values |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 323 of file Request.php.
References $arguments.
Referenced by Tx_Fluid_Core_Widget_AbstractWidgetViewHelper\passArgumentsToSubRequest().
| Tx_Extbase_MVC_Request::setControllerActionName | ( | $ | actionName | ) |
Sets the name of the action contained in this request.
Note that the action name must start with a lower case letter and is case sensitive.
| string | $actionName,: | Name of the action to execute by the controller |
| Tx_Extbase_MVC_Exception_InvalidActionName | if the action name is not valid |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 276 of file Request.php.
Referenced by Tx_Fluid_Core_Widget_AbstractWidgetViewHelper\passArgumentsToSubRequest().
| Tx_Extbase_MVC_Request::setControllerExtensionName | ( | $ | controllerExtensionName | ) |
Sets the extension name of the controller.
| string | $controllerExtensionName | The extension name. |
| Tx_Extbase_MVC_Exception_InvalidExtensionName | if the extension name is not valid |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 195 of file Request.php.
References $controllerExtensionName.
| Tx_Extbase_MVC_Request::setControllerName | ( | $ | controllerName | ) |
Sets the name of the controller which is supposed to handle the request. Note: This is not the object name of the controller!
| string | $controllerName | Name of the controller |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 248 of file Request.php.
References $controllerName.
| Tx_Extbase_MVC_Request::setControllerObjectName | ( | $ | controllerObjectName | ) |
Explicitly sets the object name of the controller
| string | $controllerObjectName | The fully qualified controller object name |
Definition at line 146 of file Request.php.
Referenced by Tx_Fluid_Core_Widget_WidgetRequest\setWidgetContext().
| Tx_Extbase_MVC_Request::setControllerSubpackageKey | ( | $ | subpackageKey | ) |
Sets the subpackage key of the controller.
| string | $subpackageKey | The subpackage key. |
Definition at line 227 of file Request.php.
| Tx_Extbase_MVC_Request::setDispatched | ( | $ | flag | ) |
Sets the dispatched flag
| boolean | $flag | If this request has been dispatched |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 102 of file Request.php.
| Tx_Extbase_MVC_Request::setErrors | ( | array $ | errors | ) |
Set errors that occured during the request (e.g. argument mapping errors)
| array | $errors | An array of Tx_Extbase_Error_Error objects |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 389 of file Request.php.
References $errors.
| Tx_Extbase_MVC_Request::setFormat | ( | $ | format | ) |
Sets the requested representation format
| string | $format | The desired format, something like "html", "xml", "png", "json" or the like. Can even be something like "rss.xml". |
Implements Tx_Extbase_MVC_RequestInterface.
Definition at line 368 of file Request.php.
References $format.
| Tx_Extbase_MVC_Request::setPluginName | ( | $ | pluginName = NULL | ) |
Sets the plugin name.
| string | $extensionName | The plugin name. |
Definition at line 172 of file Request.php.
References $pluginName.
Tx_Extbase_MVC_Request::$arguments = array() [protected] |
Definition at line 78 of file Request.php.
Referenced by setArguments().
Tx_Extbase_MVC_Request::$controllerActionName = 'index' [protected] |
Definition at line 73 of file Request.php.
Tx_Extbase_MVC_Request::$controllerExtensionName = NULL [protected] |
Definition at line 56 of file Request.php.
Referenced by setControllerExtensionName().
Tx_Extbase_MVC_Request::$controllerName = 'Standard' [protected] |
Definition at line 68 of file Request.php.
Referenced by setControllerName().
Tx_Extbase_MVC_Request::$controllerObjectNamePattern = 'Tx_@extension_@subpackage_Controller_@controllerController' [protected] |
Definition at line 46 of file Request.php.
Tx_Extbase_MVC_Request::$controllerSubpackageKey = NULL [protected] |
Definition at line 63 of file Request.php.
Tx_Extbase_MVC_Request::$dispatched = FALSE [protected] |
Definition at line 88 of file Request.php.
Tx_Extbase_MVC_Request::$errors = array() [protected] |
Definition at line 93 of file Request.php.
Referenced by setErrors().
Tx_Extbase_MVC_Request::$format = 'txt' [protected] |
Reimplemented in Tx_Extbase_MVC_Web_Request.
Definition at line 83 of file Request.php.
Referenced by setFormat().
Tx_Extbase_MVC_Request::$pluginName = '' [protected] |
Definition at line 51 of file Request.php.
Referenced by setPluginName().
| const Tx_Extbase_MVC_Request::PATTERN_MATCH_FORMAT = '/^[a-z0-9]{1,5}$/' |
Definition at line 39 of file Request.php.
1.7.5.1