]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DynamicFields/FieldsMetaData.php
Release 6.5.0
[Github/sugarcrm.git] / modules / DynamicFields / FieldsMetaData.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41
42
43
44
45
46
47
48
49
50 class FieldsMetaData extends SugarBean {
51         // database table columns
52         var $id;
53         var $name;
54         var $vname;
55         var $custom_module;
56         var $type;
57         var $len;
58         var $required;
59         var $default_value;
60         var $deleted;
61         var $ext1;
62         var $ext2;
63         var $ext3;
64         var $audited;
65     var $duplicate_merge;
66     var $reportable;
67         var $required_fields =  array("name"=>1, "date_start"=>2, "time_start"=>3,);
68
69         var $table_name = 'fields_meta_data';
70         var $object_name = 'FieldsMetaData';
71         var $module_dir = 'DynamicFields';
72         var $column_fields = array(
73                 'id',
74                 'name',
75                 'vname',
76                 'custom_module',
77                 'type',
78                 'len',
79                 'required',
80                 'default_value',
81                 'deleted',
82                 'ext1',
83                 'ext2',
84                 'ext3',
85                 'audited',
86                 'massupdate',
87         'duplicate_merge',
88         'reportable',
89         );
90
91         var $list_fields = array(
92                 'id',
93                 'name',
94                 'vname',
95                 'type',
96                 'len',
97                 'required',
98                 'default_value',
99                 'audited',
100                 'massupdate',
101         'duplicate_merge',
102         'reportable',
103         );
104
105         var $field_name_map;
106         var $new_schema = true;
107
108         //////////////////////////////////////////////////////////////////
109         // METHODS
110         //////////////////////////////////////////////////////////////////
111
112         function FieldsMetaData()
113         {
114                 parent::SugarBean();
115                 $this->disable_row_level_security = true;
116         }
117         
118         function mark_deleted($id)
119         {
120                 $query = "DELETE FROM $this->table_name WHERE  id='$id'";
121                 $this->db->query($query, true,"Error deleting record: ");
122                 $this->mark_relationships_deleted($id);
123
124         }
125         
126         function get_list_view_data(){
127             $data = parent::get_list_view_data();
128             $data['VNAME'] = translate($this->vname, $this->custom_module);
129             $data['NAMELINK'] = '<input class="checkbox" type="checkbox" name="remove[]" value="' . $this->id . '">&nbsp;&nbsp;<a href="index.php?module=Studio&action=wizard&wizard=EditCustomFieldsWizard&option=EditCustomField&record=' . $this->id . '" >';
130             return $data;
131         }
132
133
134         function get_summary_text()
135         {
136                 return $this->name;
137         }
138 }
139 ?>