Last active
December 18, 2015 16:29
-
-
Save proofek/5812148 to your computer and use it in GitHub Desktop.
Revisions
-
proofek revised this gist
Jun 19, 2013 . 1 changed file with 49 additions and 35 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,38 +1,52 @@ <?php <?php // created: 2013-06-19 07:45:46 $subpanel_layout['list_fields'] = array ( 'demo_suppliers_name' => array ( 'type' => 'relate', 'link' => true, 'vname' => 'LBL_SUPPLIER_NAME', 'id' => 'DEMO_SUPPLIERS_ID', 'width' => '10%', 'default' => true, 'widget_class' => 'SubPanelDetailViewLink', 'target_module' => 'Demo_Suppliers', 'target_record_key' => 'demo_suppliers_id', ), 'contact_type' => array ( 'type' => 'enum', 'studio' => 'visible', 'vname' => 'LBL_CONTACT_TYPE', 'width' => '10%', 'default' => true, ), 'value' => array ( 'type' => 'varchar', 'vname' => 'LBL_VALUE', 'width' => '10%', 'default' => true, ), 'date_modified' => array ( 'type' => 'datetime', 'vname' => 'LBL_DATE_MODIFIED', 'width' => '10%', 'default' => true, ), 'edit_button' => array ( 'widget_class' => 'SubPanelEditButton', 'module' => 'Demo_SupplierContactDetails', 'width' => '4%', 'default' => true, ), 'remove_button' => array ( 'widget_class' => 'SubPanelRemoveButton', 'module' => 'Demo_SupplierContactDetails', 'width' => '5%', 'default' => true, ), ); -
proofek created this gist
Jun 19, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ <?php $subpanel_layout['list_fields'] = array ( 'demo_suppliers_name' => array ( 'type' => 'relate', 'link' => true, 'vname' => 'LBL_SUPPLIER_NAME', 'id' => 'DEMO_SUPPLIERS_ID', 'width' => '10%', 'default' => true, 'widget_class' => 'SubPanelDetailViewLink', 'target_module' => 'Demo_Suppliers', 'target_record_key' => 'demo_suppliers_id', ), 'contact_type' => array ( 'type' => 'enum', 'studio' => 'visible', 'vname' => 'LBL_CONTACT_TYPE', 'width' => '10%', 'default' => true, ), 'value' => array ( 'type' => 'varchar', 'vname' => 'LBL_VALUE', 'width' => '10%', 'default' => true, ), 'date_modified' => array ( 'type' => 'datetime', 'vname' => 'LBL_DATE_MODIFIED', 'width' => '10%', 'default' => true, ), );