Merge pull request #9680 from h-c-c/CRM-19881
[civicrm-core.git] / CRM / Core / DAO / WordReplacement.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/WordReplacement.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
522a26c9 33 * (GenCodeChecksum:ae2435f4e472f131fa088a232ae6d88e)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Core_DAO_WordReplacement constructor.
39 */
e501603b
TO
40class CRM_Core_DAO_WordReplacement extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_word_replacement';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 * Word replacement ID
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Word which need to be replaced
61 *
62 * @var string
63 */
64 public $find_word;
65 /**
66 * Word which will replace the word in find
67 *
68 * @var string
69 */
70 public $replace_word;
71 /**
72 * Is this entry active?
73 *
74 * @var boolean
75 */
76 public $is_active;
77 /**
78 *
79 * @var string
80 */
81 public $match_type;
82 /**
83 * FK to Domain ID. This is for Domain specific word replacement
84 *
85 * @var int unsigned
86 */
87 public $domain_id;
88 /**
f41f0342 89 * Class constructor.
e501603b
TO
90 */
91 function __construct() {
92 $this->__table = 'civicrm_word_replacement';
93 parent::__construct();
94 }
95 /**
f41f0342 96 * Returns foreign keys and entity references.
e501603b
TO
97 *
98 * @return array
99 * [CRM_Core_Reference_Interface]
100 */
101 static function getReferenceColumns() {
346aaaba
TO
102 if (!isset(Civi::$statics[__CLASS__]['links'])) {
103 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
104 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id');
105 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 106 }
346aaaba 107 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
108 }
109 /**
110 * Returns all the column names of this table
111 *
112 * @return array
113 */
114 static function &fields() {
346aaaba
TO
115 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
116 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
117 'id' => array(
118 'name' => 'id',
119 'type' => CRM_Utils_Type::T_INT,
120 'title' => ts('Word Replacement ID') ,
121 'description' => 'Word replacement ID',
122 'required' => true,
522a26c9 123 'table_name' => 'civicrm_word_replacement',
124 'entity' => 'WordReplacement',
125 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
126 ) ,
127 'find_word' => array(
128 'name' => 'find_word',
129 'type' => CRM_Utils_Type::T_STRING,
130 'title' => ts('Replaced Word') ,
131 'description' => 'Word which need to be replaced',
132 'maxlength' => 255,
133 'size' => CRM_Utils_Type::HUGE,
522a26c9 134 'table_name' => 'civicrm_word_replacement',
135 'entity' => 'WordReplacement',
136 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
137 ) ,
138 'replace_word' => array(
139 'name' => 'replace_word',
140 'type' => CRM_Utils_Type::T_STRING,
141 'title' => ts('Replacement Word') ,
142 'description' => 'Word which will replace the word in find',
143 'maxlength' => 255,
144 'size' => CRM_Utils_Type::HUGE,
522a26c9 145 'table_name' => 'civicrm_word_replacement',
146 'entity' => 'WordReplacement',
147 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
148 ) ,
149 'is_active' => array(
150 'name' => 'is_active',
151 'type' => CRM_Utils_Type::T_BOOLEAN,
152 'title' => ts('Word Replacement is Active') ,
153 'description' => 'Is this entry active?',
154 'default' => '1',
522a26c9 155 'table_name' => 'civicrm_word_replacement',
156 'entity' => 'WordReplacement',
157 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
158 ) ,
159 'match_type' => array(
160 'name' => 'match_type',
161 'type' => CRM_Utils_Type::T_STRING,
162 'title' => ts('Word Replacement Match Type') ,
163 'maxlength' => 16,
164 'size' => CRM_Utils_Type::TWELVE,
165 'default' => 'wildcardMatch',
522a26c9 166 'table_name' => 'civicrm_word_replacement',
167 'entity' => 'WordReplacement',
168 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
169 'html' => array(
170 'type' => 'Select',
171 ) ,
172 'pseudoconstant' => array(
173 'callback' => 'CRM_Core_SelectValues::getWordReplacementMatchType',
174 )
175 ) ,
176 'domain_id' => array(
177 'name' => 'domain_id',
178 'type' => CRM_Utils_Type::T_INT,
179 'title' => ts('Word Replacement Domain ID') ,
180 'description' => 'FK to Domain ID. This is for Domain specific word replacement',
522a26c9 181 'table_name' => 'civicrm_word_replacement',
182 'entity' => 'WordReplacement',
183 'bao' => 'CRM_Core_BAO_WordReplacement',
e501603b
TO
184 'FKClassName' => 'CRM_Core_DAO_Domain',
185 'pseudoconstant' => array(
186 'table' => 'civicrm_domain',
187 'keyColumn' => 'id',
188 'labelColumn' => 'name',
189 )
190 ) ,
191 );
346aaaba 192 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 193 }
346aaaba 194 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
195 }
196 /**
bd8e0b14 197 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
198 *
199 * @return array
bd8e0b14 200 * Array(string $name => string $uniqueName).
e501603b
TO
201 */
202 static function &fieldKeys() {
bd8e0b14
TO
203 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
204 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 205 }
bd8e0b14 206 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
207 }
208 /**
209 * Returns the names of this table
210 *
211 * @return string
212 */
213 static function getTableName() {
214 return self::$_tableName;
215 }
216 /**
217 * Returns if this table needs to be logged
218 *
219 * @return boolean
220 */
221 function getLog() {
222 return self::$_log;
223 }
224 /**
225 * Returns the list of fields that can be imported
226 *
227 * @param bool $prefix
228 *
229 * @return array
230 */
231 static function &import($prefix = false) {
60808919
TO
232 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'word_replacement', $prefix, array());
233 return $r;
e501603b
TO
234 }
235 /**
236 * Returns the list of fields that can be exported
237 *
238 * @param bool $prefix
239 *
240 * @return array
241 */
242 static function &export($prefix = false) {
60808919
TO
243 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'word_replacement', $prefix, array());
244 return $r;
e501603b
TO
245 }
246}