Method | Description | |
---|---|---|
crudCreate ( ) : array | mixed | Create new record. | |
crudDelete ( string $id ) : boolean | Delete a record with the given id. | |
crudGet ( string $id ) : array | mixed | Retrieve a single record. | |
crudList ( ) : array | mixed | Retrieve all records in a collection. | |
crudReplace ( string $id ) : array | mixed | Replace a single record. | |
crudUpdate ( string $id ) : array | mixed | Update a single record. |
public crudCreate ( ) : array | mixed | ||
return | array | mixed | Array containing the newly created record. |
public crudDelete ( string $id ) : boolean | ||
$id | string | Id of the record to be deleted. |
return | boolean | True if delete was successful or false. |