Add comment blocks
[civicrm-core.git] / CRM / Core / DAO / RecurringEntity.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
TO
7+--------------------------------------------------------------------+
8| This file is a part of CiviCRM. |
9| |
10| CiviCRM is free software; you can copy, modify, and distribute it |
11| under the terms of the GNU Affero General Public License |
12| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13| |
14| CiviCRM is distributed in the hope that it will be useful, but |
15| WITHOUT ANY WARRANTY; without even the implied warranty of |
16| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17| See the GNU Affero General Public License for more details. |
18| |
19| You should have received a copy of the GNU Affero General Public |
20| License and the CiviCRM Licensing Exception along |
21| with this program; if not, contact CiviCRM LLC |
22| at info[AT]civicrm[DOT]org. If you have questions about the |
23| GNU Affero General Public License or the licensing of CiviCRM, |
24| see the CiviCRM license FAQ at http://civicrm.org/licensing |
25+--------------------------------------------------------------------+
26*/
27/**
28 * @package CRM
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Core/RecurringEntity.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:313755d167ca428c11a245f50a786127)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Core_DAO_RecurringEntity extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_recurring_entity';
e501603b
TO
44 /**
45 * static value to see if we should log any modifications to
46 * this table in the civicrm_log table
47 *
48 * @var boolean
49 */
50 static $_log = true;
51 /**
52 *
53 * @var int unsigned
54 */
55 public $id;
56 /**
57 * Recurring Entity Parent ID
58 *
59 * @var int unsigned
60 */
61 public $parent_id;
62 /**
63 * Recurring Entity Child ID
64 *
65 * @var int unsigned
66 */
67 public $entity_id;
68 /**
69 * Physical tablename for entity, e.g. civicrm_event
70 *
71 * @var string
72 */
73 public $entity_table;
74 /**
75 * 1-this entity, 2-this and the following entities, 3-all the entities
76 *
77 * @var boolean
78 */
79 public $mode;
80 /**
81 * class constructor
82 *
83 * @return civicrm_recurring_entity
84 */
85 function __construct() {
86 $this->__table = 'civicrm_recurring_entity';
87 parent::__construct();
88 }
89 /**
90 * Returns all the column names of this table
91 *
92 * @return array
93 */
94 static function &fields() {
346aaaba
TO
95 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
96 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
97 'id' => array(
98 'name' => 'id',
99 'type' => CRM_Utils_Type::T_INT,
100 'title' => ts('ID') ,
101 'required' => true,
102 ) ,
103 'parent_id' => array(
104 'name' => 'parent_id',
105 'type' => CRM_Utils_Type::T_INT,
106 'title' => ts('Parent ID') ,
107 'description' => 'Recurring Entity Parent ID',
108 'required' => true,
109 ) ,
110 'entity_id' => array(
111 'name' => 'entity_id',
112 'type' => CRM_Utils_Type::T_INT,
113 'title' => ts('Entity ID') ,
114 'description' => 'Recurring Entity Child ID',
115 ) ,
116 'entity_table' => array(
117 'name' => 'entity_table',
118 'type' => CRM_Utils_Type::T_STRING,
119 'title' => ts('Entity Table') ,
120 'description' => 'Physical tablename for entity, e.g. civicrm_event',
121 'required' => true,
122 'maxlength' => 64,
123 'size' => CRM_Utils_Type::BIG,
124 ) ,
125 'mode' => array(
126 'name' => 'mode',
127 'type' => CRM_Utils_Type::T_BOOLEAN,
128 'title' => ts('Cascade Type') ,
129 'description' => '1-this entity, 2-this and the following entities, 3-all the entities',
130 'required' => true,
131 'default' => '1',
132 ) ,
133 );
346aaaba 134 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 135 }
346aaaba 136 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
137 }
138 /**
bd8e0b14 139 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
140 *
141 * @return array
bd8e0b14 142 * Array(string $name => string $uniqueName).
e501603b
TO
143 */
144 static function &fieldKeys() {
bd8e0b14
TO
145 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
146 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 147 }
bd8e0b14 148 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
149 }
150 /**
151 * Returns the names of this table
152 *
153 * @return string
154 */
155 static function getTableName() {
156 return self::$_tableName;
157 }
158 /**
159 * Returns if this table needs to be logged
160 *
161 * @return boolean
162 */
163 function getLog() {
164 return self::$_log;
165 }
166 /**
167 * Returns the list of fields that can be imported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
173 static function &import($prefix = false) {
60808919
TO
174 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'recurring_entity', $prefix, array());
175 return $r;
e501603b
TO
176 }
177 /**
178 * Returns the list of fields that can be exported
179 *
180 * @param bool $prefix
181 *
182 * @return array
183 */
184 static function &export($prefix = false) {
60808919
TO
185 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'recurring_entity', $prefix, array());
186 return $r;
e501603b
TO
187 }
188}