Skip to content
Snippets Groups Projects
Commit 868fc4a6 authored by madhu sr's avatar madhu sr
Browse files

Getting related project ids for contacts only if the project module is active

parent a6419c5f
No related branches found
No related tags found
No related merge requests found
......@@ -787,8 +787,13 @@ class Contacts extends CRMEntity {
$button .= "<input title='". getTranslatedString('LBL_ADD_NEW')." ". getTranslatedString($singular_modname)."' accessyKey='F' class='crmbutton small create' onclick='fnvshobj(this,\"sendmail_cont\");sendmail(\"$this_module\",$id);' type='button' name='button' value='". getTranslatedString('LBL_ADD_NEW')." ". getTranslatedString($singular_modname)."'></td>";
}
}
$projectModuleInstance = Vtiger_Module_Model::getInstance("Project");
//checking the project module is active.
$isProjectModuleActive = $projectModuleInstance ? $projectModuleInstance->isActive() : false;
$relatedIds = array_merge(array($id), $this->getRelatedPotentialIds($id), $this->getRelatedTicketIds($id), $this->getRelatedProjectIds($id));
//getting related project ids only if the Project module is active
$relatedIds = array_merge(array($id), $this->getRelatedPotentialIds($id), $this->getRelatedTicketIds($id), $isProjectModuleActive ? $this->getRelatedProjectIds($id):array());
$relatedIds = implode(', ', $relatedIds);
$userNameSql = getSqlForNameInDisplayFormat(array('first_name'=>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment