base\Model $errors

$errors public read-only property Errors for all attributes or the specified attribute. Empty array is returned if no error. Note that when returning errors for all attributes, the result is a two-dimensional array, like the following: [ 'username' => [ 'Username is required.', 'Username must contain only word characters.', ], 'email' => [ 'Email address is invalid.', ] ] public array getErrors ( $attribute = null )

base\InvalidValueException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\Model $activeValidators

$activeValidators public read-only property The validators applicable to the current $scenario. public yii\validators\Validator[] getActiveValidators ( $attribute = null )

base\InvalidConfigException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\InvalidRouteException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\InvalidParamException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\InlineAction runWithParams()

runWithParams() public method Runs this action with the specified parameters. This method is mainly invoked by the controller. public mixed runWithParams ( $params )$params array Action parameters return mixed The result of the action

base\InvalidCallException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

base\InlineAction __construct()

__construct() public method public void __construct ( $id, $controller, $actionMethod, $config = [] )$id string The ID of this action $controller yii\base\Controller The controller that owns this action $actionMethod string The controller method that this inline action is associated with $config array Name-value pairs that will be used to initialize the object properties

base\InlineAction $actionMethod

$actionMethod public property The controller method that this inline action is associated with public string $actionMethod = null