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