95 lines
2.0 KiB
PHP
Executable File
95 lines
2.0 KiB
PHP
Executable File
<?php
|
|
$module_name = 'EcmSysInfos';
|
|
$listViewDefs [$module_name] = array (
|
|
'FIRST_NAME' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_FIRST_NAME',
|
|
'link' => true,
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'SECOND_NAME' => array(
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_SECOND_NAME',
|
|
'link' => false,
|
|
'width' => '10%',
|
|
'default' => false,
|
|
),
|
|
'LAST_NAME' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_LAST_NAME',
|
|
'link' => true,
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'PHONE_WORK' => array (
|
|
'width' => '15%',
|
|
'label' => 'LBL_OFFICE_PHONE',
|
|
'default' => true,
|
|
),
|
|
'EMAIL1' => array (
|
|
'width' => '15%',
|
|
'label' => 'LBL_EMAIL_ADDRESS',
|
|
'sortable' => false,
|
|
'link' => true,
|
|
'customCode' => '{$EMAIL1_LINK}{$EMAIL1}</a>',
|
|
'default' => true,
|
|
),
|
|
'PHONE_HOME' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_HOME_PHONE',
|
|
'default' => false,
|
|
),
|
|
'PHONE_MOBILE' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_MOBILE_PHONE',
|
|
'default' => false,
|
|
),
|
|
'ADDRESS_STREET' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_PRIMARY_ADDRESS_STREET',
|
|
'default' => false,
|
|
),
|
|
'ADDRESS_CITY' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_PRIMARY_ADDRESS_CITY',
|
|
'default' => false,
|
|
),
|
|
'ADDRESS_STATE' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_PRIMARY_ADDRESS_STATE',
|
|
'default' => false,
|
|
),
|
|
'ADDRESS_POSTALCODE' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_PRIMARY_ADDRESS_POSTALCODE',
|
|
'default' => false,
|
|
),
|
|
'DATE_ENTERED' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_DATE_ENTERED',
|
|
'default' => false,
|
|
),
|
|
'CREATED_BY_NAME' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_CREATED',
|
|
'default' => false,
|
|
),
|
|
'position_office' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_POSITION_OFFICE',
|
|
'default' => false,
|
|
),
|
|
'COST' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_COST',
|
|
'default' => false,
|
|
),
|
|
'DEPARTMENT' => array (
|
|
'width' => '10%',
|
|
'label' => 'LBL_DEPARTMENT',
|
|
'default' => false,
|
|
),
|
|
);
|
|
?>
|