mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
101 lines
3.0 KiB
PHP
101 lines
3.0 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
|
|
global $log;
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
global $mod_strings;
|
|
$current_module_strings = return_module_language($current_language, 'Reports');
|
|
|
|
global $list_max_entries_per_page;
|
|
global $urlPrefix,$current_user;
|
|
|
|
$log = LoggerManager::getLogger('report_list');
|
|
|
|
global $currentModule;
|
|
|
|
global $image_path;
|
|
global $theme;
|
|
|
|
global $theme;
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
// focus_list is the means of passing data to a ListView.
|
|
global $focus_list;
|
|
|
|
$folderid = intval($_REQUEST['folderid']); // crmv@30967
|
|
|
|
$list_report_form = new VteSmarty();
|
|
//sk@2
|
|
$dateFormat = parse_calendardate('');
|
|
$list_report_form->assign("dateFormat", $dateFormat);
|
|
//sk@2e
|
|
$list_report_form->assign("MOD", $mod_strings);
|
|
$list_report_form->assign("APP", $app_strings);
|
|
$list_report_form->assign("APPLIST", $app_list_strings);
|
|
$list_report_form->assign("THEME", $theme);
|
|
$list_report_form->assign("IMAGE_PATH", $image_path);
|
|
|
|
$list_report_form->assign("CATEGORY",getParentTab());
|
|
$list_report_form->assign("MODULE",$currentModule);
|
|
$list_report_form->assign("NEWRPT_BUTTON",$newrpt_button);
|
|
$list_report_form->assign("NEWRPT_FLDR_BUTTON",$newrpt_fldr_button);
|
|
$repObj = CRMEntity::getInstance('Reports');
|
|
|
|
// crmv@30967
|
|
$folderlist = $repObj->sgetRptFldr('SAVED', $folderid);
|
|
$cusFldrDtls = $repObj->sgetRptFldr('CUSTOMIZED', $folderid);
|
|
$folderlist = array_merge($folderlist, $cusFldrDtls);
|
|
//crmv@sdk-25785
|
|
$sdkfolders = SDK::getReportFolders(true,$folderid); // crmv@163922
|
|
if (!empty($sdkfolders) && (empty($folderid) || array_key_exists($folderid, $sdkfolders))) {
|
|
//crmv@65492 - 25
|
|
if (empty($folderid)) {
|
|
$folderlist = array_merge($folderlist, $sdkfolders);
|
|
} else {
|
|
$folderlist = array_merge($folderlist, array($sdkfolders[$folderid])); //crmv@63341
|
|
}
|
|
//crmv@65492e - 25
|
|
}
|
|
// order the list of folders by name
|
|
usort($folderlist, function($a, $b) {
|
|
return strcasecmp($a['name'], $b['name']);
|
|
});
|
|
//crmv@sdk-25785e
|
|
$list_report_form->assign("REPT_FLDR", $folderlist);
|
|
$list_report_form->assign("FOLDERID", $folderid);
|
|
// crmv@30967e
|
|
|
|
$fldrids_lists = array(); // crmv@167234
|
|
foreach($cusFldrDtls as $entries)
|
|
{
|
|
$fldrids_lists [] =$entries['id'];
|
|
}
|
|
|
|
// crmv@97862
|
|
if(count($fldrids_lists) > 0) {
|
|
$list_report_form->assign("FOLDE_IDS",implode(',',$fldrids_lists));
|
|
}
|
|
// crmv@97862e
|
|
|
|
// crmv@30967 crmv@163922
|
|
$allfolders = $repObj->sgetRptFldr(false,null,"getAllButSDKFolders");
|
|
$list_report_form->assign("REPT_FOLDERS", $allfolders);
|
|
// crmv@30967e crmv@163922e
|
|
|
|
$list_report_form->assign("DEL_DENIED",vtlib_purify($_REQUEST['del_denied']));
|
|
|
|
$list_report_form->assign("HIDE_BUTTON_SEARCH", true); // crmv@194449
|
|
|
|
if($_REQUEST['mode'] == 'ajax')
|
|
$list_report_form->display("ReportsCustomize.tpl");
|
|
elseif($_REQUEST['mode'] == 'ajaxdelete')
|
|
$list_report_form->display("ReportContents.tpl");
|
|
else
|
|
$list_report_form->display("Reports.tpl");
|
|
|
|
?>
|