Method | Description | |
---|---|---|
accessRules ( ) : array | ||
actionCreate ( ) : void | Creates a new model. | |
actionDelete ( integer $id ) : void | Deletes a particular model. | |
actionIndex ( ) : void | Manages all models. | |
actionUpdate ( integer $id ) : void | Updates a particular model. | |
actionView ( integer $id ) : void | Displays a particular model. | |
actions ( ) : array | ||
loadModel ( integer $id ) : ContentBlock | Returns the data model based on the primary key given in the GET variable. |
public actionCreate ( ) : void | ||
return | void |
public actionDelete ( integer $id ) : void | ||
$id | integer | the ID of the model to be deleted |
return | void |
public actionUpdate ( integer $id ) : void | ||
$id | integer | the ID of the model to be updated |
return | void |
public actionView ( integer $id ) : void | ||
$id | integer | the ID of the model to be displayed |
return | void |