42 lines
1.5 KiB
PHP
42 lines
1.5 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.
|
||
|
|
*************************************************************************************/
|
||
|
|
|
||
|
|
class Calendar_DetailView_Model extends Vtiger_DetailView_Model {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Function to get the detail view related links
|
||
|
|
* @return <array> - list of links parameters
|
||
|
|
*/
|
||
|
|
public function getDetailViewRelatedLinks() {
|
||
|
|
$recordModel = $this->getRecord();
|
||
|
|
$moduleName = $recordModel->getType();
|
||
|
|
$relatedLinks = array();
|
||
|
|
//link which shows the summary information(generally detail of record)
|
||
|
|
$relatedLinks[] = array(
|
||
|
|
'linktype' => 'DETAILVIEWTAB',
|
||
|
|
'linklabel' => vtranslate('LBL_DETAILS', $moduleName),
|
||
|
|
'linkKey' => 'LBL_RECORD_DETAILS',
|
||
|
|
'linkurl' => $recordModel->getDetailViewUrl().'&mode=showDetailViewByMode&requestMode=full',
|
||
|
|
'linkicon' => ''
|
||
|
|
);
|
||
|
|
|
||
|
|
$parentModuleModel = $this->getModule();
|
||
|
|
if($parentModuleModel->isTrackingEnabled()) {
|
||
|
|
$relatedLinks[] = array(
|
||
|
|
'linktype' => 'DETAILVIEWTAB',
|
||
|
|
'linklabel' => vtranslate('LBL_UPDATES'),
|
||
|
|
'linkurl' => $recordModel->getDetailViewUrl().'&mode=showRecentActivities&page=1',
|
||
|
|
'linkicon' => ''
|
||
|
|
);
|
||
|
|
}
|
||
|
|
return $relatedLinks;
|
||
|
|
}
|
||
|
|
}
|