23 lines
509 B
PHP
Executable File
23 lines
509 B
PHP
Executable File
<?php
|
|
//echo '<script type="text/javascript" src="modules/EcmWorkCards/ListViewDocumentReady.js"></script>';
|
|
$module_name = 'EcmWorkCards';
|
|
$listViewDefs [$module_name] = array (
|
|
'DATE' => array (
|
|
'type' => 'datetime',
|
|
'label' => 'LBL_DATE',
|
|
'link' => 'true',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
'align' => 'right',
|
|
),
|
|
'WORKER_NAME' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_WORKER_NAME',
|
|
'link' => 'false',
|
|
'width' => '70%',
|
|
'default' => true,
|
|
'align' => 'left',
|
|
),
|
|
);
|
|
?>
|