CRM-19925 Updated DAO files
[civicrm-core.git] / CRM / Core / DAO / SystemLog.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/Core/SystemLog.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:593327a2dbc09824972cc4d44fbd6893)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Core_DAO_SystemLog constructor.
39 */
40 class CRM_Core_DAO_SystemLog extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_system_log';
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 * Primary key ID
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Standardized message
61 *
62 * @var string
63 */
64 public $message;
65 /**
66 * JSON encoded data
67 *
68 * @var longtext
69 */
70 public $context;
71 /**
72 * error level per PSR3
73 *
74 * @var string
75 */
76 public $level;
77 /**
78 * Timestamp of when event occurred.
79 *
80 * @var timestamp
81 */
82 public $timestamp;
83 /**
84 * Optional Contact ID that created the log. Not an FK as we keep this regardless
85 *
86 * @var int unsigned
87 */
88 public $contact_id;
89 /**
90 * Optional Name of logging host
91 *
92 * @var string
93 */
94 public $hostname;
95 /**
96 * Class constructor.
97 */
98 function __construct() {
99 $this->__table = 'civicrm_system_log';
100 parent::__construct();
101 }
102 /**
103 * Returns all the column names of this table
104 *
105 * @return array
106 */
107 static function &fields() {
108 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
109 Civi::$statics[__CLASS__]['fields'] = array(
110 'id' => array(
111 'name' => 'id',
112 'type' => CRM_Utils_Type::T_INT,
113 'title' => ts('System Log ID') ,
114 'description' => 'Primary key ID',
115 'required' => true,
116 'table_name' => 'civicrm_system_log',
117 'entity' => 'SystemLog',
118 'bao' => 'CRM_Core_DAO_SystemLog',
119 ) ,
120 'message' => array(
121 'name' => 'message',
122 'type' => CRM_Utils_Type::T_STRING,
123 'title' => ts('System Log Message') ,
124 'description' => 'Standardized message',
125 'required' => true,
126 'maxlength' => 128,
127 'size' => CRM_Utils_Type::HUGE,
128 'table_name' => 'civicrm_system_log',
129 'entity' => 'SystemLog',
130 'bao' => 'CRM_Core_DAO_SystemLog',
131 ) ,
132 'context' => array(
133 'name' => 'context',
134 'type' => CRM_Utils_Type::T_LONGTEXT,
135 'title' => ts('Detailed Log Data') ,
136 'description' => 'JSON encoded data',
137 'table_name' => 'civicrm_system_log',
138 'entity' => 'SystemLog',
139 'bao' => 'CRM_Core_DAO_SystemLog',
140 ) ,
141 'level' => array(
142 'name' => 'level',
143 'type' => CRM_Utils_Type::T_STRING,
144 'title' => ts('Detailed Log Data') ,
145 'description' => 'error level per PSR3',
146 'maxlength' => 9,
147 'size' => CRM_Utils_Type::TWELVE,
148 'default' => 'info',
149 'table_name' => 'civicrm_system_log',
150 'entity' => 'SystemLog',
151 'bao' => 'CRM_Core_DAO_SystemLog',
152 ) ,
153 'timestamp' => array(
154 'name' => 'timestamp',
155 'type' => CRM_Utils_Type::T_TIMESTAMP,
156 'title' => ts('Log Timestamp') ,
157 'description' => 'Timestamp of when event occurred.',
158 'default' => 'CURRENT_TIMESTAMP',
159 'table_name' => 'civicrm_system_log',
160 'entity' => 'SystemLog',
161 'bao' => 'CRM_Core_DAO_SystemLog',
162 ) ,
163 'contact_id' => array(
164 'name' => 'contact_id',
165 'type' => CRM_Utils_Type::T_INT,
166 'title' => ts('Log Contact ID') ,
167 'description' => 'Optional Contact ID that created the log. Not an FK as we keep this regardless',
168 'table_name' => 'civicrm_system_log',
169 'entity' => 'SystemLog',
170 'bao' => 'CRM_Core_DAO_SystemLog',
171 ) ,
172 'hostname' => array(
173 'name' => 'hostname',
174 'type' => CRM_Utils_Type::T_STRING,
175 'title' => ts('Log Host') ,
176 'description' => 'Optional Name of logging host',
177 'maxlength' => 128,
178 'size' => CRM_Utils_Type::HUGE,
179 'table_name' => 'civicrm_system_log',
180 'entity' => 'SystemLog',
181 'bao' => 'CRM_Core_DAO_SystemLog',
182 ) ,
183 );
184 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
185 }
186 return Civi::$statics[__CLASS__]['fields'];
187 }
188 /**
189 * Return a mapping from field-name to the corresponding key (as used in fields()).
190 *
191 * @return array
192 * Array(string $name => string $uniqueName).
193 */
194 static function &fieldKeys() {
195 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
196 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
197 }
198 return Civi::$statics[__CLASS__]['fieldKeys'];
199 }
200 /**
201 * Returns the names of this table
202 *
203 * @return string
204 */
205 static function getTableName() {
206 return self::$_tableName;
207 }
208 /**
209 * Returns if this table needs to be logged
210 *
211 * @return boolean
212 */
213 function getLog() {
214 return self::$_log;
215 }
216 /**
217 * Returns the list of fields that can be imported
218 *
219 * @param bool $prefix
220 *
221 * @return array
222 */
223 static function &import($prefix = false) {
224 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'system_log', $prefix, array());
225 return $r;
226 }
227 /**
228 * Returns the list of fields that can be exported
229 *
230 * @param bool $prefix
231 *
232 * @return array
233 */
234 static function &export($prefix = false) {
235 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'system_log', $prefix, array());
236 return $r;
237 }
238 }