PHP Class Backend\Core\Engine\Base\ActionDelete

In this case this is the base class for the delete action
Inheritance: extends Action
Show file Open project: forkcms/forkcms Class Usage Examples

Protected Properties

Property Type Description
$id integer The id of the item to edit
$record array The data of the item to edit

Public Methods

Method Description
execute ( ) Execute the current action This method will be overwritten in most of the actions, but still be called to add general stuff

Method Details

execute() public method

Execute the current action This method will be overwritten in most of the actions, but still be called to add general stuff
public execute ( )

Property Details

$id protected property

The id of the item to edit
protected int $id
return integer

$record protected property

The data of the item to edit
protected array $record
return array