Items guide
Using Items in your Cherrycake application brings you many benefits when interacting with the primordial objects of your app, like optimized loading, storage, caching and embedded security mechanisms.
Items are Cherrycake's conceptualization of the fundamental objects stored in a database. For example, in an e-commerce site, a product would be an Item, but also would a user, a product category or an invoice.
Creating an Item class
Items always come from a database table, so let's imagine we have a database of movies and we want to define an Item to work with the movies that are stored in our database, in a table called movies
with the following fields:
Field name | Specs | |
|
| The unique id to identify movies. |
|
| The name of the movie. |
|
| A summary of the movie plot. |
|
| The year the movie was released. |
|
| The date and time the movie was added to the database. |
|
| The id of the director in the |
You can get an SQL script to create this table in the Cherrycake documentation examples repository, in the
/install/database/movies.sql
file.
Items are App classes that extend the Cherrycake's Item core class, so we create the Movie
class in the file /classes/Movie.class.php
, and it looks like this:
We set some properties of the class to configure it:
tableName
The name of the table where the items are stored.fields
A hash array to specify the field names and field types of the table. See Database constants for all the available field types. See Item::$fields for more keys you can use here to customize how your Item works.
You can also set this other properties if you'll be using values different from the defaults:
databaseProviderName
The database provider name where this items are stored. The default ismain
idFieldName
The name of the field that contains values to uniquely identify each item in the table. Defaults toid
With this we've already created a functional Item that can now represent a movie in our app with the added benefits of using Cherrycake Items.
Now, what can you do with your new Movie
class? Let's see how to create a Movie
object we can manipulate. Let's say we want to load the movie with id 15
:
Field values for an Item are accessed just like regular properties, like this:
See this example working in the Cherrycake documentation examples site.
We can also update items on the database by using Item::update, for example:
Changing an Item's property manually and then calling Item::update without any parameters also works. This will do the same as the example above:
To remove an item from the database, use the Item::delete method:
Last updated