Files
crm.e5.pl/modules/EcmActions/metadata/detailviewdefs.php
2024-12-03 09:55:11 +00:00

106 lines
2.0 KiB
PHP

<?php
$module_name = 'EcmActions';
$viewdefs [$module_name] = array (
'DetailView' => array (
'templateMeta' => array (
'form' => array (
'buttons' => array (
0 => 'EDIT',
//1 => 'DUPLICATE',
1 => 'DELETE',
// 3 => 'FIND_DUPLICATES'
)
),
'maxColumns' => '2',
'widths' => array (
0 => array (
'label' => '10',
'field' => '30'
),
1 => array (
'label' => '10',
'field' => '30'
)
),
'useTabs' => false,
'tabDefs' => array (
'DEFAULT' => array (
'newTab' => false,
'panelDefault' => 'expanded'
),
'LBL_EDITVIEW_PANEL1' => array (
'newTab' => false,
'panelDefault' => 'expanded'
)
),
'includes' => array (
0 => array (
'file' => 'modules/EcmActions/js/DetailViewDocumentReady.js'
)
)
),
'panels' => array (
'default' => array (
0 => array (
0 => array (
'name' => 'name',
'label' => 'LBL_NAME',
'displayParams' => array (
'size' => 40
)
),
1 => array (
'name' => 'indeks',
'label' => 'LBL_INDEKS'
)
),
1 => array (
0 => array (
'name' => 'category',
'label' => 'LBL_CATEGORY'
),
1 => array (
'name' => 'shape',
'label' => 'Forma'
)
),
2 => array (
0 => array (
'name' => 'time',
'customCode' => '<span id="mojtime">{$fields.time.value}</span>',
'label' => 'LBL_TIME'
),
1 => array (
'name' => 'performance',
'label' => 'Wydajność'
)
),
3 => array (
0 => array (
'name' => 'cost_action',
'label' => 'LBL_COST_ACTION'
)
),
4 => array (
0 => array (
'name' => 'cost_hour',
'label' => 'LBL_COST_HOUR'
)
),
6 => array (
0 => 'description'
)
),
'LBL_RELATED_PRODUCTS' => array(
array (
array (
'name' => 'related_products',
'customCode' => "{include file='modules/EcmActions/tpl/DetailViewReletedProducts.tpl'}",
),
),
),
)
)
);
?>