mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
13 lines
400 B
PHP
Executable File
13 lines
400 B
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
$module_name = 'SecurityGroups';
|
|
$searchFields[$module_name] =
|
|
array(
|
|
'name' => array( 'query_type'=>'default'),
|
|
'current_user_only'=> array('query_type'=>'default','db_field'=>array('assigned_user_id'),'my_items'=>true),
|
|
'assigned_user_id'=> array('query_type'=>'default'),
|
|
);
|