57 lines
1.2 KiB
PHP
Executable File
57 lines
1.2 KiB
PHP
Executable File
<?php
|
|
echo '<script type="text/javascript" src="modules/EcmActions/ListViewDocumentReady.js"></script>';
|
|
$module_name = 'EcmActions';
|
|
$listViewDefs [$module_name] = array (
|
|
'INDEKS' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_INDEKS',
|
|
'link' => 'true',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'align' => 'left',
|
|
),
|
|
'NAME' => array (
|
|
'width' => '35%',
|
|
'label' => 'LBL_NAME',
|
|
'default' => true,
|
|
'link' => true,
|
|
'align' => 'left',
|
|
),
|
|
'CATEGORY' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_CATEGORY',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'align' => 'left',
|
|
),
|
|
'TIME' => array (
|
|
'type' => 'varchar',
|
|
'label' => 'LBL_TIME',
|
|
'width' => '15%',
|
|
'default' => true,
|
|
'align' => 'right',
|
|
),
|
|
'COST_ACTION' => array (
|
|
'type' => 'float',
|
|
'label' => 'LBL_COST_ACTION',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'align' => 'right',
|
|
),
|
|
'COST_HOUR' => array (
|
|
'type' => 'float',
|
|
'label' => 'LBL_COST_HOUR',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'align' => 'right',
|
|
),
|
|
'COST_OTHER' => array (
|
|
'type' => 'float',
|
|
'label' => 'LBL_COST_OTHER',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
'align' => 'right',
|
|
)
|
|
);
|
|
?>
|