CRM-20312 regenerated DAO with localisation
[civicrm-core.git] / CRM / Mailing / DAO / TrackableURL.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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-2017
30 *
31 * Generated from xml/schema/CRM/Mailing/TrackableURL.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:13d0c2db9be0713818bda26731896ae6)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Mailing_DAO_TrackableURL constructor.
39 */
40 class CRM_Mailing_DAO_TrackableURL extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_mailing_trackable_url';
47 /**
48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * The URL to be tracked.
60 *
61 * @var text
62 */
63 public $url;
64 /**
65 * FK to the mailing
66 *
67 * @var int unsigned
68 */
69 public $mailing_id;
70 /**
71 * Class constructor.
72 */
73 function __construct() {
74 $this->__table = 'civicrm_mailing_trackable_url';
75 parent::__construct();
76 }
77 /**
78 * Returns foreign keys and entity references.
79 *
80 * @return array
81 * [CRM_Core_Reference_Interface]
82 */
83 static function getReferenceColumns() {
84 if (!isset(Civi::$statics[__CLASS__]['links'])) {
85 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
86 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'mailing_id', 'civicrm_mailing', 'id');
87 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
88 }
89 return Civi::$statics[__CLASS__]['links'];
90 }
91 /**
92 * Returns all the column names of this table
93 *
94 * @return array
95 */
96 static function &fields() {
97 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
98 Civi::$statics[__CLASS__]['fields'] = array(
99 'id' => array(
100 'name' => 'id',
101 'type' => CRM_Utils_Type::T_INT,
102 'title' => ts('Trackable URL ID') ,
103 'required' => true,
104 'table_name' => 'civicrm_mailing_trackable_url',
105 'entity' => 'TrackableURL',
106 'bao' => 'CRM_Mailing_BAO_TrackableURL',
107 'localizable' => 0,
108 ) ,
109 'url' => array(
110 'name' => 'url',
111 'type' => CRM_Utils_Type::T_TEXT,
112 'title' => ts('Url') ,
113 'description' => 'The URL to be tracked.',
114 'required' => true,
115 'table_name' => 'civicrm_mailing_trackable_url',
116 'entity' => 'TrackableURL',
117 'bao' => 'CRM_Mailing_BAO_TrackableURL',
118 'localizable' => 0,
119 ) ,
120 'mailing_id' => array(
121 'name' => 'mailing_id',
122 'type' => CRM_Utils_Type::T_INT,
123 'title' => ts('Mailing') ,
124 'description' => 'FK to the mailing',
125 'required' => true,
126 'table_name' => 'civicrm_mailing_trackable_url',
127 'entity' => 'TrackableURL',
128 'bao' => 'CRM_Mailing_BAO_TrackableURL',
129 'localizable' => 0,
130 'FKClassName' => 'CRM_Mailing_DAO_Mailing',
131 ) ,
132 );
133 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
134 }
135 return Civi::$statics[__CLASS__]['fields'];
136 }
137 /**
138 * Return a mapping from field-name to the corresponding key (as used in fields()).
139 *
140 * @return array
141 * Array(string $name => string $uniqueName).
142 */
143 static function &fieldKeys() {
144 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
145 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
146 }
147 return Civi::$statics[__CLASS__]['fieldKeys'];
148 }
149 /**
150 * Returns the names of this table
151 *
152 * @return string
153 */
154 static function getTableName() {
155 return self::$_tableName;
156 }
157 /**
158 * Returns if this table needs to be logged
159 *
160 * @return boolean
161 */
162 function getLog() {
163 return self::$_log;
164 }
165 /**
166 * Returns the list of fields that can be imported
167 *
168 * @param bool $prefix
169 *
170 * @return array
171 */
172 static function &import($prefix = false) {
173 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_trackable_url', $prefix, array());
174 return $r;
175 }
176 /**
177 * Returns the list of fields that can be exported
178 *
179 * @param bool $prefix
180 *
181 * @return array
182 */
183 static function &export($prefix = false) {
184 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_trackable_url', $prefix, array());
185 return $r;
186 }
187 }