mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
39 lines
1022 B
PHP
39 lines
1022 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
/* crmv@31780 */
|
|
|
|
global $login, $userId;
|
|
|
|
$module = vtlib_purify($_REQUEST['module']);
|
|
$recordid = intval($_REQUEST['recordid']);
|
|
|
|
if (!$login || !$userId) {
|
|
echo 'Login Failed';
|
|
} else {
|
|
|
|
$currentModule = $module;
|
|
|
|
$rm = RelationManager::getInstance();
|
|
$excludedMods = array('ModComments');
|
|
//if ($currentModule == 'Calendar') $excludedMods[] = 'Contacts'; // otherwise if more than 1 contact there's no related list to show
|
|
|
|
$relIds = $rm->getRelatedIds($module, $recordid, array(), $excludedMods, false, true);
|
|
|
|
$records = array();
|
|
foreach ($relIds as $mod=>$ids) {
|
|
foreach ($ids as $rid) {
|
|
$records[] = array(
|
|
'crmid' => $rid,
|
|
'module' => $mod,
|
|
'entityname' => getEntityName($mod, $rid, true),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
echo Zend_Json::encode(array('entries'=>$records, 'total'=>count($records)));
|
|
}
|
|
?>
|