]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/parsers/views/GridLayoutMetaDataParser.php
Release 6.2.2
[Github/sugarcrm.git] / modules / ModuleBuilder / parsers / views / GridLayoutMetaDataParser.php
1 <?php
2 if (! defined ( 'sugarEntry' ) || ! sugarEntry)
3     die ( 'Not A Valid Entry Point' ) ;
4 /*********************************************************************************
5  * SugarCRM Community Edition is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39
40 require_once 'modules/ModuleBuilder/parsers/views/AbstractMetaDataParser.php' ;
41 require_once 'modules/ModuleBuilder/parsers/views/MetaDataParserInterface.php' ;
42 require_once 'modules/ModuleBuilder/parsers/constants.php' ;
43
44 class GridLayoutMetaDataParser extends AbstractMetaDataParser implements MetaDataParserInterface
45 {
46
47     static $variableMap = array (
48         MB_EDITVIEW => 'EditView' ,
49         MB_DETAILVIEW => 'DetailView' ,
50         MB_QUICKCREATE => 'QuickCreate',
51         ) ;
52
53         protected $FILLER ;
54
55     /*
56      * Constructor
57      * @param string view           The view type, that is, editview, searchview etc
58      * @param string moduleName     The name of the module to which this view belongs
59      * @param string packageName    If not empty, the name of the package to which this view belongs
60      */
61     function __construct ($view , $moduleName , $packageName = '')
62     {
63         $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . "->__construct( {$view} , {$moduleName} , {$packageName} )" ) ;
64
65         $view = strtolower ( $view ) ;
66
67         // BEGIN ASSERTIONS
68         if (! isset ( self::$variableMap [ $view ] ) )
69             sugar_die ( get_class ( $this ) . ": View $view is not supported" ) ;
70         // END ASSERTIONS
71
72                 $this->FILLER = array ( 'name' => MBConstants::$FILLER['name'] , 'label' => translate ( MBConstants::$FILLER['label'] ) ) ;
73
74         $this->_moduleName = $moduleName ;
75         $this->_view = $view ;
76
77         if (empty ( $packageName ))
78         {
79             require_once 'modules/ModuleBuilder/parsers/views/DeployedMetaDataImplementation.php' ;
80             $this->implementation = new DeployedMetaDataImplementation ( $view, $moduleName, self::$variableMap ) ;
81         } else
82         {
83             require_once 'modules/ModuleBuilder/parsers/views/UndeployedMetaDataImplementation.php' ;
84             $this->implementation = new UndeployedMetaDataImplementation ( $view, $moduleName, $packageName ) ;
85         }
86
87         $viewdefs = $this->implementation->getViewdefs () ;
88
89         if (! isset ( $viewdefs [ self::$variableMap [ $view ] ] ))
90             sugar_die ( get_class ( $this ) . ": missing variable " . self::$variableMap [ $view ] . " in layout definition" ) ;
91
92         $viewdefs = $viewdefs [ self::$variableMap [ $view ] ] ;
93         if (! isset ( $viewdefs [ 'templateMeta' ] ))
94             sugar_die ( get_class ( $this ) . ": missing templateMeta section in layout definition (case sensitive)" ) ;
95
96         if (! isset ( $viewdefs [ 'panels' ] ))
97             sugar_die ( get_class ( $this ) . ": missing panels section in layout definition (case sensitive)" ) ;
98
99         $this->_viewdefs = $viewdefs ;
100         if ($this->getMaxColumns () < 1)
101             sugar_die ( get_class ( $this ) . ": maxColumns=" . $this->getMaxColumns () . " - must be greater than 0!" ) ;
102
103         $this->_fielddefs =  $this->implementation->getFielddefs() ;
104         $this->_standardizeFieldLabels( $this->_fielddefs );
105         $this->_viewdefs [ 'panels' ] = $this->_convertFromCanonicalForm ( $this->_viewdefs [ 'panels' ] , $this->_fielddefs ) ; // put into our internal format
106         $this->_originalViewDef = $this->getFieldsFromLayout($this->implementation->getOriginalViewdefs ());
107     }
108
109     /*
110      * Save a draft layout
111      */
112     function writeWorkingFile ($populate = true)
113     {
114         if ($populate)
115             $this->_populateFromRequest ( $this->_fielddefs ) ;
116         
117         $viewdefs = $this->_viewdefs ;
118         $viewdefs [ 'panels' ] = $this->_convertToCanonicalForm ( $this->_viewdefs [ 'panels' ] , $this->_fielddefs ) ;
119         $this->implementation->save ( array ( self::$variableMap [ $this->_view ] => $viewdefs ) ) ;
120     }
121
122     /*
123      * Deploy the layout
124      * @param boolean $populate If true (default), then update the layout first with new layout information from the $_REQUEST array
125      */
126     function handleSave ($populate = true)
127     {
128         $GLOBALS [ 'log' ]->info ( get_class ( $this ) . "->handleSave()" ) ;
129
130         if ($populate)
131             $this->_populateFromRequest ( $this->_fielddefs ) ;
132
133         $viewdefs = $this->_viewdefs ;
134         $viewdefs [ 'panels' ] = $this->_convertToCanonicalForm ( $this->_viewdefs [ 'panels' ] , $this->_fielddefs ) ;
135         $this->implementation->deploy ( array ( self::$variableMap [ $this->_view ] => $viewdefs ) ) ;
136     }
137
138     /*
139      * Return the layout, padded out with (empty) and (filler) fields ready for display
140      */
141     function getLayout ()
142     {
143         $viewdefs = array () ;
144         $fielddefs = $this->_fielddefs;
145         $fielddefs [ $this->FILLER [ 'name' ] ] = $this->FILLER ;
146         $fielddefs [ MBConstants::$EMPTY [ 'name' ] ] = MBConstants::$EMPTY ;
147         
148                 foreach ( $this->_viewdefs [ 'panels' ] as $panelID => $panel )
149         {
150             foreach ( $panel as $rowID => $row )
151             {
152                 foreach ( $row as $colID => $fieldname )
153                 {
154                         if (isset ($this->_fielddefs [ $fieldname ]))
155                                         {
156                                                 $viewdefs [ $panelID ] [ $rowID ] [ $colID ] = self::_trimFieldDefs( $this->_fielddefs [ $fieldname ] ) ;
157                                         } 
158                                         else if (isset($this->_originalViewDef [ $fieldname ]) && is_array($this->_originalViewDef [ $fieldname ]))
159                                         {
160                                                 $viewdefs [ $panelID ] [ $rowID ] [ $colID ] = self::_trimFieldDefs( $this->_originalViewDef [ $fieldname ] ) ;
161                                         } 
162                                         else 
163                                         {
164                                                 $viewdefs [ $panelID ] [ $rowID ] [ $colID ] = array("name" => $fieldname, "label" => $fieldname);
165                                         }
166                 }
167             }
168         }
169         return $viewdefs ;
170     }
171
172     function getMaxColumns ()
173     {
174         if (!empty( $this->_viewdefs) && isset($this->_viewdefs [ 'templateMeta' ] [ 'maxColumns' ]))
175                 {
176                         return $this->_viewdefs [ 'templateMeta' ] [ 'maxColumns' ] ;
177                 }else
178                 {
179                         return 2;
180                 }
181     }
182
183     function getAvailableFields ()
184     {
185
186         // Obtain the full list of valid fields in this module
187         $availableFields = array () ;
188         foreach ( $this->_fielddefs as $key => $def )
189         {
190             if ( GridLayoutMetaDataParser::validField ( $def,  $this->_view ) || isset($this->_originalViewDef[$key]) )
191             {
192                 //If the field original label existing, we should use the original label instead the label in its fielddefs.
193                 if(isset($this->_originalViewDef[$key]) && is_array($this->_originalViewDef[$key]) && isset($this->_originalViewDef[$key]['label'])){
194                     $availableFields [ $key ] = array ( 'name' => $key , 'label' => $this->_originalViewDef[$key]['label']) ; 
195                 }else{
196                     $availableFields [ $key ] = array ( 'name' => $key , 'label' => isset($def [ 'label' ]) ? $def [ 'label' ] : $def['vname'] ) ; // layouts use 'label' not 'vname' for the label entry
197             }
198             }
199                         
200         }
201
202                 // Available fields are those that are in the Model and the original layout definition, but not already shown in the View
203         // So, because the formats of the two are different we brute force loop through View and unset the fields we find in a copy of Model
204         if (! empty ( $this->_viewdefs ))
205         {
206             foreach ( $this->_viewdefs [ 'panels' ] as $panel )
207             {
208                 foreach ( $panel as $row )
209                 {
210                     foreach ( $row as $field )
211                     {
212                         unset ( $availableFields [ $field ] ) ;
213                     }
214                 }
215             }
216         }
217
218         return $availableFields ;
219     }
220
221     function getPanelDependency ( $panelID )
222     {
223         if ( ! isset ( $this->_viewdefs [ 'templateMeta' ][ 'dependency' ] ) && ! isset ( $this->_viewdefs [ 'templateMeta' ][ 'dependency' ] [ $panelID ] ) )
224                 return false;
225
226         return $this->_viewdefs  [ 'templateMeta' ][ 'dependency' ] [ $panelID ] ;
227     }
228
229     /*
230      * Add a new field to the layout
231      * If $panelID is passed in, attempt to add to that panel, otherwise add to the first panel
232      * The field is added in place of the first empty (not filler) slot after the last field in the panel; if that row is full, then a new row will be added to the end of the panel
233      * and the field added to the start of it.
234      * @param array $def Set of properties for the field, in same format as in the viewdefs
235      * @param string $panelID Identifier of the panel to add the field to; empty or false if we should use the first panel
236      */
237     function addField ( $def , $panelID = FALSE)
238     {
239
240         if (count ( $this->_viewdefs [ 'panels' ] ) == 0)
241         {
242             $GLOBALS [ 'log' ]->error ( get_class ( $this ) . "->addField(): _viewdefs empty for module {$this->_moduleName} and view {$this->_view}" ) ;
243         }
244
245         // if a panelID was not provided, use the first available panel in the list
246         if (! $panelID)
247         {
248             $panels = array_keys ( $this->_viewdefs [ 'panels' ] ) ;
249             list ( $dummy, $panelID ) = each ( $panels ) ;
250         }
251
252         if (isset ( $this->_viewdefs [ 'panels' ] [ $panelID ] ))
253         {
254
255             $panel = $this->_viewdefs [ 'panels' ] [ $panelID ] ;
256             $lastrow = count ( $panel ) - 1 ; // index starts at 0
257             $maxColumns = $this->getMaxColumns () ;
258             $lastRowDef = $this->_viewdefs [ 'panels' ] [ $panelID ] [ $lastrow ];
259             for ( $column = 0 ; $column < $maxColumns ; $column ++ )
260             {
261                 if (! isset ( $lastRowDef [ $column ] )
262                         || (is_array( $lastRowDef [ $column ]) && $lastRowDef [ $column ][ 'name' ] == '(empty)')
263                         || (is_string( $lastRowDef [ $column ]) && $lastRowDef [ $column ] == '(empty)')
264                 ){
265                     break ;
266                 }
267             }
268
269             // if we're on the last column of the last row, start a new row
270             if ($column >= $maxColumns)
271             {
272                 $lastrow ++ ;
273                 $this->_viewdefs [ 'panels' ] [ $panelID ] [ $lastrow ] = array ( ) ;
274                 $column = 0 ;
275             }
276
277             $this->_viewdefs [ 'panels' ] [ $panelID ] [ $lastrow ] [ $column ] = $def [ 'name' ] ;
278             // now update the fielddefs
279             if (isset($this->_fielddefs [ $def [ 'name' ] ]))
280             {
281                 $this->_fielddefs [ $def [ 'name' ] ] = array_merge ( $this->_fielddefs [ $def [ 'name' ] ] , $def ) ;
282             } else
283             {
284                 $this->_fielddefs [ $def [ 'name' ] ] = $def;
285             }
286         }
287         return true ;
288     }
289
290     /*
291      * Remove all instances of a field from the layout, and replace by (filler)
292      * Filler because we attempt to preserve the customized layout as much as possible - replacing by (empty) would mean that the positions or sizes of adjacent fields may change
293      * If the last row of a panel only consists of (filler) after removing the fields, then remove the row also. This undoes the standard addField() scenario;
294      * If the fields had been moved around in the layout however then this will not completely undo any addField()
295      * @param string $fieldName Name of the field to remove
296      * @return boolean True if the field was removed; false otherwise
297      */
298     function removeField ($fieldName)
299     {
300         $GLOBALS [ 'log' ]->info ( get_class ( $this ) . "->removeField($fieldName)" ) ;
301
302         $result = false ;
303         reset ( $this->_viewdefs ) ;
304         $firstPanel = each ( $this->_viewdefs [ 'panels' ] ) ;
305         $firstPanelID = $firstPanel [ 'key' ] ;
306
307         foreach ( $this->_viewdefs [ 'panels' ] as $panelID => $panel )
308         {
309             $lastRowTouched = false ;
310             $lastRowID = count ( $this->_viewdefs [ 'panels' ] [ $panelID ] ) - 1 ; // zero offset
311
312             foreach ( $panel as $rowID => $row )
313             {
314
315                 foreach ( $row as $colID => $field )
316                     if ($field == $fieldName)
317                     {
318                         $lastRowTouched = $rowID ;
319                         $this->_viewdefs [ 'panels' ] [ $panelID ] [ $rowID ] [ $colID ] = $this->FILLER [ 'name' ];
320                     }
321
322             }
323
324             // if we removed a field from the last row of this panel, tidy up if the last row now consists only of (empty) or (filler)
325
326             if ( $lastRowTouched ==  $lastRowID )
327             {
328                 $lastRow = $this->_viewdefs [ 'panels' ] [ $panelID ] [ $lastRowID ] ; // can't use 'end' for this as we need the key as well as the value...
329
330                 $empty = true ;
331
332                 foreach ( $lastRow as $colID => $field )
333                     $empty &=  $field == MBConstants::$EMPTY ['name' ] || $field == $this->FILLER [ 'name' ]  ;
334
335                 if ($empty)
336                 {
337                     unset ( $this->_viewdefs [ 'panels' ] [ $panelID ] [ $lastRowID ] ) ;
338                     // if the row was the only one in the panel, and the panel is not the first (default) panel, then remove the panel also
339                                         if ( count ( $this->_viewdefs [ 'panels' ] [ $panelID ] ) == 0 && $panelID != $firstPanelID )
340                                                 unset ( $this->_viewdefs [ 'panels' ] [ $panelID ] ) ;
341                 }
342
343             }
344
345             $result |= ($lastRowTouched !== false ); // explicitly compare to false as row 0 will otherwise evaluate as false
346         }
347
348         return $result ;
349
350     }
351
352     function setPanelDependency ( $panelID , $dependency )
353     {
354         // only accept dependencies for pre-existing panels
355         if ( ! isset ( $this->_viewdefs [ 'panels' ] [ $panelID ] ) )
356                 return false;
357
358         $this->_viewdefs  [ 'templateMeta' ] [ 'dependency' ] [ $panelID ] = $dependency ;
359         return true ;
360     }
361
362     /*
363      * Return an integer value for the next unused panel identifier, such that it and any larger numbers are guaranteed to be unused already in the layout
364      * Necessary when adding new panels to a layout
365      * @return integer First unique panel ID suffix
366      */
367     function getFirstNewPanelId ()
368     {
369         $firstNewPanelId = 0 ;
370         foreach ( $this->_viewdefs [ 'panels' ] as $panelID => $panel )
371         {
372             // strip out all but the numerics from the panelID - can't just use a cast as numbers may not be first in the string
373             for ( $i = 0, $result = '' ; $i < strlen ( $panelID ) ; $i ++ )
374             {
375                 if (is_numeric ( $panelID [ $i ] ))
376                 {
377                     $result .= $panelID [ $i ] ;
378                 }
379             }
380
381             $firstNewPanelId = max ( ( int ) $result, $firstNewPanelId ) ;
382         }
383         return $firstNewPanelId + 1 ;
384     }
385
386     /*
387      * Load the panel layout from the submitted form and update the _viewdefs
388      */
389     protected function _populateFromRequest ( &$fielddefs )
390     {
391         $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . "->populateFromRequest()" ) ;
392         $i = 1 ;
393
394         // set up the map of panel# (as provided in the _REQUEST) to panel ID (as used in $this->_viewdefs['panels'])
395         $i = 1 ;
396         foreach ( $this->_viewdefs [ 'panels' ] as $panelID => $panel )
397         {
398             $panelMap [ $i ++ ] = $panelID ;
399         }
400
401         foreach ( $_REQUEST as $key => $displayLabel )
402         {
403             $components = explode ( '-', $key ) ;
404             if ($components [ 0 ] == 'panel' && $components [ 2 ] == 'label')
405             {
406                 $panelMap [ $components [ '1' ] ] = $displayLabel ;
407             }
408         }
409
410         $this->_viewdefs [ 'panels' ] = array () ; // because the new field properties should replace the old fields, not be merged
411
412         // run through the $_REQUEST twice - first to obtain the fieldnames, the second to update the field properties
413         for ( $pass=1 ; $pass<=2 ; $pass++ )
414         {
415                 foreach ( $_REQUEST as $slot => $value )
416                 {
417                 $slotComponents = explode ( '-', $slot ) ; // [0] = 'slot', [1] = panel #, [2] = slot #, [3] = property name
418
419                 if ($slotComponents [ 0 ] == 'slot')
420                 {
421                         $slotNumber = $slotComponents [ '2' ] ;
422                         $panelID = $panelMap [ $slotComponents [ '1' ] ] ;
423                         $rowID = floor ( $slotNumber / $this->getMaxColumns () ) ;
424                         $colID = $slotNumber - ($rowID * $this->getMaxColumns ()) ;
425                         $property = $slotComponents [ '3' ] ;
426
427                         //If this field has a custom definition, copy that over
428                         if ( $pass == 1 )
429                         {
430                                 if ( $property == 'name' )
431                                 $this->_viewdefs [ 'panels' ] [ $panelID ] [ $rowID ] [ $colID ] = $value ;
432                         } else
433                         {
434                                 // update fielddefs for this property in the provided position
435                                 if ( isset ( $this->_viewdefs [ 'panels' ] [ $panelID ] [ $rowID ] [ $colID ] ) )
436                                 {
437                                         $fieldname = $this->_viewdefs [ 'panels' ] [ $panelID ] [ $rowID ] [ $colID ] ;
438                                                         $fielddefs [ $fieldname ] [ $property ] = $value ;
439                                 }
440                         }
441                 }
442
443                 }
444         }
445         
446         //Set the tabs setting
447         if (isset($_REQUEST['panels_as_tabs']))
448         {
449                 if ($_REQUEST['panels_as_tabs'] == false || $_REQUEST['panels_as_tabs'] == "false")
450                    $this->setUseTabs( false );
451                 else
452                    $this->setUseTabs( true );
453         }
454         
455         //bug: 38232 - Set the sync detail and editview settings
456         if (isset($_REQUEST['sync_detail_and_edit']))
457         {
458                 if ($_REQUEST['sync_detail_and_edit'] === false || $_REQUEST['sync_detail_and_edit'] === "false")
459             {
460                    $this->setSyncDetailEditViews( false );
461             }
462             elseif(!empty($_REQUEST['sync_detail_and_edit']))
463             {
464                    $this->setSyncDetailEditViews( true );
465             }
466         }
467
468         $GLOBALS [ 'log' ]->debug ( print_r ( $this->_viewdefs [ 'panels' ], true ) ) ;
469
470     }
471
472     /*  Convert our internal format back to the standard Canonical MetaData layout
473      *  First non-(empty) field goes in at column 0; all other (empty)'s removed
474      *  Studio required fields are also added to the layout.
475      *  Do this AFTER reading in all the $_REQUEST parameters as can't guarantee the order of those, and we need to operate on complete rows
476      */
477     protected function _convertToCanonicalForm ( $panels , $fielddefs )
478     {
479         $previousViewDef = $this->getFieldsFromLayout($this->implementation->getViewdefs ());
480         $oldDefs = $this->implementation->getViewdefs ();
481         $currentFields = $this->getFieldsFromLayout($this->_viewdefs);
482         foreach($fielddefs as $field => $def)
483         {
484                 if (self::fieldIsRequired($def) && !isset($currentFields[$field]))
485                 {
486                 //Use the previous viewdef if this field was on it.
487                 if (isset($previousViewDef[$field]))
488                 {
489                     $def = $previousViewDef[$field];
490                 }
491                 //next see if the field was on the original layout.
492                 else if (isset ($this->_originalViewDef [ $field ]))
493                 {
494                     $def = $this->_originalViewDef [ $field ] ;   
495                 }
496                 //Otherwise make up a viewdef for it from field_defs
497                 else
498                 {
499                     $def =  self::_trimFieldDefs( $def ) ;
500                 }
501                 $this->addField($def);
502                 }
503         }
504         
505         foreach ( $panels as $panelID => $panel )
506         {
507             // remove all (empty)s
508             foreach ( $panel as $rowID => $row )
509             {
510                 $startOfRow = true ;
511                 $offset = 0 ;
512                 foreach ( $row as $colID => $fieldname )
513                 {
514                     if ($fieldname == MBConstants::$EMPTY[ 'name' ])
515                     {
516                         // if a leading (empty) then remove (by noting that remaining fields need to be shuffled along)
517                         if ($startOfRow)
518                         {
519                             $offset ++ ;
520                         }
521                         unset ( $row [ $colID ] ) ;
522                     } else
523                     {
524                         $startOfRow = false ;
525                     }
526                 }
527
528                 // reindex to remove leading (empty)s and replace fieldnames by full definition from fielddefs
529                 $newRow = array ( ) ;
530                 foreach ( $row as $colID => $fieldname )
531                 {
532                         if ($fieldname == null)
533                            continue;
534                     
535                     //Backwards compatibility and a safeguard against multiple calls to _convertToCanonicalForm
536                            if(is_array($fieldname))
537                     {
538                         $newRow [ $colID - $offset ] = $fieldname;
539                         continue;
540                     }
541                         
542                         //Replace (filler) with the empty string
543                         if ($fieldname == $this->FILLER[ 'name' ]) {
544                         $newRow [ $colID - $offset ] = '' ;
545                     }
546                     //Use the previous viewdef if this field was on it.
547                                         else if (isset($previousViewDef[$fieldname]))
548                         {
549                                  $newRow [ $colID - $offset ] = $previousViewDef[$fieldname];
550                         //We should copy over the tabindex if it is set.
551                         if (isset ($fielddefs [ $fieldname ]) && !empty($fielddefs [ $fieldname ]['tabindex']))
552                             $newRow [ $colID - $offset ]['tabindex'] = $fielddefs [ $fieldname ]['tabindex'];
553                         }
554                     //next see if the field was on the original layout.
555                     else if (isset ($this->_originalViewDef [ $fieldname ]))
556                     {
557                         $newRow [ $colID - $offset ] = $this->_originalViewDef [ $fieldname ] ;  
558                         //We should copy over the tabindex if it is set.
559                         if (isset ($fielddefs [ $fieldname ]) && !empty($fielddefs [ $fieldname ]['tabindex']))
560                             $newRow [ $colID - $offset ]['tabindex'] = $fielddefs [ $fieldname ]['tabindex']; 
561                     }
562                         //Otherwise make up a viewdef for it from field_defs
563                         else if (isset ($fielddefs [ $fieldname ]))
564                         {
565                                 $newRow [ $colID - $offset ] =  self::_trimFieldDefs( $fielddefs [ $fieldname ] ) ;
566                                 
567                         }
568                         //No additional info on this field can be found, jsut use the name;
569                         else 
570                         {
571                         $newRow [ $colID - $offset ] = $fieldname;
572                         }
573                 }
574                 $panels [ $panelID ] [ $rowID ] = $newRow ;
575             }
576         }
577         
578         return $panels ;
579     }
580
581     /*
582      * Convert from the standard MetaData format to our internal format
583      * Replace NULL with (filler) and missing entries with (empty)
584      */
585     protected function _convertFromCanonicalForm ( $panels , $fielddefs )
586     {
587         if (empty ( $panels ))
588             return ;
589
590         // Fix for a flexibility in the format of the panel sections - if only one panel, then we don't have a panel level defined,
591                 // it goes straight into rows
592         // See EditView2 for similar treatment
593         if (! empty ( $panels ) && count ( $panels ) > 0)
594         {
595             $keys = array_keys ( $panels ) ;
596             if (is_numeric ( $keys [ 0 ] ))
597             {
598                 $defaultPanel = $panels ;
599                 unset ( $panels ) ; //blow away current value
600                 $panels [ 'default' ] = $defaultPanel ;
601             }
602         }
603
604         $newPanels = array ( ) ;
605
606         // replace '' with (filler)
607         foreach ( $panels as $panelID => $panel )
608         {
609             foreach ( $panel as $rowID => $row )
610             {
611                 $cols = 0;
612                 foreach ( $row as $colID => $col )
613                 {
614                     if ( ! empty ( $col ) )
615                     {
616                         if ( is_string ( $col ))
617                         {
618                             $fieldname = $col ;
619                         } else if (! empty ( $col [ 'name' ] ))
620                         {
621                             $fieldname = $col [ 'name' ] ;
622                         }
623                     } else
624                     {
625                         $fieldname = $this->FILLER['name'] ;
626                     }
627
628                     $newPanels [ $panelID ] [ $rowID ] [ $cols ] = $fieldname ;
629                     $cols++;
630                 }
631             }
632         }
633
634         // replace missing fields with (empty)
635         foreach ( $newPanels as $panelID => $panel )
636         {
637             $column = 0 ;
638             foreach ( $panel as $rowID => $row )
639             {
640                 // pad between fields on a row
641                 foreach ( $row as $colID => $col )
642                 {
643                     for ( $i = $column + 1 ; $i < $colID ; $i ++ )
644                     {
645                         $row [ $i ] = MBConstants::$EMPTY ['name'];
646                     }
647                     $column = $colID ;
648                 }
649                 // now pad out to the end of the row
650                 if (($column + 1) < $this->getMaxColumns ())
651                 { // last column is maxColumns-1
652                     for ( $i = $column + 1 ; $i < $this->getMaxColumns () ; $i ++ )
653                     {
654                         $row [ $i ] = MBConstants::$EMPTY ['name'] ;
655                     }
656                 }
657                 ksort ( $row ) ;
658                 $newPanels [ $panelID ] [ $rowID ] = $row ;
659             }
660         }
661
662         return $newPanels ;
663     }
664     
665     protected function getFieldsFromLayout($viewdef) {
666         if (isset($viewdef['panels']))
667         {
668                 $panels = $viewdef['panels']; 
669         } else {
670         $panels = $viewdef[self::$variableMap [ $this->_view ] ]['panels']; 
671         }
672         
673         $ret = array();
674         if (is_array($panels)) 
675         {       
676                 foreach ( $panels as $rows) {
677                     foreach ($rows as $fields) {
678                         //wireless layouts have one less level of depth
679                         if (is_array($fields) && isset($fields['name'])) {
680                                 $ret[$fields['name']] = $fields;  
681                                 continue;
682                         }
683                         if (!is_array($fields)) {
684                                 $ret[$fields] = $fields;
685                                 continue;
686                         }
687                         foreach ($fields as $field) {
688                             if (is_array($field) && !empty($field['name']))
689                             {
690                                 $ret[$field['name']] = $field;  
691                             }
692                             else if(!is_array($field)){
693                             $ret[$field] = $field;
694                         }                           
695                         }
696                     }
697                 }
698         }
699         return $ret;
700     }
701     
702     protected function fieldIsRequired($def)
703     {
704         if (isset($def['studio']))
705         { 
706                 if (is_array($def['studio']))
707                 {
708                         if (!empty($def['studio'][$this->_view]) && $def['studio'][$this->_view] == "required")
709                         {
710                                 return true;
711     }
712                         else if (!empty($def['studio']['required']) && $def['studio']['required'] == true)
713                         {
714                                 return true;
715                         }
716                 }
717                 else if ($def['studio'] == "required" ){
718                   return true;
719                 }
720     }
721         return false;
722     }
723
724     static function _trimFieldDefs ( $def )
725         {
726                 $ret = array_intersect_key ( $def , 
727             array ( 'studio' => true , 'name' => true , 'label' => true , 'displayParams' => true , 'comment' => true , 
728                     'customCode' => true , 'customLabel' => true , 'tabindex' => true , 'hideLabel' => true) ) ;
729         if (!empty($def['vname']) && empty($def['label']))
730             $ret['label'] = $def['vname'];
731                 return $ret;
732         }
733         
734         public function getUseTabs(){
735         if (isset($this->_viewdefs  [ 'templateMeta' ]['useTabs']))
736            return $this->_viewdefs  [ 'templateMeta' ]['useTabs'];
737            
738         return false;
739     }
740     
741     public function setUseTabs($useTabs){
742         $this->_viewdefs  [ 'templateMeta' ]['useTabs'] = $useTabs;
743     }
744     
745     /**
746      * Return whether the Detail & EditView should be in sync.
747      */
748         public function getSyncDetailEditViews(){
749         if (isset($this->_viewdefs  [ 'templateMeta' ]['syncDetailEditViews']))
750            return $this->_viewdefs  [ 'templateMeta' ]['syncDetailEditViews'];
751            
752         return false;
753     }
754     
755     /**
756      * Sync DetailView & EditView. This should only be set on the EditView
757      * @param bool $syncViews
758      */
759     public function setSyncDetailEditViews($syncDetailEditViews){
760         $this->_viewdefs  [ 'templateMeta' ]['syncDetailEditViews'] = $syncDetailEditViews;
761     }
762
763     /**
764      * Getter function to get the implementation method which is a private variable
765      * @return DeployedMetaDataImplementation
766      */
767     public function getImplementation(){
768         return $this->implementation;
769     }
770
771     /**
772      * Public access to _convertFromCanonicalForm
773      * @param  $panels
774      * @param  $fielddefs
775      * @return array
776      */
777     public function convertFromCanonicalForm ( $panels , $fielddefs )
778     {
779         return $this->_convertFromCanonicalForm ( $panels , $fielddefs );
780     }
781
782      /**
783      * Public access to _convertToCanonicalForm
784      * @param  $panels
785      * @param  $fielddefs
786      * @return array
787      */
788     public function convertToCanonicalForm ( $panels , $fielddefs )
789     {
790         return $this->_convertToCanonicalForm ( $panels , $fielddefs );
791     }
792
793     
794     /**
795      * @return Array list of fields in this module that have the calculated property
796      */
797     public function getCalculatedFields() {
798         $ret = array();
799         foreach ($this->_fielddefs as $field => $def)
800         {
801             if(!empty($def['calculated']) && !empty($def['formula']))
802             {
803                 $ret[] = $field;
804             }
805         }
806         
807         return $ret;
808     }
809
810     /**
811      * @return Array fields in the given panel
812      */
813     public function getFieldsInPanel($targetPanel) {
814         return iterator_to_array(new RecursiveIteratorIterator(new RecursiveArrayIterator($this->_viewdefs['panels'][$targetPanel])));
815     }
816 }
817
818 ?>