mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
21 lines
459 B
PHP
Executable File
21 lines
459 B
PHP
Executable File
<?php
|
|
|
|
$module_name = 'jjwg_Areas';
|
|
$viewdefs[$module_name]['QuickCreate'] = array(
|
|
'templateMeta' => array('maxColumns' => '2',
|
|
'widths' => array(
|
|
array('label' => '10', 'field' => '30'),
|
|
array('label' => '10', 'field' => '30')
|
|
),
|
|
),
|
|
'panels' => array(
|
|
'default' =>
|
|
array(
|
|
array(
|
|
'name',
|
|
'assigned_user_name',
|
|
),
|
|
),
|
|
),
|
|
);
|