This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
<?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,
),
);
?>