mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
77 lines
1.5 KiB
PHP
Executable File
77 lines
1.5 KiB
PHP
Executable File
<?php
|
|
$module_name='jjwg_Areas';
|
|
$subpanel_layout = array(
|
|
'top_buttons' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopCreateButton',
|
|
),
|
|
1 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopSelectButton',
|
|
'popup_module' => 'jjwg_Areas',
|
|
),
|
|
),
|
|
'where' => '',
|
|
'list_fields' =>
|
|
array(
|
|
'name' =>
|
|
array(
|
|
'vname' => 'LBL_NAME',
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'width' => '45%',
|
|
'default' => true,
|
|
),
|
|
'city' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'vname' => 'LBL_CITY',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'state' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'vname' => 'LBL_STATE',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'country' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'vname' => 'LBL_COUNTRY',
|
|
'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_Areas',
|
|
'width' => '4%',
|
|
'default' => true,
|
|
),
|
|
'remove_button' =>
|
|
array(
|
|
'widget_class' => 'SubPanelRemoveButton',
|
|
'module' => 'jjwg_Areas',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
),
|
|
),
|
|
);
|