]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/EditView/EditView2.php
Release 6.3.1
[Github/sugarcrm.git] / include / EditView / EditView2.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37
38
39 require_once('include/TemplateHandler/TemplateHandler.php');
40 require_once('include/EditView/SugarVCR.php');
41
42 class EditView
43 {
44     public $th;
45     public $tpl;
46     public $notes;
47     public $id;
48     public $metadataFile;
49     public $headerTpl;
50     public $footerTpl;
51     public $returnAction;
52     public $returnModule;
53     public $returnId;
54     public $isDuplicate;
55     public $focus;
56     public $module;
57     public $fieldDefs;
58     public $sectionPanels;
59     public $view = 'EditView';
60     public $formatFields = true;
61     public $showDetailData = true;
62     public $showVCRControl = true;
63     public $showSectionPanelsTitles = true;
64     public $quickSearchCode;
65     public $ss;
66     public $offset = 0;
67     public $populateBean = true;
68     public $moduleTitleKey;
69     public $viewObject = null;
70     public $formName = '';
71
72     /**
73      * EditView constructor
74      * This is the EditView constructor responsible for processing the new
75      * Meta-Data framework
76      *
77      * @param $module String value of module this Edit view is for
78      * @param $focus An empty sugarbean object of module
79      * @param $id The record id to retrieve and populate data for
80      * @param $metadataFile String value of file location to use in overriding default metadata file
81      * @param tpl String value of file location to use in overriding default Smarty template
82      * @param createFocus bool value to tell whether to create a new bean if we do not have one with an id, this is used from ConvertLead
83      *
84      */
85     function setup($module, $focus = null, $metadataFile = null, $tpl = 'include/EditView/EditView.tpl', $createFocus = true)
86     {
87         $this->th = new TemplateHandler();
88         $this->th->ss =& $this->ss;
89         $this->tpl = $tpl;
90         $this->module = $module;
91         $this->focus = $focus;
92
93         //this logic checks if the focus has an id and if it does not then it will create a new instance of the focus bean
94         //but in convert lead we do not want to create a new instance and do not want to populate id.
95         if ($createFocus)
96         {
97             $this->createFocus();
98         }
99
100         if (empty($GLOBALS['sugar_config']['showDetailData']))
101         {
102             $this->showDetailData = false;
103         }
104         $this->metadataFile = $metadataFile;
105
106         if (isset($GLOBALS['sugar_config']['disable_vcr']))
107         {
108            $this->showVCRControl = !$GLOBALS['sugar_config']['disable_vcr'];
109         }
110
111         if (!empty($this->metadataFile) && file_exists($this->metadataFile))
112         {
113             include($this->metadataFile);
114         }
115         else
116         {
117             //If file doesn't exist we create a best guess
118             if (!file_exists("modules/$this->module/metadata/editviewdefs.php")
119                 && file_exists("modules/$this->module/EditView.html"))
120             {
121                 require_once('include/SugarFields/Parsers/EditViewMetaParser.php');
122
123                 global $dictionary;
124
125                 $htmlFile = "modules/" . $this->module . "/EditView.html";
126                 $parser = new EditViewMetaParser();
127                 if (!file_exists('modules/'.$this->module.'/metadata'))
128                 {
129                    sugar_mkdir('modules/'.$this->module.'/metadata');
130                 }
131
132                 $fp = sugar_fopen('modules/'.$this->module.'/metadata/editviewdefs.php', 'w');
133                 fwrite($fp, $parser->parse($htmlFile, $dictionary[$focus->object_name]['fields'], $this->module));
134                 fclose($fp);
135             }
136
137             //Flag an error... we couldn't create the best guess meta-data file
138             if (!file_exists("modules/$this->module/metadata/editviewdefs.php"))
139             {
140                 global $app_strings;
141
142                 $error = str_replace("[file]", "modules/$this->module/metadata/editviewdefs.php", $app_strings['ERR_CANNOT_CREATE_METADATA_FILE']);
143                 $GLOBALS['log']->fatal($error);
144                 echo $error;
145                 die();
146             }
147
148             require_once("modules/$this->module/metadata/editviewdefs.php");
149         }
150
151         $this->defs = $viewdefs[$this->module][$this->view];
152         $this->isDuplicate = isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true' && $this->focus->aclAccess('edit');
153     }
154
155     function createFocus()
156     {
157         global $beanList, $beanFiles;
158
159         if (empty($beanList[$this->module])) return;
160         if(!$this->focus )
161         {
162            $bean = $beanList[$this->module];
163            require_once($beanFiles[$bean]);
164            $obj = new $bean();
165            $this->focus = $obj;
166         }
167
168         //If there is no idea, assume we are creating a new instance
169         //and call the fill_in_additional_detail_fields where initialization
170         //code has been moved to
171         if (empty($this->focus->id))
172         {
173             global $current_user;
174
175             $this->focus->fill_in_additional_detail_fields();
176             $this->focus->assigned_user_id = $current_user->id;
177         }
178     }
179
180     function populateBean()
181     {
182         if (!empty($_REQUEST['record']) && $this->populateBean)
183         {
184            global $beanList;
185
186            $bean = $beanList[$this->module];
187            $obj = new $bean();
188            $this->focus = $obj->retrieve($_REQUEST['record']);
189         }
190         else
191         {
192            $GLOBALS['log']->debug("Unable to populate bean, no record parameter found");
193         }
194     }
195
196     /**
197      * enableFormatting
198      * This method is used to manually turn on/off the field formatting
199      * @param $format boolean value to turn on/off field formatting
200      */
201     function enableFormatting($format = true)
202     {
203         $this->formatFields = $format;
204     }
205
206     /**
207      * Enter description here ...
208      */
209     function requiredFirst()
210     {
211         $panels = array('required'=>array());
212         $reqCol = -1;
213         $reqRow = 0;
214         foreach($this->defs['panels'] as $key=>$p)
215         {
216             foreach ($p as $row=>$rowDef)
217             {
218                 foreach($rowDef as $col => $colDef)
219                 {
220                     $field = (is_array($p[$row][$col])) ? $p[$row][$col]['name'] : $p[$row][$col];
221                     if ((!empty($this->focus->field_defs[$field])
222                         && !empty($this->focus->field_defs[$field]['required']))
223                             || (!empty($p[$row][$col]['displayParams']['required'])))
224                     {
225                         $reqCol++;
226                         if ($reqCol == $this->defs['templateMeta']['maxColumns'])
227                         {
228                             $reqCol = -1;
229                             $reqRow++;
230                         }
231
232                         $panels['required'][$reqRow][$reqCol] = $p[$row][$col];
233                     }
234                     else
235                     {
236                         $panels[$key][$row][$col] = $p[$row][$col];
237                     }
238                 }
239             }
240         }
241
242         $this->defs['panels'] = $panels;
243     }
244
245     function render()
246     {
247         $totalWidth = 0;
248         foreach ($this->defs['templateMeta']['widths'] as $col => $def) {
249             foreach ($def as $k => $value) {
250                 $totalWidth += $value;
251             }
252         }
253
254         // calculate widths
255         foreach ($this->defs['templateMeta']['widths'] as $col => $def) {
256             foreach ($def as $k => $value) {
257                 $this->defs['templateMeta']['widths'][$col][$k] = round($value / ($totalWidth / 100), 2);
258             }
259         }
260
261         $this->sectionPanels = array();
262         $this->sectionLabels = array();
263         if (!empty($this->defs['panels']) && count($this->defs['panels']) > 0)
264         {
265            $keys = array_keys($this->defs['panels']);
266            if (is_numeric($keys[0]))
267            {
268                $defaultPanel = $this->defs['panels'];
269                unset($this->defs['panels']); //blow away current value
270                $this->defs['panels'][''] = $defaultPanel;
271            }
272         }
273
274         if ($this->view == 'EditView' && !empty($GLOBALS['sugar_config']['forms']['requireFirst'])){
275             $this->requiredFirst();
276         }
277
278         $maxColumns = isset($this->defs['templateMeta']['maxColumns']) ? $this->defs['templateMeta']['maxColumns'] : 2;
279         $panelCount = 0;
280         static $itemCount = 100; //Start the generated tab indexes at 100 so they don't step on custom ones.
281
282         /* loop all the panels */
283         foreach ($this->defs['panels'] as $key=>$p)
284         {
285             $panel = array();
286
287             if (!is_array($this->defs['panels'][$key])) {
288                $this->sectionPanels[strtoupper($key)] = $p;
289             }
290             else
291             {
292                 foreach ($p as $row=>$rowDef)
293                 {
294                     $columnsInRows = count($rowDef);
295                     $columnsUsed = 0;
296                     foreach ($rowDef as $col => $colDef)
297                     {
298                         $panel[$row][$col] = is_array($p[$row][$col])
299                             ? array('field' => $p[$row][$col])
300                             : array('field' => array('name'=>$p[$row][$col]));
301
302                         $panel[$row][$col]['field']['tabindex'] =
303                             (isset($p[$row][$col]['tabindex']) && is_numeric($p[$row][$col]['tabindex']))
304                                 ? $p[$row][$col]['tabindex']
305                                 : $itemCount;
306
307                         if ($columnsInRows < $maxColumns)
308                         {
309                             if ($col == $columnsInRows - 1)
310                             {
311                                 $panel[$row][$col]['colspan'] = 2 * $maxColumns - ($columnsUsed + 1);
312                             }
313                             else
314                             {
315                                 $panel[$row][$col]['colspan'] = floor(($maxColumns * 2 - $columnsInRows) / $columnsInRows);
316                                 $columnsUsed = $panel[$row][$col]['colspan'];
317                             }
318                         }
319
320                         //Set address types to have colspan value of 2 if colspan is not already defined
321                         if (is_array($colDef) && !empty($colDef['hideLabel']) && !isset($panel[$row][$col]['colspan']))
322                         {
323                             $panel[$row][$col]['colspan'] = 2;
324                         }
325
326                         $itemCount++;
327
328                     }
329                 }
330
331                                 $panel = $this->getPanelWithFillers($panel);
332
333                                 $this->sectionPanels[strtoupper($key)] = $panel;
334                         }
335
336
337                 $panelCount++;
338                 } //foreach
339     }
340
341     /**
342      * Adds fillers to each row if required
343      *
344      * Panel alignment will be off if the panel doesn't have a row with the max column
345      * It will not be aligned to the other panels so we fill out the columns in the last row
346      *
347      * @param array $panel
348      * @return array
349      */
350     protected function getPanelWithFillers($panel)
351     {
352         $addFiller = true;
353         foreach($panel as $row)
354         {
355             if (count($row) == $this->defs['templateMeta']['maxColumns']
356                 || 1 == count($panel))
357             {
358                 $addFiller = false;
359                 break;
360             }
361         }
362
363         if ($addFiller)
364         {
365             $rowCount = count($panel);
366             $filler   = count($panel[$rowCount-1]);
367             while ($filler < $this->defs['templateMeta']['maxColumns'])
368             {
369                 $panel[$rowCount - 1][$filler++] = array('field' => array('name' => ''));
370             }
371         }
372
373         return $panel;
374     }    
375
376     function process($checkFormName = false, $formName = '')
377     {
378         global $mod_strings, $sugar_config, $app_strings, $app_list_strings;
379
380         //the retrieve already did this work;
381         //$this->focus->fill_in_relationship_fields();
382
383         if (!$this->th->checkTemplate($this->module, $this->view, $checkFormName, $formName))
384         {
385             $this->render();
386         }
387
388         if (isset($_REQUEST['offset']))
389         {
390             $this->offset = $_REQUEST['offset'] - 1;
391         }
392
393         if ($this->showVCRControl)
394         {
395             $this->th->ss->assign('PAGINATION', SugarVCR::menu($this->module, $this->offset, $this->focus->is_AuditEnabled(), ($this->view == 'EditView')));
396         }
397
398         if (isset($_REQUEST['return_module'])) $this->returnModule = $_REQUEST['return_module'];
399         if (isset($_REQUEST['return_action'])) $this->returnAction = $_REQUEST['return_action'];
400         if (isset($_REQUEST['return_id'])) $this->returnId = $_REQUEST['return_id'];
401         if (isset($_REQUEST['return_relationship'])) $this->returnRelationship = $_REQUEST['return_relationship'];
402         if (isset($_REQUEST['return_name'])) $this->returnName = $this->getValueFromRequest($_REQUEST, 'return_name' ) ;
403
404         // handle Create $module then Cancel
405         if (empty($this->returnId))
406         {
407             $this->returnAction = 'index';
408         }
409
410         $is_owner = $this->focus->isOwner($GLOBALS['current_user']->id);
411
412         $this->fieldDefs = array();
413         if ($this->focus)
414         {
415             global $current_user;
416
417             if (!empty($this->focus->assigned_user_id))
418             {
419                 $this->focus->assigned_user_name = get_assigned_user_name($this->focus->assigned_user_id);
420             }
421
422
423             foreach ($this->focus->toArray() as $name => $value)
424             {
425                 $valueFormatted = false;
426                 //if ($this->focus->field_defs[$name]['type']=='link')continue;
427
428                 $this->fieldDefs[$name] = (!empty($this->fieldDefs[$name]) && !empty($this->fieldDefs[$name]['value']))
429                     ? array_merge($this->focus->field_defs[$name], $this->fieldDefs[$name])
430                     : $this->focus->field_defs[$name];
431
432                 foreach (array("formula", "default", "comments", "help") as $toEscape)
433                 {
434                     if (!empty($this->fieldDefs[$name][$toEscape]))
435                     {
436                         $this->fieldDefs[$name][$toEscape] = htmlentities($this->fieldDefs[$name][$toEscape], ENT_QUOTES, 'UTF-8');
437                     }
438                 }
439
440                 if (isset($this->fieldDefs[$name]['options']) && isset($app_list_strings[$this->fieldDefs[$name]['options']]))
441                 {
442                     $this->fieldDefs[$name]['options'] = $app_list_strings[$this->fieldDefs[$name]['options']];
443                     if(isset($GLOBALS['sugar_config']['enable_autocomplete']) && $GLOBALS['sugar_config']['enable_autocomplete'] == true){
444                                                 $this->fieldDefs[$name]['autocomplete'] = true;
445                                 $this->fieldDefs[$name]['autocomplete_options'] = $this->fieldDefs[$name]['options']; // we need the name for autocomplete
446                                         } else {
447                         $this->fieldDefs[$name]['autocomplete'] = false;
448                    }
449                 }
450
451                         if(isset($this->fieldDefs[$name]['function'])) {
452                                 $function = $this->fieldDefs[$name]['function'];
453                                 if(is_array($function) && isset($function['name'])){
454                                         $function = $this->fieldDefs[$name]['function']['name'];
455                                 }else{
456                                         $function = $this->fieldDefs[$name]['function'];
457                                 }
458                                 if(!empty($this->fieldDefs[$name]['function']['returns']) && $this->fieldDefs[$name]['function']['returns'] == 'html'){
459                                                 if(!empty($this->fieldDefs[$name]['function']['include'])){
460                                                                 require_once($this->fieldDefs[$name]['function']['include']);
461                                                 }
462                                                 $value = $function($this->focus, $name, $value, $this->view);
463                                                 $valueFormatted = true;
464                                         }else{
465                                                 $this->fieldDefs[$name]['options'] = $function($this->focus, $name, $value, $this->view);
466                                         }
467                         }
468
469                         if(isset($this->fieldDefs[$name]['type']) && $this->fieldDefs[$name]['type'] == 'function' && isset($this->fieldDefs[$name]['function_name'])){
470                                 $value = $this->callFunction($this->fieldDefs[$name]);
471                                 $valueFormatted = true;
472                         }
473
474                         if(!$valueFormatted) {
475                     // $this->focus->format_field($this->focus->field_defs[$name]);
476                    $value = isset($this->focus->$name) ? $this->focus->$name : '';
477                 }
478
479                 if (empty($this->fieldDefs[$name]['value']))
480                 {
481                     $this->fieldDefs[$name]['value'] = $value;
482                 }
483
484
485                 //This code is used for QuickCreates that go to Full Form view.  We want to overwrite the values from the bean
486                 //with values from the request if they are set and either the bean is brand new (such as a create from a subpanels) or the 'full form' button has been clicked
487                 if ((($this->populateBean && empty($this->focus->id)) || (isset($_REQUEST['full_form'])))
488                     && (!isset($this->fieldDefs[$name]['function']['returns']) || $this->fieldDefs[$name]['function']['returns'] != 'html')
489                     && isset($_REQUEST[$name]))
490                 {
491                     $this->fieldDefs[$name]['value'] = $this->getValueFromRequest($_REQUEST, $name);
492                 }
493
494                /*
495                 * Populate any relate fields that are linked by a relationship to the calling module.
496                 * Clicking the create button on a subpanel for example will populate three values in the $_REQUEST:
497                 * 1. return_module => the name of the calling module
498                 * 2. return_id => the id of the record in the calling module that the user was viewing and that should be associated with this new record
499                 * 3. return_name => the display value of the return_id record - the value to show in any relate field in this EditView
500                 * Only do if this fieldDef does not already have a value; if it does it will have been explicitly set, and that should overrule this less specific mechanism
501                 */
502                 if (isset($this->returnModule) && isset($this->returnName)
503                     && empty($this->focus->id) && empty($this->fieldDefs['name']['value']) )
504                 {
505                    if (($this->focus->field_defs[$name]['type'] == 'relate')
506                        && isset($this->focus->field_defs[$name][ 'module' ])
507                        && $this->focus->field_defs[$name][ 'module' ] == $this->returnModule)
508                    {
509                        if (isset( $this->fieldDefs[$name]['id_name'])
510                            && !empty($this->returnRelationship)
511                            && isset($this->focus->field_defs[$this->fieldDefs[$name]['id_name']]['relationship'])
512                            && ($this->returnRelationship == $this->focus->field_defs[$this->fieldDefs[$name]['id_name']]['relationship']))
513                        {
514                            $this->fieldDefs[$name]['value'] =  $this->returnName ;
515                            // set the hidden id field for this relate field to the correct value i.e., return_id
516                            $this->fieldDefs[$this->fieldDefs[$name]['id_name']]['value'] = $this->returnId ;
517                        }
518                    }
519                 }
520             }
521         }
522
523         if (isset($this->focus->additional_meta_fields))
524         {
525             $this->fieldDefs = array_merge($this->fieldDefs, $this->focus->additional_meta_fields);
526         }
527
528         if ($this->isDuplicate)
529         {
530             foreach ($this->fieldDefs as $name=>$defs) {
531                 if (!empty($defs['auto_increment']))
532                 {
533                     $this->fieldDefs[$name]['value'] = '';
534                 }
535             }
536         }
537     }
538     /**
539      * display
540      * This method makes the Smarty variable assignments and theautocomplete_ajax'vars the
541      * generated view.
542      * @param $showTitle boolean value indicating whether or not to show a title on the resulting page
543      * @param $ajaxSave boolean value indicating whether or not the operation is an Ajax save request
544      * @return HTML display for view as String
545      */
546     function display($showTitle = true, $ajaxSave = false)
547     {
548         global $mod_strings, $sugar_config, $app_strings, $app_list_strings, $theme, $current_user;
549
550         if(isset($this->defs['templateMeta']['javascript']))
551         {
552             if(is_array($this->defs['templateMeta']['javascript']))
553             {
554                 //$this->th->ss->assign('externalJSFile', 'modules/' . $this->module . '/metadata/editvewdefs.js');
555                 $this->th->ss->assign('externalJSFile', $this->defs['templateMeta']['javascript']);
556             }
557             else
558             {
559                 $this->th->ss->assign('scriptBlocks', $this->defs['templateMeta']['javascript']);
560             }
561         }
562
563         $this->th->ss->assign('id', $this->fieldDefs['id']['value']);
564         $this->th->ss->assign('offset', $this->offset + 1);
565         $this->th->ss->assign('APP', $app_strings);
566         $this->th->ss->assign('MOD', $mod_strings);
567         $this->th->ss->assign('fields', $this->fieldDefs);
568         $this->th->ss->assign('sectionPanels', $this->sectionPanels);
569         $this->th->ss->assign('config', $sugar_config);
570         $this->th->ss->assign('returnModule', $this->returnModule);
571         $this->th->ss->assign('returnAction', $this->returnAction);
572         $this->th->ss->assign('returnId', $this->returnId);
573         $this->th->ss->assign('isDuplicate', $this->isDuplicate);
574         $this->th->ss->assign('def', $this->defs);
575         $this->th->ss->assign('useTabs', isset($this->defs['templateMeta']['useTabs']) ? $this->defs['templateMeta']['useTabs'] : false);
576         $this->th->ss->assign('maxColumns', isset($this->defs['templateMeta']['maxColumns']) ? $this->defs['templateMeta']['maxColumns'] : 2);
577         $this->th->ss->assign('module', $this->module);
578         $this->th->ss->assign('headerTpl', isset($this->defs['templateMeta']['form']['headerTpl']) ? $this->defs['templateMeta']['form']['headerTpl'] : 'include/' . $this->view . '/header.tpl');
579         $this->th->ss->assign('footerTpl', isset($this->defs['templateMeta']['form']['footerTpl']) ? $this->defs['templateMeta']['form']['footerTpl'] : 'include/' . $this->view . '/footer.tpl');
580         $this->th->ss->assign('current_user', $current_user);
581         $this->th->ss->assign('bean', $this->focus);
582         $this->th->ss->assign('isAuditEnabled', $this->focus->is_AuditEnabled());
583         $this->th->ss->assign('gridline',$current_user->getPreference('gridline') == 'on' ? '1' : '0');
584
585         global $js_custom_version;
586         global $sugar_version;
587
588         $this->th->ss->assign('SUGAR_VERSION', $sugar_version);
589         $this->th->ss->assign('JS_CUSTOM_VERSION', $js_custom_version);
590
591         //this is used for multiple forms on one page
592         if (!empty($this->formName)) {
593             $form_id = $this->formName;
594             $form_name = $this->formName;
595         }
596         else
597         {
598             $form_id = $this->view;
599             $form_name = $this->view;
600         }
601
602         if ($ajaxSave && empty($this->formName))
603         {
604             $form_id = 'form_'.$this->view .'_'.$this->module;
605             $form_name = $form_id;
606             $this->view = $form_name;
607             //$this->defs['templateMeta']['form']['buttons'] = array();
608             //$this->defs['templateMeta']['form']['buttons']['ajax_save'] = array('id' => 'AjaxSave', 'customCode'=>'<input type="button" class="button" value="Save" onclick="this.form.action.value=\'AjaxFormSave\';return saveForm(\''.$form_name.'\', \'multiedit_form_{$module}\', \'Saving {$module}...\');"/>');
609         }
610
611         $form_name = $form_name == 'QuickCreate' ? "QuickCreate_{$this->module}" : $form_name;
612         $form_id = $form_id == 'QuickCreate' ? "QuickCreate_{$this->module}" : $form_id;
613
614         if (isset($this->defs['templateMeta']['preForm']))
615         {
616             $this->th->ss->assign('preForm', $this->defs['templateMeta']['preForm']);
617         }
618
619         if (isset($this->defs['templateMeta']['form']['closeFormBeforeCustomButtons']))
620         {
621             $this->th->ss->assign('closeFormBeforeCustomButtons', $this->defs['templateMeta']['form']['closeFormBeforeCustomButtons']);
622         }
623
624         if(isset($this->defs['templateMeta']['form']['enctype']))
625         {
626             $this->th->ss->assign('enctype', 'enctype="'.$this->defs['templateMeta']['form']['enctype'].'"');
627         }
628
629         //for SugarFieldImage, we must set form enctype to "multipart/form-data"
630         foreach ($this->fieldDefs as $field)
631         {
632             if (isset($field['type']) && $field['type'] == 'image')
633             {
634                 $this->th->ss->assign('enctype', 'enctype="multipart/form-data"');
635                 break;
636             }
637         }
638
639         $this->th->ss->assign('showDetailData', $this->showDetailData);
640         $this->th->ss->assign('showSectionPanelsTitles', $this->showSectionPanelsTitles);
641         $this->th->ss->assign('form_id', $form_id);
642         $this->th->ss->assign('form_name', $form_name);
643         $this->th->ss->assign('set_focus_block', get_set_focus_js());
644
645         $this->th->ss->assign('form', isset($this->defs['templateMeta']['form']) ? $this->defs['templateMeta']['form'] : null);
646         $this->th->ss->assign('includes', isset($this->defs['templateMeta']['includes']) ? $this->defs['templateMeta']['includes'] : null);
647         $this->th->ss->assign('view', $this->view);
648
649
650         //Calculate time & date formatting (may need to calculate this depending on a setting)
651         global $timedate;
652
653         $this->th->ss->assign('CALENDAR_DATEFORMAT', $timedate->get_cal_date_format());
654         $this->th->ss->assign('USER_DATEFORMAT', $timedate->get_user_date_format());
655         $time_format = $timedate->get_user_time_format();
656         $this->th->ss->assign('TIME_FORMAT', $time_format);
657
658         $date_format = $timedate->get_cal_date_format();
659         $time_separator = ':';
660         if (preg_match('/\d+([^\d])\d+([^\d]*)/s', $time_format, $match))
661         {
662             $time_separator = $match[1];
663         }
664
665         // Create Smarty variables for the Calendar picker widget
666         $t23 = strpos($time_format, '23') !== false ? '%H' : '%I';
667         if (!isset($match[2]) || $match[2] == '')
668         {
669             $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . '%M');
670         }
671         else
672         {
673             $pm = $match[2] == 'pm' ? '%P' : '%p';
674             $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . '%M' . $pm);
675         }
676
677         $this->th->ss->assign('TIME_SEPARATOR', $time_separator);
678
679         $seps = get_number_seperators();
680         $this->th->ss->assign('NUM_GRP_SEP', $seps[0]);
681         $this->th->ss->assign('DEC_SEP', $seps[1]);
682
683         if ($this->view == 'EditView')
684         {
685             $height = $current_user->getPreference('text_editor_height');
686             $width  = $current_user->getPreference('text_editor_width');
687
688             $height = isset($height) ? $height : '300px';
689             $width  = isset($width) ? $width : '95%';
690
691             $this->th->ss->assign('RICH_TEXT_EDITOR_HEIGHT', $height);
692             $this->th->ss->assign('RICH_TEXT_EDITOR_WIDTH', $width);
693         }
694         else
695         {
696             $this->th->ss->assign('RICH_TEXT_EDITOR_HEIGHT', '100px');
697             $this->th->ss->assign('RICH_TEXT_EDITOR_WIDTH', '95%');
698         }
699
700         $this->th->ss->assign('SHOW_VCR_CONTROL', $this->showVCRControl);
701
702         $str = $this->showTitle($showTitle);
703
704         //Use the output filter to trim the whitespace
705         $this->th->ss->load_filter('output', 'trimwhitespace');
706         $str .= $this->th->displayTemplate($this->module, $form_name, $this->tpl, $ajaxSave, $this->defs);
707
708         return $str;
709     }
710
711     function insertJavascript($javascript)
712     {
713         $this->ss->assign('javascript', $javascript);
714     }
715
716     function callFunction($vardef)
717     {
718         $can_execute = true;
719         $execute_function = array();
720         $execute_params = array();
721         if (!empty($vardef['function_class']))
722         {
723             $execute_function[] = $vardef['function_class'];
724             $execute_function[] = $vardef['function_name'];
725         }
726         else
727         {
728             $execute_function = $vardef['function_name'];
729         }
730
731         foreach ($vardef['function_params'] as $param )
732         {
733             if (empty($vardef['function_params_source']) or $vardef['function_params_source']=='parent')
734             {
735                 if (empty($this->focus->$param))
736                 {
737                     $can_execute = false;
738                 }
739                 else
740                 {
741                     $execute_params[] = $this->focus->$param;
742                 }
743             }
744             else if ($vardef['function_params_source']=='this')
745             {
746                 if (empty($this->focus->$param))
747                 {
748                     $can_execute = false;
749                 } else {
750                     $execute_params[] = $this->focus->$param;
751                 }
752             }
753             else
754             {
755                 $can_execute = false;
756             }
757         }
758
759         $value = '';
760         if ($can_execute)
761         {
762             if (!empty($vardef['function_require']))
763             {
764                 require_once($vardef['function_require']);
765             }
766
767             $value = call_user_func_array($execute_function, $execute_params);
768         }
769
770         return $value;
771     }
772
773     /**
774      * getValueFromRequest
775      * This is a helper method to extract a value from the request
776      * Array.  We do some special processing for fields that start
777      * with 'date_' by checking to see if they also include time
778      * and meridiem values
779      *
780      * @param request The request Array
781      * @param name The field name to extract value for
782      * @return String value for given name
783      */
784     function getValueFromRequest($request, $name)
785     {
786         //Special processing for date values (combine to one field)
787         if (preg_match('/^date_(.*)$/s', $name, $matches))
788         {
789             $d = $request[$name];
790
791             if (isset($request['time_' . $matches[1]]))
792             {
793                 $d .= ' ' . $request['time_' . $matches[1]];
794                 if (isset($request[$matches[1] . '_meridiem']))
795                 {
796                     $d .= $request[$matches[1] . '_meridiem'];
797                 }
798             }
799             else
800             {
801                 if (isset($request['time_hour_' . $matches[1]])
802                     && isset($request['time_minute_' . $matches[1]]))
803                 {
804                     $d .= sprintf(' %s:%s', $request['time_hour_' . $matches[1]], $request['time_minute_' . $matches[1]]);
805                 }
806
807                 if (isset($request['meridiem']))
808                 {
809                     $d .= $request['meridiem'];
810                 }
811            }
812
813            return $d;
814         }
815
816         if (empty($request[$name]) || !isset($this->fieldDefs[$name]))
817         {
818            return $request[$name];
819         }
820
821         //if it's a bean field - unformat it
822         require_once('include/SugarFields/SugarFieldHandler.php');
823
824         $sfh  = new SugarFieldHandler();
825         $type = !empty($this->fieldDefs[$name]['custom_type'])
826             ? $this->fieldDefs[$name]['custom_type']
827             : $this->fieldDefs[$name]['type'];
828         $sf   = $sfh->getSugarField($type);
829
830         return $sf ? $sf->unformatField($request[$name], $this->fieldDefs[$name]) : $request[$name];
831     }
832
833
834         /**
835          * Allow Subviews to overwrite this method to show custom titles.
836          * Examples: Projects & Project Templates.
837          * params: $showTitle: boolean for backwards compatibility.
838          */
839     public function showTitle($showTitle = false)
840     {
841         global $mod_strings, $app_strings;
842
843         if (is_null($this->viewObject))
844         {
845             $this->viewObject = (!empty($GLOBALS['current_view']))
846                 ? $GLOBALS['current_view']
847                 : new SugarView();
848         }
849
850         if ($showTitle)
851         {
852             return $this->viewObject->getModuleTitle();
853         }
854
855         return '';
856     }
857 }