]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/javascript.php
Release 6.1.4
[Github/sugarcrm.git] / include / javascript / javascript.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM 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         $this->addFieldGeneric($dispField, 'date', $this->sugarbean->field_name_map[$realField]['vname'], $required, $prefix );
73     }
74     
75         function addField($field,$required, $prefix='', $displayField='', $translate = false){
76                 if(isset($this->sugarbean->field_name_map[$field]['vname'])){
77             $vname = $this->sugarbean->field_name_map[$field]['vname'];
78             if ( $translate )
79                 $vname = $this->buildStringToTranslateInSmarty($this->sugarbean->field_name_map[$field]['vname']);
80                         if(empty($required)){
81                                 if(isset($this->sugarbean->field_name_map[$field]['required']) && $this->sugarbean->field_name_map[$field]['required']){
82                                         $required = 'true';
83                                 }else{
84                                         $required = 'false';    
85                                 }
86                                 if(isset($this->sugarbean->required_fields[$field]) && $this->sugarbean->required_fields[$field]){
87                                         $required = 'true';
88                                 }
89                                 if($field == 'id'){
90                                         $required = 'false';    
91                                 }       
92                                                 
93                         }
94                         if(isset($this->sugarbean->field_name_map[$field]['validation'])){
95                                 switch($this->sugarbean->field_name_map[$field]['validation']['type']){
96                                         case 'range': 
97                                                 $min = 0;
98                                                 $max = 100;
99                                                 if(isset($this->sugarbean->field_name_map[$field]['validation']['min'])){
100                                                         $min = $this->sugarbean->field_name_map[$field]['validation']['min'];
101                                                 }
102                                                 if(isset($this->sugarbean->field_name_map[$field]['validation']['max'])){
103                                                         $max = $this->sugarbean->field_name_map[$field]['validation']['max'];
104                                                 }
105                                                 if($min > $max){
106                                                         $max = $min;
107                                                 }
108                                                 if(!empty($displayField)){
109                                                         $dispField = $displayField;
110                                                 }
111                                                 else{
112                                                         $dispField = $field;
113                                                 }
114                                                 $this->addFieldRange($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $min, $max );        
115                                                 break;
116                                         case 'isbefore':
117                                                 $compareTo = $this->sugarbean->field_name_map[$field]['validation']['compareto'];
118                                                 if(!empty($displayField)){
119                                                         $dispField = $displayField;
120                                                 }
121                                                 else{
122                                                         $dispField = $field;
123                                                 }
124                                                 if(!empty($this->sugarbean->field_name_map[$field]['validation']['blank']) && $this->sugarbean->field_name_map[$field]['validation']['blank']) 
125                                                 $this->addFieldDateBeforeAllowBlank($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $compareTo );
126                                                 else $this->addFieldDateBefore($dispField,$this->sugarbean->field_name_map[$field]['type'],$vname,$required,$prefix, $compareTo );
127                                                 break;
128                                         default: 
129                                                 if(!empty($displayField)){
130                                                         $dispField = $displayField;
131                                                 }
132                                                 else{
133                                                         $dispField = $field;
134                                                 }
135                                                 
136                                                 $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'];
137                                                 
138                                                 $this->addFieldGeneric($dispField,$type,$vname,$required,$prefix );     
139                                                 break;
140                                 }
141                         }else{
142                                 if(!empty($displayField)){
143                                                         $dispField = $displayField;
144                                                 }
145                                                 else{
146                                                         $dispField = $field;
147                                                 }
148                                         $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'];
149                                         if(!empty($this->sugarbean->field_name_map[$dispField]['isMultiSelect']))$dispField .='[]';
150                                         $this->addFieldGeneric($dispField,$type,$vname,$required,$prefix );
151                         }
152                 }else{
153                         $GLOBALS['log']->debug('No VarDef Label For ' . $field . ' in module ' . $this->sugarbean->module_dir );        
154                 }
155
156         }
157
158
159         function stripEndColon($modString)
160         {
161                 if(substr($modString, -1, 1) == ":")
162                         $modString = substr($modString, 0, (strlen($modString) - 1));
163                 if(substr($modString, -2, 2) == ": ")
164                         $modString = substr($modString, 0, (strlen($modString) - 2));
165                 return $modString;
166                 
167         }
168         
169         function addFieldGeneric($field, $type,$displayName, $required, $prefix=''){
170                 $this->script .= "addToValidate('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'". $this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "' );\n";
171         }
172
173         function addFieldRange($field, $type,$displayName, $required, $prefix='',$min, $max){
174                 $this->script .= "addToValidateRange('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', $min, $max );\n";
175         }
176         
177         function addFieldIsValidDate($field, $type, $displayName, $msg, $required, $prefix='') {
178                 $name = $prefix.$field;
179                 $req = ($required) ? 'true' : 'false';
180                 $this->script .= "addToValidateIsValidDate('{$this->formname}', '{$name}', '{$type}', {$req}, '{$msg}');\n";
181         }
182
183         function addFieldIsValidTime($field, $type, $displayName, $msg, $required, $prefix='') {
184                 $name = $prefix.$field;
185                 $req = ($required) ? 'true' : 'false';
186                 $this->script .= "addToValidateIsValidTime('{$this->formname}', '{$name}', '{$type}', {$req}, '{$msg}');\n";
187         }
188
189         function addFieldDateBefore($field, $type,$displayName, $required, $prefix='',$compareTo){
190                 $this->script .= "addToValidateDateBefore('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
191         }
192
193         function addFieldDateBeforeAllowBlank($field, $type, $displayName, $required, $prefix='', $compareTo, $allowBlank='true'){
194                 $this->script .= "addToValidateDateBeforeAllowBlank('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo', '$allowBlank' );\n";
195         }
196         
197         function addToValidateBinaryDependency($field, $type, $displayName, $required, $prefix='',$compareTo){
198                 $this->script .= "addToValidateBinaryDependency('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
199         }
200     
201     function addToValidateComparison($field, $type, $displayName, $required, $prefix='',$compareTo){
202         $this->script .= "addToValidateComparison('".$this->formname."', '".$prefix.$field."', '".$type . "', $required,'".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir)) . "', '$compareTo' );\n";
203     }
204     
205     function addFieldIsInArray($field, $type, $displayName, $required, $prefix, $arr, $operator){
206         $name = $prefix.$field;
207                 $req = ($required) ? 'true' : 'false';
208                 $json = getJSONobj();
209                 $arr = $json->encode($arr);
210                 $this->script .= "addToValidateIsInArray('{$this->formname}', '{$name}', '{$type}', {$req}, '".$this->stripEndColon(translate($displayName,$this->sugarbean->module_dir))."', '{$arr}', '{$operator}');\n";
211     }
212
213         function addAllFields($prefix,$skip_fields=null, $translate = false){
214                 if (!isset($skip_fields))
215                 {
216                         $skip_fields = array();
217                 }
218                 foreach($this->sugarbean->field_name_map as $field=>$value){
219                         if (!isset($skip_fields[$field]))
220                         {
221                             if(isset($value['type']) && ($value['type'] == 'datetimecombo' || $value['type'] == 'datetime')) {
222                                 $isRequired = (isset($value['required']) && $value['required']) ? 'true' : 'false';
223                                 $this->addSpecialField($value['name'] . '_date', $value['name'], 'datetime', $isRequired);
224                     if ($value['type'] != 'link'  && isset($this->sugarbean->field_name_map[$field]['validation'])) {
225                         //datetime should also support the isbefore or other type of validate
226                         $this->addField($field, '', $prefix,'',$translate);
227                     }
228                             } else if (isset($value['type'])) {
229                                         if ($value['type'] != 'link') {                                         
230                                                 $this->addField($field, '', $prefix,'',$translate);
231                                         }
232                                 }
233                         }
234                 }
235         }
236
237         function getScript($showScriptTag = true){
238                 $tempScript = $this->script;
239                 $this->script = "";
240                 if($showScriptTag){
241                         $this->script = "<script type=\"text/javascript\">\n";
242                 }
243                 
244                 $this->script .= $tempScript;
245
246                 if($showScriptTag){
247                         $this->script .= "</script>";
248                 }
249                 return $this->script;
250         }
251     
252     function buildStringToTranslateInSmarty(
253         $string
254         )
255     {
256         if ( is_array($string) ) {
257             $returnstring = '';
258             foreach ( $string as $astring )
259                 $returnstring .= $this->buildStringToTranslateInSmarty($astring);
260             return $returnstring;
261         }
262             
263         return "{/literal}{sugar_translate label='$string' module='{$this->sugarbean->module_dir}' for_js=true}{literal}";
264     }
265 }
266 ?>