Merge pull request #8916 from cividesk/CRM-19256-4.7
[civicrm-core.git] / CRM / Core / DAO / Component.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/Component.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:139dcaac103194eb41070ed8d7753d90)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 /**
38 * CRM_Core_DAO_Component constructor.
39 */
40 class CRM_Core_DAO_Component extends CRM_Core_DAO {
41 /**
42 * Static instance to hold the table name.
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_component';
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 * Component ID
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Name of the component.
61 *
62 * @var string
63 */
64 public $name;
65 /**
66 * Path to components main directory in a form of a class
67 namespace.
68 *
69 * @var string
70 */
71 public $namespace;
72 /**
73 * Class constructor.
74 */
75 function __construct() {
76 $this->__table = 'civicrm_component';
77 parent::__construct();
78 }
79 /**
80 * Returns all the column names of this table
81 *
82 * @return array
83 */
84 static function &fields() {
85 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
86 Civi::$statics[__CLASS__]['fields'] = array(
87 'id' => array(
88 'name' => 'id',
89 'type' => CRM_Utils_Type::T_INT,
90 'description' => 'Component ID',
91 'required' => true,
92 ) ,
93 'name' => array(
94 'name' => 'name',
95 'type' => CRM_Utils_Type::T_STRING,
96 'title' => ts('Component name') ,
97 'description' => 'Name of the component.',
98 'required' => true,
99 'maxlength' => 64,
100 'size' => CRM_Utils_Type::BIG,
101 ) ,
102 'namespace' => array(
103 'name' => 'namespace',
104 'type' => CRM_Utils_Type::T_STRING,
105 'title' => ts('Namespace reserved for component.') ,
106 'description' => 'Path to components main directory in a form of a class
107 namespace.
108 ',
109 'maxlength' => 128,
110 'size' => CRM_Utils_Type::HUGE,
111 ) ,
112 );
113 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
114 }
115 return Civi::$statics[__CLASS__]['fields'];
116 }
117 /**
118 * Return a mapping from field-name to the corresponding key (as used in fields()).
119 *
120 * @return array
121 * Array(string $name => string $uniqueName).
122 */
123 static function &fieldKeys() {
124 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
125 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
126 }
127 return Civi::$statics[__CLASS__]['fieldKeys'];
128 }
129 /**
130 * Returns the names of this table
131 *
132 * @return string
133 */
134 static function getTableName() {
135 return self::$_tableName;
136 }
137 /**
138 * Returns if this table needs to be logged
139 *
140 * @return boolean
141 */
142 function getLog() {
143 return self::$_log;
144 }
145 /**
146 * Returns the list of fields that can be imported
147 *
148 * @param bool $prefix
149 *
150 * @return array
151 */
152 static function &import($prefix = false) {
153 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'component', $prefix, array());
154 return $r;
155 }
156 /**
157 * Returns the list of fields that can be exported
158 *
159 * @param bool $prefix
160 *
161 * @return array
162 */
163 static function &export($prefix = false) {
164 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'component', $prefix, array());
165 return $r;
166 }
167 }