1
|
|
|
<?php |
2
|
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
3
|
|
|
/********************************************************************************* |
4
|
|
|
* SugarCRM Community Edition is a customer relationship management program developed by |
5
|
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
6
|
|
|
|
7
|
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by Salesagility Ltd. |
8
|
|
|
* Copyright (C) 2011 - 2014 Salesagility Ltd. |
9
|
|
|
* |
10
|
|
|
* This program is free software; you can redistribute it and/or modify it under |
11
|
|
|
* the terms of the GNU Affero General Public License version 3 as published by the |
12
|
|
|
* Free Software Foundation with the addition of the following permission added |
13
|
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK |
14
|
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY |
15
|
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. |
16
|
|
|
* |
17
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT |
18
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
19
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more |
20
|
|
|
* details. |
21
|
|
|
* |
22
|
|
|
* You should have received a copy of the GNU Affero General Public License along with |
23
|
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free |
24
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
25
|
|
|
* 02110-1301 USA. |
26
|
|
|
* |
27
|
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, |
28
|
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address [email protected]. |
29
|
|
|
* |
30
|
|
|
* The interactive user interfaces in modified source and object code versions |
31
|
|
|
* of this program must display Appropriate Legal Notices, as required under |
32
|
|
|
* Section 5 of the GNU Affero General Public License version 3. |
33
|
|
|
* |
34
|
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3, |
35
|
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by |
36
|
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not |
37
|
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must |
38
|
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM". |
39
|
|
|
********************************************************************************/ |
40
|
|
|
|
41
|
|
|
|
42
|
|
|
function additionalDetailsCall($fields) { |
43
|
|
|
global $timedate; |
44
|
|
|
static $mod_strings; |
45
|
|
|
if(empty($mod_strings)) { |
46
|
|
|
global $current_language; |
47
|
|
|
$mod_strings = return_module_language($current_language, 'Calls'); |
48
|
|
|
} |
49
|
|
|
$overlib_string = ''; |
50
|
|
|
$overlib_string .= '<input id="type" type="hidden" value="Call"/>'; |
51
|
|
|
|
52
|
|
|
if(!empty($fields['ID'])) { |
53
|
|
|
$overlib_string .= '<input id="id" type="hidden" value="'. $fields['ID']; |
54
|
|
|
$overlib_string .= '"/>'; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
$overlib_string .= '<h2><img src="index.php?entryPoint=getImage&themeName=' . SugarThemeRegistry::current()->name .'&imageName=Calls.gif"/> '.$mod_strings['LBL_CALL'].'</h2>'; |
|
|
|
|
58
|
|
|
|
59
|
|
|
if(!empty($fields['NAME'])) { |
60
|
|
|
$overlib_string .= '<b>'. $mod_strings['LBL_SUBJECT'] . '</b> '; |
61
|
|
|
$url = 'index.php?action=DetailView&module=Calls&record='.$fields['ID']; |
62
|
|
|
$overlib_string .= '<a href="'.$url.'">' . $fields['NAME'] . '</a>'; |
63
|
|
|
$overlib_string .= '<br>'; |
64
|
|
|
} |
65
|
|
|
if(!empty($fields['DATE_START'])) { |
66
|
|
|
$data_date = $timedate->fromUser($fields['DATE_START'])->format('Y-m-d H:i:s'); |
67
|
|
|
$overlib_string .= '<span data-field="DATE_START" data-date="' . $data_date . '">'; |
68
|
|
|
$overlib_string .= '<b>' . $mod_strings['LBL_DATE_TIME'] . '</b> ' . $fields['DATE_START'] . ' <br>'; |
69
|
|
|
$overlib_string .= '</span>'; |
70
|
|
|
} |
71
|
|
|
if(isset($fields['DURATION_HOURS']) || isset($fields['DURATION_MINUTES'])) { |
72
|
|
|
$overlib_string .= '<b>'. $mod_strings['LBL_DURATION'] . '</b> '; |
73
|
|
|
if(isset($fields['DURATION_HOURS'])) { |
74
|
|
|
$overlib_string .= $fields['DURATION_HOURS'] . $mod_strings['LBL_HOURS_ABBREV'] . ' '; |
75
|
|
|
} |
76
|
|
|
if(isset($fields['DURATION_MINUTES'])) { |
77
|
|
|
$overlib_string .= $fields['DURATION_MINUTES'] . $mod_strings['LBL_MINSS_ABBREV']; |
78
|
|
|
} |
79
|
|
|
$overlib_string .= '<br>'; |
80
|
|
|
} |
81
|
|
|
if (!empty($fields['PARENT_ID'])) |
82
|
|
|
{ |
83
|
|
|
$overlib_string .= "<b>". $mod_strings['LBL_RELATED_TO'] . "</b> ". |
84
|
|
|
"<a href='index.php?module=".$fields['PARENT_TYPE']."&action=DetailView&record=".$fields['PARENT_ID']."'>". |
85
|
|
|
$fields['PARENT_NAME'] . "</a>"; |
86
|
|
|
$overlib_string .= '<br>'; |
87
|
|
|
} |
88
|
|
|
if(!empty($fields['STATUS'])) { |
89
|
|
|
$overlib_string .= '<b>'. $mod_strings['LBL_STATUS'] . '</b> ' . $fields['STATUS']; |
90
|
|
|
$overlib_string .= '<br>'; |
91
|
|
|
} |
92
|
|
|
if(!empty($fields['DESCRIPTION'])) { |
93
|
|
|
$overlib_string .= '<b>'. $mod_strings['LBL_DESCRIPTION'] . '</b> ' . substr($fields['DESCRIPTION'], 0, 300); |
94
|
|
|
if(strlen($fields['DESCRIPTION']) > 300) $overlib_string .= '...'; |
95
|
|
|
$overlib_string .= '<br>'; |
96
|
|
|
} |
97
|
|
|
$overlib_string .= '<br>'; |
98
|
|
|
$editLink = "index.php?action=EditView&module=Calls&record={$fields['ID']}"; |
99
|
|
|
$viewLink = "index.php?action=DetailView&module=Calls&record={$fields['ID']}"; |
100
|
|
|
|
101
|
|
|
return array('fieldToAddTo' => 'NAME', |
102
|
|
|
'string' => $overlib_string, |
103
|
|
|
'editLink' => $editLink, |
104
|
|
|
'viewLink' => $viewLink); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
|
Since your code implements the magic setter
_set
, this function will be called for any write access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.