forked from civicrm/org.civicrm.api4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDAOEntity.php
59 lines (49 loc) · 1.11 KB
/
DAOEntity.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace Civi\Api4\Generic;
/**
* Base class for DAO-based entities.
*/
abstract class DAOEntity extends AbstractEntity {
/**
* @return DAOGetAction
*/
public static function get() {
return new DAOGetAction(static::class, __FUNCTION__);
}
/**
* @return DAOGetAction
*/
public static function save() {
return new DAOSaveAction(static::class, __FUNCTION__);
}
/**
* @return DAOGetFieldsAction
*/
public static function getFields() {
return new DAOGetFieldsAction(static::class, __FUNCTION__);
}
/**
* @return DAOCreateAction
*/
public static function create() {
return new DAOCreateAction(static::class, __FUNCTION__);
}
/**
* @return DAOUpdateAction
*/
public static function update() {
return new DAOUpdateAction(static::class, __FUNCTION__);
}
/**
* @return DAODeleteAction
*/
public static function delete() {
return new DAODeleteAction(static::class, __FUNCTION__);
}
/**
* @return BasicReplaceAction
*/
public static function replace() {
return new BasicReplaceAction(static::class, __FUNCTION__);
}
}