mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
86 lines
1.6 KiB
PHP
Executable File
86 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
$module_name = 'jjwg_Maps';
|
|
|
|
$viewdefs[$module_name] =
|
|
array(
|
|
'EditView' =>
|
|
array(
|
|
'templateMeta' =>
|
|
array(
|
|
'maxColumns' => '2',
|
|
'widths' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
1 =>
|
|
array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
),
|
|
'useTabs' => false,
|
|
),
|
|
'panels' =>
|
|
array(
|
|
'default' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'name',
|
|
'label' => 'LBL_NAME',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'assigned_user_name',
|
|
'label' => 'LBL_ASSIGNED_TO_NAME',
|
|
),
|
|
),
|
|
1 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'parent_name',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_FLEX_RELATE',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'unit_type',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_UNIT_TYPE',
|
|
),
|
|
),
|
|
2 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'module_type',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_MODULE_TYPE',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'distance',
|
|
'label' => 'LBL_DISTANCE',
|
|
),
|
|
),
|
|
3 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'description',
|
|
'comment' => 'Full text of the note',
|
|
'label' => 'LBL_DESCRIPTION',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|