Files
crm.e5.pl/custom/modules/Cases/metadata/subpanels/AccountForAccounts.php
2024-04-27 09:23:34 +02:00

60 lines
1.2 KiB
PHP
Executable File

<?php
// created: 2011-10-04 15:17:16
$subpanel_layout['list_fields'] = array (
'case_number' =>
array (
'vname' => 'LBL_LIST_NUMBER',
'width' => '6%',
'default' => true,
),
'name' =>
array (
'vname' => 'LBL_LIST_SUBJECT',
'widget_class' => 'SubPanelDetailViewLink',
'width' => '50%',
'default' => true,
),
'status' =>
array (
'vname' => 'LBL_LIST_STATUS',
'width' => '10%',
'default' => true,
),
'priority' =>
array (
'vname' => 'LBL_LIST_PRIORITY',
'width' => '10%',
'default' => true,
),
'date_entered' =>
array (
'vname' => 'LBL_LIST_DATE_CREATED',
'width' => '15%',
'default' => true,
),
'assigned_user_name' =>
array (
'name' => 'assigned_user_name',
'vname' => 'LBL_LIST_ASSIGNED_TO_NAME',
'width' => '10%',
'default' => true,
),
'edit_button' =>
array (
'vname' => 'LBL_EDIT_BUTTON',
'widget_class' => 'SubPanelEditButton',
'module' => 'Cases',
'width' => '4%',
'default' => true,
),
'remove_button' =>
array (
'vname' => 'LBL_REMOVE',
'widget_class' => 'SubPanelRemoveButton',
'module' => 'Cases',
'width' => '5%',
'default' => true,
),
);
?>