0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-03-15 22:04:51 +00:00
salesagility_SuiteCRM/modules/SecurityGroups/metadata/listviewdefs.php

31 lines
567 B
PHP
Raw Permalink Normal View History

2013-10-20 16:24:09 +00:00
<?php
2019-01-25 13:51:46 +00:00
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
2013-10-20 16:24:09 +00:00
$module_name = 'SecurityGroups';
$listViewDefs[$module_name] = array(
2019-01-25 14:07:05 +00:00
'NAME' => array(
'width' => '32',
'label' => 'LBL_NAME',
2019-01-25 14:07:05 +00:00
'default' => true,
'link' => true),
2013-10-20 16:24:09 +00:00
2019-01-25 14:07:05 +00:00
'ASSIGNED_USER_NAME' => array(
'width' => '9',
2019-01-25 14:07:05 +00:00
'label' => 'LBL_ASSIGNED_TO_NAME',
2013-10-20 16:24:09 +00:00
'default' => true),
2019-01-25 14:07:05 +00:00
'NONINHERITABLE' => array(
'width' => '9',
2019-01-25 14:07:05 +00:00
'label' => 'LBL_NONINHERITABLE',
2013-10-20 16:24:09 +00:00
'default' => true),
2019-01-25 14:07:05 +00:00
2013-10-20 16:24:09 +00:00
);