Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
DAOEvents.php
Go to the documentation of this file.
1<?php
3
14class DAOEvents {
15
16 const GET_ALL = 'dao.getall';
17
18 const GET_ONE = 'dao.getone';
19
20 const BEFORE_INSERT = 'dao.before.insert';
21
22 const BEFORE_UPDATE = 'dao.before.update';
23
24 const AFTER_INSERT = 'dao.after.insert';
25
26 const AFTER_UPDATE = 'dao.after.update';
27}
28
DAO events constants.
Definition DAOEvents.php:14