Files
crm.clientright.ru/modules/PDFMaker2/resources/functions/entityName.php

16 lines
427 B
PHP
Executable File

<?php
if (!function_exists('pdfmakerGetEntityName')) {
function pdfmakerGetEntityName($entityid)
{
$adb = PearDatabase::getInstance();
$result = $adb->pquery("SELECT setype FROM vtiger_crmentity WHERE crmid=?", array($entityid));
$row = $adb->fetchByAssoc($result);
$return = getEntityName($row['setype'], array($entityid));
return $return[$entityid];
}
}