mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-25 00:56:49 +00:00
59 lines
1.0 KiB
PHP
59 lines
1.0 KiB
PHP
<?php
|
|
$module_name = 'TemplateSectionLine';
|
|
$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,
|
|
'tabDefs' =>
|
|
array(
|
|
'DEFAULT' =>
|
|
array(
|
|
'newTab' => false,
|
|
'panelDefault' => 'expanded',
|
|
),
|
|
),
|
|
),
|
|
'panels' =>
|
|
array(
|
|
'default' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
0 => 'name',
|
|
1 =>
|
|
array(
|
|
'name' => 'grp',
|
|
'label' => 'LBL_GRP',
|
|
),
|
|
),
|
|
1 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'description',
|
|
'comment' => 'Full text of the note',
|
|
'label' => 'LBL_DESCRIPTION',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|