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,39 @@
<?php
$listViewDefs ['Project'] =
array (
'NAME' =>
array (
'width' => '40%',
'label' => 'LBL_LIST_NAME',
'link' => true,
'default' => true,
),
'ESTIMATED_START_DATE' =>
array (
'width' => '20%',
'label' => 'LBL_DATE_START',
'link' => false,
'default' => true,
),
'ESTIMATED_END_DATE' =>
array (
'width' => '20%',
'label' => 'LBL_DATE_END',
'link' => false,
'default' => true,
),
'STATUS' =>
array (
'width' => '20%',
'label' => 'LBL_STATUS',
'link' => false,
'default' => true,
),
'ASSIGNED_USER_NAME' =>
array (
'width' => '10%',
'label' => 'LBL_LIST_ASSIGNED_USER_ID',
'default' => true,
),
);
?>