mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
89 lines
1.7 KiB
PHP
Executable File
89 lines
1.7 KiB
PHP
Executable File
<?php
|
|
$module_name = 'jjwg_Areas';
|
|
$listViewDefs [$module_name] =
|
|
array(
|
|
'NAME' =>
|
|
array(
|
|
'width' => '32%',
|
|
'label' => 'LBL_NAME',
|
|
'default' => true,
|
|
'link' => true,
|
|
),
|
|
'CITY' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_CITY',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'STATE' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_STATE',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'COUNTRY' =>
|
|
array(
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_COUNTRY',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'ASSIGNED_USER_NAME' =>
|
|
array(
|
|
'width' => '9%',
|
|
'label' => 'LBL_ASSIGNED_TO_NAME',
|
|
'module' => 'Employees',
|
|
'id' => 'ASSIGNED_USER_ID',
|
|
'default' => true,
|
|
),
|
|
'MODIFIED_BY_NAME' =>
|
|
array(
|
|
'type' => 'relate',
|
|
'link' => 'modified_user_link',
|
|
'label' => 'LBL_MODIFIED_NAME',
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'DATE_MODIFIED' =>
|
|
array(
|
|
'type' => 'datetime',
|
|
'label' => 'LBL_DATE_MODIFIED',
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'DATE_ENTERED' =>
|
|
array(
|
|
'type' => 'datetime',
|
|
'label' => 'LBL_DATE_ENTERED',
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'DESCRIPTION' =>
|
|
array(
|
|
'type' => 'text',
|
|
'label' => 'LBL_DESCRIPTION',
|
|
'sortable' => false,
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'COORDINATES' =>
|
|
array(
|
|
'type' => 'text',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_COORDINATES',
|
|
'sortable' => false,
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'CREATED_BY_NAME' =>
|
|
array(
|
|
'type' => 'relate',
|
|
'link' => 'created_by_link',
|
|
'label' => 'LBL_CREATED',
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
);
|