]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/javascript.php
Release 6.3.0
[Github/sugarcrm.git] / include / javascript / javascript.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-2011 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  * Description:  Creates the runtime database connection.
41  ********************************************************************************/
42 class javascript{
43         var $formname = 'form';
44         var $script = '';
45         var $sugarbean = null;
46         function setFormName($name){
47                 $this->formname = $name;
48         }
49
50         function javascript(){
51                 global $app_strings, $current_user, $sugar_config;
52
53         // Bug 24730 - default initialize the bean object in case we never set it to the current bean object
54                 $this->sugarbean = new stdClass;
55                 $this->sugarbean->field_name_map = array();
56                 $this->sugarbean->module_dir = '';
57         }
58
59         function setSugarBean($sugar){
60                 $this->sugarbean = $sugar;
61         }
62
63         function addRequiredFields($prefix=''){
64                         if(isset($this->sugarbean->required_fields)){
65                                 foreach($this->sugarbean->required_fields as $field=>$value){
66                                         $this->addField($field,'true', $prefix);
67                                 }
68                         }
69         }
70
71     function addSpecialField($dispField, $realField, $type, $required, $prefix = '') {
72        if (isset($this->sugarbean->field_name_map[$realField]['vname'])) {
73         $this->addFieldGeneric($dispField, 'date', $this->sugarbean->field_name_map[$realField]['vname'], $required, $prefix );
74        }
75     }
76
77         function addField($field,$required, $prefix='', $displayField='', $translate = false){
78                 if ($field == "id") return;
79         if(isset($this->sugarbean->field_name_map[$field]['vname'])){
80             $vname = $this->sugarbean->field_name_map[$field]['vname'];
81             if ( $translate )
82                 $vname = $this->buildStringToTranslateInSmarty($this->sugarbean->field_name_map[$field]['vname']);
83                         if(empty($required)){
84                                 if(isset($this->sugarbean->field_name_map[$field]['required']) && $this->sugarbean->field_name_map[$field]['required']){
85                                         $required = 'true';
86                                 }else{
87                                         $required = 'false';
88                                 }
89                                 if(isset($this->sugarbean->required_fields[$field]) && $this->sugarbean->required_fields[$field]){
90                                         $required = 'true';
91                                 }
92                                 if($field == 'id'){
93                                         $required = 'false';
94                                 }
95
96                         }
97                         if(isset($this->sugarbean->field_name_map[$field]['validation'])){
98                                 switch($this->sugarbean->field_name_map[$field]['validation']['type']){
99                                         case 'range':
100                                                 $min = 0;
101                                                 $max = 100;
102                                                 if(isset($this->sugarbean->field_name_map[$field]['validation']['min'])){
103                                                         $min = $this->sugarbean->field_name_map[$field]['validation']['min'];
104                                                 }
105                                                 if(isset($this->sugarbean->field_name_map[$field]['validation']['max'])){
106                                                         $max = $this->sugarbean->field_name_map[$field]['validation']['max'];
107                                                 }
108                                                 if($min > $max){
109                                                         $max = $min;
110                                                 }
111                                                 if(!empty($displayField)){
112                                                         $dispField = $displayField;
113                                                 }
114                                                 else{
115                                                         $dispField = $field;
116                                                 }
117                                                 $this->addFieldRange($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $min, $max );
118                                                 break;
119                                         case 'isbefore':
120                                                 $compareTo = $this->sugarbean->field_name_map[$field]['validation']['compareto'];
121                                                 if(!empty($displayField)){
122                                                         $dispField = $displayField;
123                                                 }
124                                                 else{
125                                                         $dispField = $field;
126                                                 }
127                                                 if(!empty($this->sugarbean->field_name_map[$field]['validation']['blank']) && $this->sugarbean->field_name_map[$field]['validation']['blank'])
128                                                 $this->addFieldDateBeforeAllowBlank($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $compareTo );
129                                                 else $this->addFieldDateBefore($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $compareTo );
130                                                 break;
131                                         default:
132                                                 if(!empty($displayField)){
133                                                         $dispField = $displayField;
134                                                 }
135                                                 else{
136                                                         $dispField = $field;
137                                                 }
138
139                                                 $type = (!empty($this->sugarbean->field_name_map[$field]['custom_type']))?$this->sugarbean->field_name_map[$field]['custom_type']:$this->sugarbean->field_name_map[$field]['type'];
140
141                                                 $this->addFieldGeneric($dispField,$type,$vname,$required,$prefix );
142                                                 break;
143                                 }
144                         }else{
145                                 if(!empty($displayField)){
146                                                         $dispField = $displayField;
147                                                 }
148                                                 else{
149                                                         $dispField = $field;
150                                                 }
151                                         $type = (!empty($this->sugarbean->field_name_map[$field]['custom_type']))?$this->sugarbean->field_name_map[$field]['custom_type']:$this->sugarbean->field_name_map[$field]['type'];
152                                         if(!empty($this->sugarbean->field_name_map[$dispField]['isMultiSelect']))$dispField .='[]';
153                                         $this->addFieldGeneric($dispField,$type,$vname,$required,$prefix );
154                         }
155                 }else{
156                         $GLOBALS['log']->debug('No VarDef Label For ' . $field . ' in module ' . $this->sugarbean->module_dir );
157                 }
158
159         }
160
161
162         function stripEndColon($modString)
163         {
164                 if(substr($modString, -1, 1) == ":")
165                         $modString = substr($modString, 0, (strlen($modString) - 1));
166                 if(substr($modString, -2, 2) == ": ")
167                         $modString = substr($modString, 0, (strlen($modString) - 2));
168                 return $modString;
169
170         }
171
172         function addFieldGeneric($field, $type,$displayName, $required, $prefix=''){
173                 $this->script .= "addToValidate('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
174                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "' );\n";
175         }
176
177         function addFieldRange($field, $type,$displayName, $required, $prefix='',$min, $max){
178                 $this->script .= "addToValidateRange('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
179                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', $min, $max );\n";
180         }
181
182         function addFieldIsValidDate($field, $type, $displayName, $msg, $required, $prefix='') {
183                 $name = $prefix.$field;
184                 $req = $this->getRequiredString($required);
185                 $this->script .= "addToValidateIsValidDate('{$this->formname}', '{$name}', '{$type}', {$req}, '{$msg}');\n";
186         }
187
188         function addFieldIsValidTime($field, $type, $displayName, $msg, $required, $prefix='') {
189                 $name = $prefix.$field;
190                 $req = $this->getRequiredString($required);
191                 $this->script .= "addToValidateIsValidTime('{$this->formname}', '{$name}', '{$type}', {$req}, '{$msg}');\n";
192         }
193
194         function addFieldDateBefore($field, $type,$displayName, $required, $prefix='',$compareTo){
195                 $this->script .= "addToValidateDateBefore('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
196                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
197         }
198
199         function addFieldDateBeforeAllowBlank($field, $type, $displayName, $required, $prefix='', $compareTo, $allowBlank='true'){
200                 $this->script .= "addToValidateDateBeforeAllowBlank('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
201                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo', '$allowBlank' );\n";
202         }
203
204         function addToValidateBinaryDependency($field, $type, $displayName, $required, $prefix='',$compareTo){
205                 $this->script .= "addToValidateBinaryDependency('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
206                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
207         }
208
209     function addToValidateComparison($field, $type, $displayName, $required, $prefix='',$compareTo){
210         $this->script .= "addToValidateComparison('".$this->formname."', '".$prefix.$field."', '".$type . "', {$this->getRequiredString($required)},'"
211                        . $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
212     }
213
214     function addFieldIsInArray($field, $type, $displayName, $required, $prefix, $arr, $operator){
215         $name = $prefix.$field;
216                 $req = $this->getRequiredString($required);
217                 $json = getJSONobj();
218                 $arr = $json->encode($arr);
219                 $this->script .= "addToValidateIsInArray('{$this->formname}', '{$name}', '{$type}', {$req}, '".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir))."', '{$arr}', '{$operator}');\n";
220     }
221
222         function addAllFields($prefix,$skip_fields=null, $translate = false){
223                 if (!isset($skip_fields))
224                 {
225                         $skip_fields = array();
226                 }
227                 foreach($this->sugarbean->field_name_map as $field=>$value){
228                         if (!isset($skip_fields[$field]))
229                         {
230                             if(isset($value['type']) && ($value['type'] == 'datetimecombo' || $value['type'] == 'datetime')) {
231                                 $isRequired = (isset($value['required']) && $value['required']) ? 'true' : 'false';
232                                 $this->addSpecialField($value['name'] . '_date', $value['name'], 'datetime', $isRequired);
233                     if ($value['type'] != 'link'  && isset($this->sugarbean->field_name_map[$field]['validation'])) {
234                         //datetime should also support the isbefore or other type of validate
235                         $this->addField($field, '', $prefix,'',$translate);
236                     }
237                             } else if (isset($value['type'])) {
238                                         if ($value['type'] != 'link') {
239                                                 $this->addField($field, '', $prefix,'',$translate);
240                                         }
241                                 }
242                         }
243                 }
244         }
245
246         function getScript($showScriptTag = true, $clearValidateFields = true){
247                 $tempScript = $this->script;
248                 $this->script = "";
249                 if($showScriptTag){
250                         $this->script = "<script type=\"text/javascript\">\n";
251                 }
252
253         if($clearValidateFields){
254             $this->script .= "addForm('{$this->formname}');";
255         }
256   
257                 $this->script .= $tempScript;
258
259                 if($showScriptTag){
260                         $this->script .= "</script>";
261                 }
262                 return $this->script;
263         }
264
265     function buildStringToTranslateInSmarty(
266         $string
267         )
268     {
269         if ( is_array($string) ) {
270             $returnstring = '';
271             foreach ( $string as $astring )
272                 $returnstring .= $this->buildStringToTranslateInSmarty($astring);
273             return $returnstring;
274         }
275         return "{/literal}{sugar_translate label='$string' module='{$this->sugarbean->module_dir}' for_js=true}{literal}";
276     }
277
278     protected function getRequiredString($required)
279     {
280         if (is_string($required) && strtolower($required) == "false")
281         {
282             return "false";
283         }
284         return empty($required) ? "false" : "true";
285     }
286 }
287 ?>