commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Contact / DAO / GroupOrganization.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
30 *
31 * Generated from xml/schema/CRM/Contact/GroupOrganization.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 */
34 require_once 'CRM/Core/DAO.php';
35 require_once 'CRM/Utils/Type.php';
36 class CRM_Contact_DAO_GroupOrganization extends CRM_Core_DAO {
37 /**
38 * static instance to hold the table name
39 *
40 * @var string
41 */
42 static $_tableName = 'civicrm_group_organization';
43 /**
44 * static instance to hold the field values
45 *
46 * @var array
47 */
48 static $_fields = null;
49 /**
50 * static instance to hold the keys used in $_fields for each field.
51 *
52 * @var array
53 */
54 static $_fieldKeys = null;
55 /**
56 * static instance to hold the FK relationships
57 *
58 * @var string
59 */
60 static $_links = null;
61 /**
62 * static instance to hold the values that can
63 * be imported
64 *
65 * @var array
66 */
67 static $_import = null;
68 /**
69 * static instance to hold the values that can
70 * be exported
71 *
72 * @var array
73 */
74 static $_export = null;
75 /**
76 * static value to see if we should log any modifications to
77 * this table in the civicrm_log table
78 *
79 * @var boolean
80 */
81 static $_log = true;
82 /**
83 * Relationship ID
84 *
85 * @var int unsigned
86 */
87 public $id;
88 /**
89 * ID of the group
90 *
91 * @var int unsigned
92 */
93 public $group_id;
94 /**
95 * ID of the Organization Contact
96 *
97 * @var int unsigned
98 */
99 public $organization_id;
100 /**
101 * class constructor
102 *
103 * @return civicrm_group_organization
104 */
105 function __construct() {
106 $this->__table = 'civicrm_group_organization';
107 parent::__construct();
108 }
109 /**
110 * Returns foreign keys and entity references
111 *
112 * @return array
113 * [CRM_Core_Reference_Interface]
114 */
115 static function getReferenceColumns() {
116 if (!self::$_links) {
117 self::$_links = static ::createReferenceColumns(__CLASS__);
118 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'group_id', 'civicrm_group', 'id');
119 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'organization_id', 'civicrm_contact', 'id');
120 }
121 return self::$_links;
122 }
123 /**
124 * Returns all the column names of this table
125 *
126 * @return array
127 */
128 static function &fields() {
129 if (!(self::$_fields)) {
130 self::$_fields = array(
131 'id' => array(
132 'name' => 'id',
133 'type' => CRM_Utils_Type::T_INT,
134 'title' => ts('Group Organization ID') ,
135 'description' => 'Relationship ID',
136 'required' => true,
137 ) ,
138 'group_id' => array(
139 'name' => 'group_id',
140 'type' => CRM_Utils_Type::T_INT,
141 'title' => ts('Group') ,
142 'description' => 'ID of the group',
143 'required' => true,
144 'FKClassName' => 'CRM_Contact_DAO_Group',
145 'html' => array(
146 'type' => 'Select',
147 ) ,
148 'pseudoconstant' => array(
149 'table' => 'civicrm_group',
150 'keyColumn' => 'id',
151 'labelColumn' => 'title',
152 )
153 ) ,
154 'organization_id' => array(
155 'name' => 'organization_id',
156 'type' => CRM_Utils_Type::T_INT,
157 'title' => ts('Organization') ,
158 'description' => 'ID of the Organization Contact',
159 'required' => true,
160 'FKClassName' => 'CRM_Contact_DAO_Contact',
161 ) ,
162 );
163 }
164 return self::$_fields;
165 }
166 /**
167 * Returns an array containing, for each field, the arary key used for that
168 * field in self::$_fields.
169 *
170 * @return array
171 */
172 static function &fieldKeys() {
173 if (!(self::$_fieldKeys)) {
174 self::$_fieldKeys = array(
175 'id' => 'id',
176 'group_id' => 'group_id',
177 'organization_id' => 'organization_id',
178 );
179 }
180 return self::$_fieldKeys;
181 }
182 /**
183 * Returns the names of this table
184 *
185 * @return string
186 */
187 static function getTableName() {
188 return self::$_tableName;
189 }
190 /**
191 * Returns if this table needs to be logged
192 *
193 * @return boolean
194 */
195 function getLog() {
196 return self::$_log;
197 }
198 /**
199 * Returns the list of fields that can be imported
200 *
201 * @param bool $prefix
202 *
203 * @return array
204 */
205 static function &import($prefix = false) {
206 if (!(self::$_import)) {
207 self::$_import = array();
208 $fields = self::fields();
209 foreach($fields as $name => $field) {
210 if (CRM_Utils_Array::value('import', $field)) {
211 if ($prefix) {
212 self::$_import['group_organization'] = & $fields[$name];
213 } else {
214 self::$_import[$name] = & $fields[$name];
215 }
216 }
217 }
218 }
219 return self::$_import;
220 }
221 /**
222 * Returns the list of fields that can be exported
223 *
224 * @param bool $prefix
225 *
226 * @return array
227 */
228 static function &export($prefix = false) {
229 if (!(self::$_export)) {
230 self::$_export = array();
231 $fields = self::fields();
232 foreach($fields as $name => $field) {
233 if (CRM_Utils_Array::value('export', $field)) {
234 if ($prefix) {
235 self::$_export['group_organization'] = & $fields[$name];
236 } else {
237 self::$_export[$name] = & $fields[$name];
238 }
239 }
240 }
241 }
242 return self::$_export;
243 }
244 }