Files
crm.e5.pl/modules/EcmActions/metadata/listviewdefs.php

50 lines
1.0 KiB
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?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' => 'Linia',
2024-04-27 09:23:34 +02:00
'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',
),
);
?>