mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
15 lines
568 B
PHP
15 lines
568 B
PHP
<?php
|
|
$module_name = '<module_name>';
|
|
$layout_defs[$module_name]['subpanel_setup']['securitygroups'] = array(
|
|
'top_buttons' => array(array('widget_class' => 'SubPanelTopSelectButton', 'popup_module' => 'SecurityGroups', 'mode' => 'MultiSelect'),),
|
|
'order' => 900,
|
|
'sort_by' => 'name',
|
|
'sort_order' => 'asc',
|
|
'module' => 'SecurityGroups',
|
|
'refresh_page' => 1,
|
|
'subpanel_name' => 'default',
|
|
'get_subpanel_data' => 'SecurityGroups',
|
|
'add_subpanel_data' => 'securitygroup_id',
|
|
'title_key' => 'LBL_SECURITYGROUPS_SUBPANEL_TITLE',
|
|
);
|