mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
37 lines
693 B
PHP
37 lines
693 B
PHP
<?php
|
|
$module_name = 'AM_ProjectTemplates';
|
|
$listViewDefs [$module_name] =
|
|
array(
|
|
'NAME' =>
|
|
array(
|
|
'width' => '32%',
|
|
'label' => 'LBL_NAME',
|
|
'default' => true,
|
|
'link' => true,
|
|
),
|
|
'STATUS' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'default' => true,
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_STATUS',
|
|
'width' => '10%',
|
|
),
|
|
'PRIORITY' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'default' => true,
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_PRIORITY',
|
|
'width' => '10%',
|
|
),
|
|
'ASSIGNED_USER_NAME' =>
|
|
array(
|
|
'width' => '9%',
|
|
'label' => 'LBL_ASSIGNED_TO_NAME',
|
|
'module' => 'Employees',
|
|
'id' => 'ASSIGNED_USER_ID',
|
|
'default' => true,
|
|
),
|
|
);
|