50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
|
|
require_once('include/database/PearDatabase.php');
|
|
require_once('include/utils/UserInfoUtil.php');
|
|
|
|
global $mod_strings;
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
|
|
$smarty = new vtigerCRM_Smarty;
|
|
$groupInfo=getAllGroupInfo();
|
|
|
|
$cnt=1;
|
|
$output='';
|
|
$list_header = array($mod_strings['LBL_LIST_TOOLS'],$mod_strings['LBL_GROUP_NAME'],$mod_strings['LBL_DESCRIPTION']);
|
|
$return_data = array();
|
|
foreach($groupInfo as $groupId=>$groupInfo)
|
|
{
|
|
|
|
$standCustFld = array();
|
|
$standCustFld['groupid']= $groupId;
|
|
$standCustFld['groupname']= $groupInfo[0];
|
|
$standCustFld['description']= $groupInfo[1];
|
|
$return_data[]=$standCustFld;
|
|
$cnt++;
|
|
}
|
|
|
|
$smarty->assign("LIST_HEADER",$list_header);
|
|
$smarty->assign("LIST_ENTRIES",$return_data);
|
|
$smarty->assign("PROFILES", $standCustFld);
|
|
$smarty->assign("THEME", $theme);
|
|
$smarty->assign("IMAGE_PATH",$image_path);
|
|
$smarty->assign("APP", $app_strings);
|
|
$smarty->assign("CMOD", $mod_strings);
|
|
$smarty->assign("MOD", return_module_language($current_language,'Settings'));
|
|
$smarty->assign('GRPCNT', count($return_data));
|
|
|
|
$smarty->display("ListGroup.tpl");
|
|
?>
|