mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
79 lines
1.7 KiB
PHP
79 lines
1.7 KiB
PHP
<?php
|
|
$module_name='AM_ProjectTemplates';
|
|
$subpanel_layout = array(
|
|
'top_buttons' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopCreateButton',
|
|
),
|
|
1 =>
|
|
array(
|
|
'widget_class' => 'SubPanelTopSelectButton',
|
|
'popup_module' => 'AM_ProjectTemplates',
|
|
),
|
|
),
|
|
'where' => '',
|
|
'list_fields' =>
|
|
array(
|
|
'name' =>
|
|
array(
|
|
'vname' => 'LBL_NAME',
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'width' => '45%',
|
|
'default' => true,
|
|
),
|
|
'assigned_user_name' =>
|
|
array(
|
|
'link' => true,
|
|
'type' => 'relate',
|
|
'studio' => 'visible',
|
|
'vname' => 'LBL_ASSIGNED_TO_NAME',
|
|
'id' => 'ASSIGNED_USER_ID',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'target_module' => '',
|
|
'target_record_key' => 'assigned_user_id',
|
|
),
|
|
'status' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'default' => true,
|
|
'studio' => 'visible',
|
|
'vname' => 'LBL_STATUS',
|
|
'width' => '10%',
|
|
),
|
|
'priority' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'default' => true,
|
|
'studio' => 'visible',
|
|
'vname' => 'LBL_PRIORITY',
|
|
'width' => '10%',
|
|
),
|
|
'date_modified' =>
|
|
array(
|
|
'vname' => 'LBL_DATE_MODIFIED',
|
|
'width' => '45%',
|
|
'default' => true,
|
|
),
|
|
'edit_button' =>
|
|
array(
|
|
'vname' => 'LBL_EDIT_BUTTON',
|
|
'widget_class' => 'SubPanelEditButton',
|
|
'module' => 'AM_ProjectTemplates',
|
|
'width' => '4%',
|
|
'default' => true,
|
|
),
|
|
'remove_button' =>
|
|
array(
|
|
'vname' => 'LBL_REMOVE',
|
|
'widget_class' => 'SubPanelRemoveButton',
|
|
'module' => 'AM_ProjectTemplates',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
),
|
|
),
|
|
);
|