PHP Class Crud\Action\ViewAction

Licensed under The MIT License For full copyright and license information, please see the LICENSE.txt
Inheritance: extends BaseAction, use trait Crud\Traits\FindMethodTrait, use trait Crud\Traits\ViewTrait, use trait Crud\Traits\ViewVarTrait
Datei anzeigen Open project: friendsofcake/crud

Protected Properties

Property Type Description
$_defaultConfig array enabled Is this crud action enabled or disabled findMethod The default Model::find() method for reading data view A map of the controller action and the view to render If NULL (the default) the controller action name will be used

Protected Methods

Method Description
_handle ( string | null $id = null ) : void Generic HTTP handler

Method Details

_handle() protected method

Generic HTTP handler
protected _handle ( string | null $id = null ) : void
$id string | null Record id
return void

Property Details

$_defaultConfig protected_oe property

enabled Is this crud action enabled or disabled findMethod The default Model::find() method for reading data view A map of the controller action and the view to render If NULL (the default) the controller action name will be used
protected array $_defaultConfig
return array