Regen DAOs with new import() / export()
[civicrm-core.git] / CRM / Case / DAO / CaseActivity.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
29 * @copyright CiviCRM LLC (c) 2004-2016
30 *
31 * Generated from xml/schema/CRM/Case/CaseActivity.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:c03262db2a1c211dcc17de688ec9cc69)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 class CRM_Case_DAO_CaseActivity extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_case_activity';
44 /**
45 * static instance to hold the field values
46 *
47 * @var array
48 */
49 static $_fields = null;
50 /**
51 * static instance to hold the keys used in $_fields for each field.
52 *
53 * @var array
54 */
55 static $_fieldKeys = null;
56 /**
57 * static instance to hold the FK relationships
58 *
59 * @var string
60 */
61 static $_links = null;
62 /**
63 * static value to see if we should log any modifications to
64 * this table in the civicrm_log table
65 *
66 * @var boolean
67 */
68 static $_log = true;
69 /**
70 * Unique case-activity association id
71 *
72 * @var int unsigned
73 */
74 public $id;
75 /**
76 * Case ID of case-activity association.
77 *
78 * @var int unsigned
79 */
80 public $case_id;
81 /**
82 * Activity ID of case-activity association.
83 *
84 * @var int unsigned
85 */
86 public $activity_id;
87 /**
88 * class constructor
89 *
90 * @return civicrm_case_activity
91 */
92 function __construct() {
93 $this->__table = 'civicrm_case_activity';
94 parent::__construct();
95 }
96 /**
97 * Returns foreign keys and entity references
98 *
99 * @return array
100 * [CRM_Core_Reference_Interface]
101 */
102 static function getReferenceColumns() {
103 if (!self::$_links) {
104 self::$_links = static ::createReferenceColumns(__CLASS__);
105 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'case_id', 'civicrm_case', 'id');
106 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'activity_id', 'civicrm_activity', 'id');
107 }
108 return self::$_links;
109 }
110 /**
111 * Returns all the column names of this table
112 *
113 * @return array
114 */
115 static function &fields() {
116 if (!(self::$_fields)) {
117 self::$_fields = array(
118 'id' => array(
119 'name' => 'id',
120 'type' => CRM_Utils_Type::T_INT,
121 'title' => ts('Case Activity ID') ,
122 'description' => 'Unique case-activity association id',
123 'required' => true,
124 ) ,
125 'case_id' => array(
126 'name' => 'case_id',
127 'type' => CRM_Utils_Type::T_INT,
128 'title' => ts('Case') ,
129 'description' => 'Case ID of case-activity association.',
130 'required' => true,
131 'FKClassName' => 'CRM_Case_DAO_Case',
132 ) ,
133 'activity_id' => array(
134 'name' => 'activity_id',
135 'type' => CRM_Utils_Type::T_INT,
136 'title' => ts('Activity ID') ,
137 'description' => 'Activity ID of case-activity association.',
138 'required' => true,
139 'FKClassName' => 'CRM_Activity_DAO_Activity',
140 ) ,
141 );
142 }
143 return self::$_fields;
144 }
145 /**
146 * Returns an array containing, for each field, the arary key used for that
147 * field in self::$_fields.
148 *
149 * @return array
150 */
151 static function &fieldKeys() {
152 if (!(self::$_fieldKeys)) {
153 self::$_fieldKeys = array(
154 'id' => 'id',
155 'case_id' => 'case_id',
156 'activity_id' => 'activity_id',
157 );
158 }
159 return self::$_fieldKeys;
160 }
161 /**
162 * Returns the names of this table
163 *
164 * @return string
165 */
166 static function getTableName() {
167 return self::$_tableName;
168 }
169 /**
170 * Returns if this table needs to be logged
171 *
172 * @return boolean
173 */
174 function getLog() {
175 return self::$_log;
176 }
177 /**
178 * Returns the list of fields that can be imported
179 *
180 * @param bool $prefix
181 *
182 * @return array
183 */
184 static function &import($prefix = false) {
185 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'case_activity', $prefix, array());
186 return $r;
187 }
188 /**
189 * Returns the list of fields that can be exported
190 *
191 * @param bool $prefix
192 *
193 * @return array
194 */
195 static function &export($prefix = false) {
196 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'case_activity', $prefix, array());
197 return $r;
198 }
199 }