mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-25 08:57:55 +00:00
50 lines
891 B
PHP
Executable File
50 lines
891 B
PHP
Executable File
<?php
|
|
|
|
$module_name = 'SecurityGroups';
|
|
$viewdefs[$module_name]['EditView'] = array(
|
|
|
|
'templateMeta' => array('maxColumns' => '2',
|
|
|
|
'widths' => array(
|
|
|
|
array('label' => '10', 'field' => '30'),
|
|
|
|
array('label' => '10', 'field' => '30')
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
'panels' =>array(
|
|
'default' =>
|
|
array(
|
|
|
|
array(
|
|
array('name' => 'name', 'displayParams'=>array('required'=>true)),
|
|
'assigned_user_name',
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
array(
|
|
'noninheritable',
|
|
),
|
|
array(
|
|
'description',
|
|
),
|
|
),
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
);
|