MultipleActionController.php
30 * | _in_ `data` | An associative array with unique/sortable keys and values that describe an action to perform
31 * | _out_ `data` | An associative array with the same keys and values that describe the response of each action
37 * The data array may contain the following special variables, that will be replaced by the described values:
doExecute($method=null)
Definition: MultipleActionController.php:109
static getDump($variable, $strlen=100, $width=25, $depth=10, $i=0, &$objects=[])
Get the dump of a variable as string.
Definition: StringUtil.php:29
static fromException(\Exception $ex)
Factory method for transforming an exception into an ApplicationError instance.
Definition: ApplicationError.php:172
validate()
Definition: MultipleActionController.php:84
StringUtil provides support for string manipulation.
Definition: StringUtil.php:18
ApplicationError is used to signal errors that occur while processing a request.
Definition: ApplicationError.php:41
static get($code, $data=null)
Factory method for retrieving a predefined error instance.
Definition: ApplicationError.php:144
static getNewInstance($name, $dynamicConfiguration=[])
Definition: ObjectFactory.php:55
Controller is the base class of all controllers.
Definition: Controller.php:49
MultipleActionController executes multiple actions by passing them to the appropriate controllers and...
Definition: MultipleActionController.php:79
ObjectFactory implements the service locator pattern by wrapping a Factory instance and providing sta...
Definition: ObjectFactory.php:24