mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
59 lines
1.0 KiB
PHP
Executable File
59 lines
1.0 KiB
PHP
Executable File
<?php
|
|
$module_name = 'jjwg_Address_Cache';
|
|
$viewdefs [$module_name] =
|
|
array(
|
|
'QuickCreate' =>
|
|
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' => 'lat',
|
|
'label' => 'LBL_LAT',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'lng',
|
|
'label' => 'LBL_LNG',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|