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