mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
70 lines
1.4 KiB
PHP
Executable File
70 lines
1.4 KiB
PHP
Executable File
<?php
|
|
$module_name='jjwg_Address_Cache';
|
|
$subpanel_layout = array(
|
|
'top_buttons' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopCreateButton',
|
|
),
|
|
1 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopSelectButton',
|
|
'popup_module' => 'jjwg_Adress_Cache',
|
|
),
|
|
),
|
|
'where' => '',
|
|
'list_fields' =>
|
|
array(
|
|
'name' =>
|
|
array(
|
|
'vname' => 'LBL_NAME',
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'width' => '45%',
|
|
'default' => true,
|
|
),
|
|
'lat' =>
|
|
array(
|
|
'type' => 'decimal',
|
|
'vname' => 'LBL_LAT',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'lng' =>
|
|
array(
|
|
'type' => 'decimal',
|
|
'vname' => 'LBL_LNG',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'date_modified' =>
|
|
array(
|
|
'vname' => 'LBL_DATE_MODIFIED',
|
|
'width' => '45%',
|
|
'default' => true,
|
|
),
|
|
'assigned_user_name' =>
|
|
array(
|
|
'link' => 'assigned_user_link',
|
|
'type' => 'relate',
|
|
'vname' => 'LBL_ASSIGNED_TO_NAME',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'edit_button' =>
|
|
array(
|
|
'widget_class' => 'SubPanelEditButton',
|
|
'module' => 'jjwg_Adress_Cache',
|
|
'width' => '4%',
|
|
'default' => true,
|
|
),
|
|
'remove_button' =>
|
|
array(
|
|
'widget_class' => 'SubPanelRemoveButton',
|
|
'module' => 'jjwg_Adress_Cache',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
),
|
|
),
|
|
);
|