Dependency Injection/Service Location

Before reading this section, it is wise to read

2016-10-16 09:49:57
Command Line Applications

CLI applications are executed from the command line. They are useful to create cron jobs, scripts, command utilities and more. Structure

2016-10-16 09:48:36
ODM (Object-Document Mapper)

In addition to its ability to map tables in relational databases,

2016-10-16 09:56:11
Using Controllers

Actions are methods on a controller that handle requests. By default all public methods on a controller map to actions and are accessible by a URL. Actions are responsible

2016-10-16 09:57:12
Working with Models (Advanced)

Hydration Modes As mentioned previously, resultsets are collections of complete objects, this means that every returned result is an object

2016-10-16 09:57:36
Model Transactions

When a process performs multiple database operations, it might be important that each step is completed successfully so that data integrity can be maintained. Transactions

2016-10-16 09:52:09
Improving Performance with Cache

Phalcon provides the Phalcon\Cache class allowing faster

2016-10-16 09:51:47
Working with Namespaces

Namespaces can be used to avoid class name collisions;

2016-10-16 09:57:36
Working with Models

A model represents the information (data) of the application and the rules to manipulate that data. Models are primarily used for managing the rules of interaction with a corresponding

2016-10-16 09:57:36
Access Control Lists (ACL)

Phalcon\Acl provides an easy and lightweight management of ACLs as well as the permissions

2016-10-16 09:47:21