]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/EditView/EditView2.php
Release 6.3.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 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                 {
453                     $function = $this->fieldDefs[$name]['function'];
454                     $function = (is_array($function) && isset($function['name']))
455                         ? $this->fieldDefs[$name]['function']['name']
456                         : $this->fieldDefs[$name]['function'];
457
458                     if (!empty($this->fieldDefs[$name]['function']['returns']) && $this->fieldDefs[$name]['function']['returns'] == 'html')
459                     {
460                         if (!empty($this->fieldDefs[$name]['function']['include']))
461                         {
462                             require_once($this->fieldDefs[$name]['function']['include']);
463                         }
464
465                         $value = $function($this->focus, $name, $value, $this->view);
466                         $valueFormatted = true;
467                     }
468                     else
469                     {
470                         $this->fieldDefs[$name]['options'] = $function($this->focus, $name, $value, $this->view);
471                     }
472                 }
473
474                         if(isset($this->fieldDefs[$name]['function'])) {
475                                 $function = $this->fieldDefs[$name]['function'];
476                                 if(is_array($function) && isset($function['name'])){
477                                         $function = $this->fieldDefs[$name]['function']['name'];
478                                 }else{
479                                         $function = $this->fieldDefs[$name]['function'];
480                                 }
481                                 if(!empty($this->fieldDefs[$name]['function']['returns']) && $this->fieldDefs[$name]['function']['returns'] == 'html'){
482                                                 if(!empty($this->fieldDefs[$name]['function']['include'])){
483                                                                 require_once($this->fieldDefs[$name]['function']['include']);
484                                                 }
485                                                 $value = $function($this->focus, $name, $value, $this->view);
486                                                 $valueFormatted = true;
487                                         }else{
488                                                 $this->fieldDefs[$name]['options'] = $function($this->focus, $name, $value, $this->view);
489                                         }
490                         }
491
492                         if(isset($this->fieldDefs[$name]['type']) && $this->fieldDefs[$name]['type'] == 'function' && isset($this->fieldDefs[$name]['function_name'])){
493                                 $value = $this->callFunction($this->fieldDefs[$name]);
494                                 $valueFormatted = true;
495                         }
496
497                         if(!$valueFormatted) {
498                     // $this->focus->format_field($this->focus->field_defs[$name]);
499                    $value = isset($this->focus->$name) ? $this->focus->$name : '';
500                 }
501
502                 if (empty($this->fieldDefs[$name]['value']))
503                 {
504                     $this->fieldDefs[$name]['value'] = $value;
505                 }
506
507
508                 //This code is used for QuickCreates that go to Full Form view.  We want to overwrite the values from the bean
509                 //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
510                 if ((($this->populateBean && empty($this->focus->id)) || (isset($_REQUEST['full_form'])))
511                     && (!isset($this->fieldDefs[$name]['function']['returns']) || $this->fieldDefs[$name]['function']['returns'] != 'html')
512                     && isset($_REQUEST[$name]))
513                 {
514                     $this->fieldDefs[$name]['value'] = $this->getValueFromRequest($_REQUEST, $name);
515                 }
516
517                /*
518                 * Populate any relate fields that are linked by a relationship to the calling module.
519                 * Clicking the create button on a subpanel for example will populate three values in the $_REQUEST:
520                 * 1. return_module => the name of the calling module
521                 * 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
522                 * 3. return_name => the display value of the return_id record - the value to show in any relate field in this EditView
523                 * 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
524                 */
525                 if (isset($this->returnModule) && isset($this->returnName)
526                     && empty($this->focus->id) && empty($this->fieldDefs['name']['value']) )
527                 {
528                    if (($this->focus->field_defs[$name]['type'] == 'relate')
529                        && isset($this->focus->field_defs[$name][ 'module' ])
530                        && $this->focus->field_defs[$name][ 'module' ] == $this->returnModule)
531                    {
532                        if (isset( $this->fieldDefs[$name]['id_name'])
533                            && !empty($this->returnRelationship)
534                            && isset($this->focus->field_defs[$this->fieldDefs[$name]['id_name']]['relationship'])
535                            && ($this->returnRelationship == $this->focus->field_defs[$this->fieldDefs[$name]['id_name']]['relationship']))
536                        {
537                            $this->fieldDefs[$name]['value'] =  $this->returnName ;
538                            // set the hidden id field for this relate field to the correct value i.e., return_id
539                            $this->fieldDefs[$this->fieldDefs[$name]['id_name']]['value'] = $this->returnId ;
540                        }
541                    }
542                 }
543             }
544         }
545
546         if (isset($this->focus->additional_meta_fields))
547         {
548             $this->fieldDefs = array_merge($this->fieldDefs, $this->focus->additional_meta_fields);
549         }
550
551         if ($this->isDuplicate)
552         {
553             foreach ($this->fieldDefs as $name=>$defs) {
554                 if (!empty($defs['auto_increment']))
555                 {
556                     $this->fieldDefs[$name]['value'] = '';
557                 }
558             }
559         }
560     }
561     /**
562      * display
563      * This method makes the Smarty variable assignments and theautocomplete_ajax'vars the
564      * generated view.
565      * @param $showTitle boolean value indicating whether or not to show a title on the resulting page
566      * @param $ajaxSave boolean value indicating whether or not the operation is an Ajax save request
567      * @return HTML display for view as String
568      */
569     function display($showTitle = true, $ajaxSave = false)
570     {
571         global $mod_strings, $sugar_config, $app_strings, $app_list_strings, $theme, $current_user;
572
573         if(isset($this->defs['templateMeta']['javascript']))
574         {
575             if(is_array($this->defs['templateMeta']['javascript']))
576             {
577                 //$this->th->ss->assign('externalJSFile', 'modules/' . $this->module . '/metadata/editvewdefs.js');
578                 $this->th->ss->assign('externalJSFile', $this->defs['templateMeta']['javascript']);
579             }
580             else
581             {
582                 $this->th->ss->assign('scriptBlocks', $this->defs['templateMeta']['javascript']);
583             }
584         }
585
586         $this->th->ss->assign('id', $this->fieldDefs['id']['value']);
587         $this->th->ss->assign('offset', $this->offset + 1);
588         $this->th->ss->assign('APP', $app_strings);
589         $this->th->ss->assign('MOD', $mod_strings);
590         $this->th->ss->assign('fields', $this->fieldDefs);
591         $this->th->ss->assign('sectionPanels', $this->sectionPanels);
592         $this->th->ss->assign('config', $sugar_config);
593         $this->th->ss->assign('returnModule', $this->returnModule);
594         $this->th->ss->assign('returnAction', $this->returnAction);
595         $this->th->ss->assign('returnId', $this->returnId);
596         $this->th->ss->assign('isDuplicate', $this->isDuplicate);
597         $this->th->ss->assign('def', $this->defs);
598         $this->th->ss->assign('useTabs', isset($this->defs['templateMeta']['useTabs']) ? $this->defs['templateMeta']['useTabs'] : false);
599         $this->th->ss->assign('maxColumns', isset($this->defs['templateMeta']['maxColumns']) ? $this->defs['templateMeta']['maxColumns'] : 2);
600         $this->th->ss->assign('module', $this->module);
601         $this->th->ss->assign('headerTpl', isset($this->defs['templateMeta']['form']['headerTpl']) ? $this->defs['templateMeta']['form']['headerTpl'] : 'include/' . $this->view . '/header.tpl');
602         $this->th->ss->assign('footerTpl', isset($this->defs['templateMeta']['form']['footerTpl']) ? $this->defs['templateMeta']['form']['footerTpl'] : 'include/' . $this->view . '/footer.tpl');
603         $this->th->ss->assign('current_user', $current_user);
604         $this->th->ss->assign('bean', $this->focus);
605         $this->th->ss->assign('isAuditEnabled', $this->focus->is_AuditEnabled());
606         $this->th->ss->assign('gridline',$current_user->getPreference('gridline') == 'on' ? '1' : '0');
607
608         global $js_custom_version;
609         global $sugar_version;
610
611         $this->th->ss->assign('SUGAR_VERSION', $sugar_version);
612         $this->th->ss->assign('JS_CUSTOM_VERSION', $js_custom_version);
613
614         //this is used for multiple forms on one page
615         if (!empty($this->formName)) {
616             $form_id = $this->formName;
617             $form_name = $this->formName;
618         }
619         else
620         {
621             $form_id = $this->view;
622             $form_name = $this->view;
623         }
624
625         if ($ajaxSave && empty($this->formName))
626         {
627             $form_id = 'form_'.$this->view .'_'.$this->module;
628             $form_name = $form_id;
629             $this->view = $form_name;
630             //$this->defs['templateMeta']['form']['buttons'] = array();
631             //$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}...\');"/>');
632         }
633
634         $form_name = $form_name == 'QuickCreate' ? "QuickCreate_{$this->module}" : $form_name;
635         $form_id = $form_id == 'QuickCreate' ? "QuickCreate_{$this->module}" : $form_id;
636
637         if (isset($this->defs['templateMeta']['preForm']))
638         {
639             $this->th->ss->assign('preForm', $this->defs['templateMeta']['preForm']);
640         }
641
642         if (isset($this->defs['templateMeta']['form']['closeFormBeforeCustomButtons']))
643         {
644             $this->th->ss->assign('closeFormBeforeCustomButtons', $this->defs['templateMeta']['form']['closeFormBeforeCustomButtons']);
645         }
646
647         if(isset($this->defs['templateMeta']['form']['enctype']))
648         {
649             $this->th->ss->assign('enctype', 'enctype="'.$this->defs['templateMeta']['form']['enctype'].'"');
650         }
651
652         //for SugarFieldImage, we must set form enctype to "multipart/form-data"
653         foreach ($this->fieldDefs as $field)
654         {
655             if (isset($field['type']) && $field['type'] == 'image')
656             {
657                 $this->th->ss->assign('enctype', 'enctype="multipart/form-data"');
658                 break;
659             }
660         }
661
662         $this->th->ss->assign('showDetailData', $this->showDetailData);
663         $this->th->ss->assign('showSectionPanelsTitles', $this->showSectionPanelsTitles);
664         $this->th->ss->assign('form_id', $form_id);
665         $this->th->ss->assign('form_name', $form_name);
666         $this->th->ss->assign('set_focus_block', get_set_focus_js());
667
668         $this->th->ss->assign('form', isset($this->defs['templateMeta']['form']) ? $this->defs['templateMeta']['form'] : null);
669         $this->th->ss->assign('includes', isset($this->defs['templateMeta']['includes']) ? $this->defs['templateMeta']['includes'] : null);
670         $this->th->ss->assign('view', $this->view);
671
672
673         //Calculate time & date formatting (may need to calculate this depending on a setting)
674         global $timedate;
675
676         $this->th->ss->assign('CALENDAR_DATEFORMAT', $timedate->get_cal_date_format());
677         $this->th->ss->assign('USER_DATEFORMAT', $timedate->get_user_date_format());
678         $time_format = $timedate->get_user_time_format();
679         $this->th->ss->assign('TIME_FORMAT', $time_format);
680
681         $date_format = $timedate->get_cal_date_format();
682         $time_separator = ':';
683         if (preg_match('/\d+([^\d])\d+([^\d]*)/s', $time_format, $match))
684         {
685             $time_separator = $match[1];
686         }
687
688         // Create Smarty variables for the Calendar picker widget
689         $t23 = strpos($time_format, '23') !== false ? '%H' : '%I';
690         if (!isset($match[2]) || $match[2] == '')
691         {
692             $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . '%M');
693         }
694         else
695         {
696             $pm = $match[2] == 'pm' ? '%P' : '%p';
697             $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . '%M' . $pm);
698         }
699
700         $this->th->ss->assign('TIME_SEPARATOR', $time_separator);
701
702         $seps = get_number_seperators();
703         $this->th->ss->assign('NUM_GRP_SEP', $seps[0]);
704         $this->th->ss->assign('DEC_SEP', $seps[1]);
705
706         if ($this->view == 'EditView')
707         {
708             $height = $current_user->getPreference('text_editor_height');
709             $width  = $current_user->getPreference('text_editor_width');
710
711             $height = isset($height) ? $height : '300px';
712             $width  = isset($width) ? $width : '95%';
713
714             $this->th->ss->assign('RICH_TEXT_EDITOR_HEIGHT', $height);
715             $this->th->ss->assign('RICH_TEXT_EDITOR_WIDTH', $width);
716         }
717         else
718         {
719             $this->th->ss->assign('RICH_TEXT_EDITOR_HEIGHT', '100px');
720             $this->th->ss->assign('RICH_TEXT_EDITOR_WIDTH', '95%');
721         }
722
723         $this->th->ss->assign('SHOW_VCR_CONTROL', $this->showVCRControl);
724
725         $str = $this->showTitle($showTitle);
726
727         //Use the output filter to trim the whitespace
728         $this->th->ss->load_filter('output', 'trimwhitespace');
729         $str .= $this->th->displayTemplate($this->module, $form_name, $this->tpl, $ajaxSave, $this->defs);
730
731         return $str;
732     }
733
734     function insertJavascript($javascript)
735     {
736         $this->ss->assign('javascript', $javascript);
737     }
738
739     function callFunction($vardef)
740     {
741         $can_execute = true;
742         $execute_function = array();
743         $execute_params = array();
744         if (!empty($vardef['function_class']))
745         {
746             $execute_function[] = $vardef['function_class'];
747             $execute_function[] = $vardef['function_name'];
748         }
749         else
750         {
751             $execute_function = $vardef['function_name'];
752         }
753
754         foreach ($vardef['function_params'] as $param )
755         {
756             if (empty($vardef['function_params_source']) or $vardef['function_params_source']=='parent')
757             {
758                 if (empty($this->focus->$param))
759                 {
760                     $can_execute = false;
761                 }
762                 else
763                 {
764                     $execute_params[] = $this->focus->$param;
765                 }
766             }
767             else if ($vardef['function_params_source']=='this')
768             {
769                 if (empty($this->focus->$param))
770                 {
771                     $can_execute = false;
772                 } else {
773                     $execute_params[] = $this->focus->$param;
774                 }
775             }
776             else
777             {
778                 $can_execute = false;
779             }
780         }
781
782         $value = '';
783         if ($can_execute)
784         {
785             if (!empty($vardef['function_require']))
786             {
787                 require_once($vardef['function_require']);
788             }
789
790             $value = call_user_func_array($execute_function, $execute_params);
791         }
792
793         return $value;
794     }
795
796     /**
797      * getValueFromRequest
798      * This is a helper method to extract a value from the request
799      * Array.  We do some special processing for fields that start
800      * with 'date_' by checking to see if they also include time
801      * and meridiem values
802      *
803      * @param request The request Array
804      * @param name The field name to extract value for
805      * @return String value for given name
806      */
807     function getValueFromRequest($request, $name)
808     {
809         //Special processing for date values (combine to one field)
810         if (preg_match('/^date_(.*)$/s', $name, $matches))
811         {
812             $d = $request[$name];
813
814             if (isset($request['time_' . $matches[1]]))
815             {
816                 $d .= ' ' . $request['time_' . $matches[1]];
817                 if (isset($request[$matches[1] . '_meridiem']))
818                 {
819                     $d .= $request[$matches[1] . '_meridiem'];
820                 }
821             }
822             else
823             {
824                 if (isset($request['time_hour_' . $matches[1]])
825                     && isset($request['time_minute_' . $matches[1]]))
826                 {
827                     $d .= sprintf(' %s:%s', $request['time_hour_' . $matches[1]], $request['time_minute_' . $matches[1]]);
828                 }
829
830                 if (isset($request['meridiem']))
831                 {
832                     $d .= $request['meridiem'];
833                 }
834            }
835
836            return $d;
837         }
838
839         if (empty($request[$name]) || !isset($this->fieldDefs[$name]))
840         {
841            return $request[$name];
842         }
843
844         //if it's a bean field - unformat it
845         require_once('include/SugarFields/SugarFieldHandler.php');
846
847         $sfh  = new SugarFieldHandler();
848         $type = !empty($this->fieldDefs[$name]['custom_type'])
849             ? $this->fieldDefs[$name]['custom_type']
850             : $this->fieldDefs[$name]['type'];
851         $sf   = $sfh->getSugarField($type);
852
853         return $sf ? $sf->unformatField($request[$name], $this->fieldDefs[$name]) : $request[$name];
854     }
855
856
857         /**
858          * Allow Subviews to overwrite this method to show custom titles.
859          * Examples: Projects & Project Templates.
860          * params: $showTitle: boolean for backwards compatibility.
861          */
862     public function showTitle($showTitle = false)
863     {
864         global $mod_strings, $app_strings;
865
866         if (is_null($this->viewObject))
867         {
868             $this->viewObject = (!empty($GLOBALS['current_view']))
869                 ? $GLOBALS['current_view']
870                 : new SugarView();
871         }
872
873         if ($showTitle)
874         {
875             return $this->viewObject->getModuleTitle();
876         }
877
878         return '';
879     }
880 }