@@ -45,40 +45,40 @@ |
||
45 | 45 | |
46 | 46 | class SugarWidgetSubPanelGetLatestButton extends SugarWidgetField |
47 | 47 | { |
48 | - function displayHeaderCell($layout_def) |
|
49 | - { |
|
50 | - return ' '; |
|
51 | - } |
|
48 | + function displayHeaderCell($layout_def) |
|
49 | + { |
|
50 | + return ' '; |
|
51 | + } |
|
52 | 52 | |
53 | - function displayList($layout_def) |
|
54 | - { |
|
55 | - //if the contract has been executed or selected_revision is same as latest revision |
|
56 | - //then hide the latest button. |
|
57 | - //if the contract state is executed or document is not a template hide this action. |
|
58 | - if ((!empty($layout_def['fields']['CONTRACT_STATUS']) && $layout_def['fields']['CONTRACT_STATUS']=='executed') or |
|
59 | - $layout_def['fields']['SELECTED_REVISION_ID']== $layout_def['fields']['LATEST_REVISION_ID']) { |
|
60 | - return ""; |
|
61 | - } |
|
53 | + function displayList($layout_def) |
|
54 | + { |
|
55 | + //if the contract has been executed or selected_revision is same as latest revision |
|
56 | + //then hide the latest button. |
|
57 | + //if the contract state is executed or document is not a template hide this action. |
|
58 | + if ((!empty($layout_def['fields']['CONTRACT_STATUS']) && $layout_def['fields']['CONTRACT_STATUS']=='executed') or |
|
59 | + $layout_def['fields']['SELECTED_REVISION_ID']== $layout_def['fields']['LATEST_REVISION_ID']) { |
|
60 | + return ""; |
|
61 | + } |
|
62 | 62 | |
63 | - global $app_strings; |
|
63 | + global $app_strings; |
|
64 | 64 | |
65 | 65 | |
66 | - $href = 'index.php?module=' . $layout_def['module'] |
|
67 | - . '&action=' . 'GetLatestRevision' |
|
68 | - . '&record=' . $layout_def['fields']['ID'] |
|
69 | - . '&return_module=' . $_REQUEST['module'] |
|
70 | - . '&return_action=' . 'DetailView' |
|
71 | - . '&return_id=' . $_REQUEST['record'] |
|
72 | - . '&get_latest_for_id=' . $layout_def['fields']['LINKED_ID']; |
|
66 | + $href = 'index.php?module=' . $layout_def['module'] |
|
67 | + . '&action=' . 'GetLatestRevision' |
|
68 | + . '&record=' . $layout_def['fields']['ID'] |
|
69 | + . '&return_module=' . $_REQUEST['module'] |
|
70 | + . '&return_action=' . 'DetailView' |
|
71 | + . '&return_id=' . $_REQUEST['record'] |
|
72 | + . '&get_latest_for_id=' . $layout_def['fields']['LINKED_ID']; |
|
73 | 73 | |
74 | - $edit_icon_html = SugarThemeRegistry::current()->getImage( 'getLatestDocument','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_GET_LATEST']); |
|
75 | - if($layout_def['EditView']){ |
|
76 | - return '<a href="' . $href . '"' . "title ='". $app_strings['LNK_GET_LATEST_TOOLTIP'] ."'" |
|
77 | - . 'class="listViewTdToolsS1">' . $edit_icon_html . ' ' . $app_strings['LNK_GET_LATEST'] .'</a> '; |
|
78 | - }else{ |
|
79 | - return ''; |
|
80 | - } |
|
81 | - } |
|
74 | + $edit_icon_html = SugarThemeRegistry::current()->getImage( 'getLatestDocument','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_GET_LATEST']); |
|
75 | + if($layout_def['EditView']){ |
|
76 | + return '<a href="' . $href . '"' . "title ='". $app_strings['LNK_GET_LATEST_TOOLTIP'] ."'" |
|
77 | + . 'class="listViewTdToolsS1">' . $edit_icon_html . ' ' . $app_strings['LNK_GET_LATEST'] .'</a> '; |
|
78 | + }else{ |
|
79 | + return ''; |
|
80 | + } |
|
81 | + } |
|
82 | 82 | |
83 | 83 | } |
84 | 84 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -55,27 +55,27 @@ discard block |
||
55 | 55 | //if the contract has been executed or selected_revision is same as latest revision |
56 | 56 | //then hide the latest button. |
57 | 57 | //if the contract state is executed or document is not a template hide this action. |
58 | - if ((!empty($layout_def['fields']['CONTRACT_STATUS']) && $layout_def['fields']['CONTRACT_STATUS']=='executed') or |
|
59 | - $layout_def['fields']['SELECTED_REVISION_ID']== $layout_def['fields']['LATEST_REVISION_ID']) { |
|
58 | + if ((!empty($layout_def['fields']['CONTRACT_STATUS']) && $layout_def['fields']['CONTRACT_STATUS'] == 'executed') or |
|
59 | + $layout_def['fields']['SELECTED_REVISION_ID'] == $layout_def['fields']['LATEST_REVISION_ID']) { |
|
60 | 60 | return ""; |
61 | 61 | } |
62 | 62 | |
63 | 63 | global $app_strings; |
64 | 64 | |
65 | 65 | |
66 | - $href = 'index.php?module=' . $layout_def['module'] |
|
67 | - . '&action=' . 'GetLatestRevision' |
|
68 | - . '&record=' . $layout_def['fields']['ID'] |
|
69 | - . '&return_module=' . $_REQUEST['module'] |
|
70 | - . '&return_action=' . 'DetailView' |
|
71 | - . '&return_id=' . $_REQUEST['record'] |
|
72 | - . '&get_latest_for_id=' . $layout_def['fields']['LINKED_ID']; |
|
66 | + $href = 'index.php?module='.$layout_def['module'] |
|
67 | + . '&action='.'GetLatestRevision' |
|
68 | + . '&record='.$layout_def['fields']['ID'] |
|
69 | + . '&return_module='.$_REQUEST['module'] |
|
70 | + . '&return_action='.'DetailView' |
|
71 | + . '&return_id='.$_REQUEST['record'] |
|
72 | + . '&get_latest_for_id='.$layout_def['fields']['LINKED_ID']; |
|
73 | 73 | |
74 | - $edit_icon_html = SugarThemeRegistry::current()->getImage( 'getLatestDocument','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_GET_LATEST']); |
|
75 | - if($layout_def['EditView']){ |
|
76 | - return '<a href="' . $href . '"' . "title ='". $app_strings['LNK_GET_LATEST_TOOLTIP'] ."'" |
|
77 | - . 'class="listViewTdToolsS1">' . $edit_icon_html . ' ' . $app_strings['LNK_GET_LATEST'] .'</a> '; |
|
78 | - }else{ |
|
74 | + $edit_icon_html = SugarThemeRegistry::current()->getImage('getLatestDocument', 'align="absmiddle" border="0"', null, null, '.gif', $app_strings['LNK_GET_LATEST']); |
|
75 | + if ($layout_def['EditView']) { |
|
76 | + return '<a href="'.$href.'"'."title ='".$app_strings['LNK_GET_LATEST_TOOLTIP']."'" |
|
77 | + . 'class="listViewTdToolsS1">'.$edit_icon_html.' '.$app_strings['LNK_GET_LATEST'].'</a> '; |
|
78 | + } else { |
|
79 | 79 | return ''; |
80 | 80 | } |
81 | 81 | } |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -75,7 +77,7 @@ discard block |
||
75 | 77 | if($layout_def['EditView']){ |
76 | 78 | return '<a href="' . $href . '"' . "title ='". $app_strings['LNK_GET_LATEST_TOOLTIP'] ."'" |
77 | 79 | . 'class="listViewTdToolsS1">' . $edit_icon_html . ' ' . $app_strings['LNK_GET_LATEST'] .'</a> '; |
78 | - }else{ |
|
80 | + } else{ |
|
79 | 81 | return ''; |
80 | 82 | } |
81 | 83 | } |
@@ -51,77 +51,77 @@ |
||
51 | 51 | return parent::getWidgetId(); |
52 | 52 | } |
53 | 53 | |
54 | - function display($defines, $additionalFormFields = NULL, $nonbutton = false) |
|
55 | - { |
|
56 | - global $app_strings; |
|
57 | - global $currentModule; |
|
54 | + function display($defines, $additionalFormFields = NULL, $nonbutton = false) |
|
55 | + { |
|
56 | + global $app_strings; |
|
57 | + global $currentModule; |
|
58 | 58 | |
59 | - $title = $app_strings['LBL_NEW_BUTTON_TITLE']; |
|
60 | - //$accesskey = $app_strings['LBL_NEW_BUTTON_KEY']; |
|
61 | - $value = $app_strings['LBL_NEW_BUTTON_LABEL']; |
|
62 | - $this->module = 'Leads'; |
|
63 | - if( ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
64 | - $button = "<input title='$title'class='button' type='button' name='button' value=' $value ' disabled/>\n"; |
|
65 | - return $button; |
|
66 | - } |
|
59 | + $title = $app_strings['LBL_NEW_BUTTON_TITLE']; |
|
60 | + //$accesskey = $app_strings['LBL_NEW_BUTTON_KEY']; |
|
61 | + $value = $app_strings['LBL_NEW_BUTTON_LABEL']; |
|
62 | + $this->module = 'Leads'; |
|
63 | + if( ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
64 | + $button = "<input title='$title'class='button' type='button' name='button' value=' $value ' disabled/>\n"; |
|
65 | + return $button; |
|
66 | + } |
|
67 | 67 | |
68 | - $additionalFormFields = array(); |
|
68 | + $additionalFormFields = array(); |
|
69 | 69 | |
70 | - //from accounts |
|
71 | - if ($defines['focus']->object_name == 'Account') { |
|
72 | - if(isset($defines['focus']->billing_address_street)) |
|
73 | - $additionalFormFields['primary_address_street'] = $defines['focus']->billing_address_street; |
|
74 | - if(isset($defines['focus']->billing_address_city)) |
|
75 | - $additionalFormFields['primary_address_city'] = $defines['focus']->billing_address_city; |
|
76 | - if(isset($defines['focus']->billing_address_state)) |
|
77 | - $additionalFormFields['primary_address_state'] = $defines['focus']->billing_address_state; |
|
78 | - if(isset($defines['focus']->billing_address_country)) |
|
79 | - $additionalFormFields['primary_address_country'] = $defines['focus']->billing_address_country; |
|
80 | - if(isset($defines['focus']->billing_address_postalcode)) |
|
81 | - $additionalFormFields['primary_address_postalcode'] = $defines['focus']->billing_address_postalcode; |
|
82 | - if(isset($defines['focus']->phone_office)) |
|
83 | - $additionalFormFields['phone_work'] = $defines['focus']->phone_office; |
|
84 | - if(isset($defines['focus']->id)) |
|
85 | - $additionalFormFields['account_id'] = $defines['focus']->id; |
|
86 | - } |
|
87 | - //from contacts |
|
88 | - if ($defines['focus']->object_name == 'Contact') { |
|
89 | - if(isset($defines['focus']->salutation)) |
|
90 | - $additionalFormFields['salutation'] = $defines['focus']->salutation; |
|
91 | - if(isset($defines['focus']->first_name)) |
|
92 | - $additionalFormFields['first_name'] = $defines['focus']->first_name; |
|
93 | - if(isset($defines['focus']->last_name)) |
|
94 | - $additionalFormFields['last_name'] = $defines['focus']->last_name; |
|
95 | - if(isset($defines['focus']->primary_address_street)) |
|
96 | - $additionalFormFields['primary_address_street'] = $defines['focus']->primary_address_street; |
|
97 | - if(isset($defines['focus']->primary_address_city)) |
|
98 | - $additionalFormFields['primary_address_city'] = $defines['focus']->primary_address_city; |
|
99 | - if(isset($defines['focus']->primary_address_state)) |
|
100 | - $additionalFormFields['primary_address_state'] = $defines['focus']->primary_address_state; |
|
101 | - if(isset($defines['focus']->primary_address_country)) |
|
102 | - $additionalFormFields['primary_address_country'] = $defines['focus']->primary_address_country; |
|
103 | - if(isset($defines['focus']->primary_address_postalcode)) |
|
104 | - $additionalFormFields['primary_address_postalcode'] = $defines['focus']->primary_address_postalcode; |
|
105 | - if(isset($defines['focus']->phone_work)) |
|
106 | - $additionalFormFields['phone_work'] = $defines['focus']->phone_work; |
|
107 | - if(isset($defines['focus']->id)) |
|
108 | - $additionalFormFields['contact_id'] = $defines['focus']->id; |
|
109 | - } |
|
70 | + //from accounts |
|
71 | + if ($defines['focus']->object_name == 'Account') { |
|
72 | + if(isset($defines['focus']->billing_address_street)) |
|
73 | + $additionalFormFields['primary_address_street'] = $defines['focus']->billing_address_street; |
|
74 | + if(isset($defines['focus']->billing_address_city)) |
|
75 | + $additionalFormFields['primary_address_city'] = $defines['focus']->billing_address_city; |
|
76 | + if(isset($defines['focus']->billing_address_state)) |
|
77 | + $additionalFormFields['primary_address_state'] = $defines['focus']->billing_address_state; |
|
78 | + if(isset($defines['focus']->billing_address_country)) |
|
79 | + $additionalFormFields['primary_address_country'] = $defines['focus']->billing_address_country; |
|
80 | + if(isset($defines['focus']->billing_address_postalcode)) |
|
81 | + $additionalFormFields['primary_address_postalcode'] = $defines['focus']->billing_address_postalcode; |
|
82 | + if(isset($defines['focus']->phone_office)) |
|
83 | + $additionalFormFields['phone_work'] = $defines['focus']->phone_office; |
|
84 | + if(isset($defines['focus']->id)) |
|
85 | + $additionalFormFields['account_id'] = $defines['focus']->id; |
|
86 | + } |
|
87 | + //from contacts |
|
88 | + if ($defines['focus']->object_name == 'Contact') { |
|
89 | + if(isset($defines['focus']->salutation)) |
|
90 | + $additionalFormFields['salutation'] = $defines['focus']->salutation; |
|
91 | + if(isset($defines['focus']->first_name)) |
|
92 | + $additionalFormFields['first_name'] = $defines['focus']->first_name; |
|
93 | + if(isset($defines['focus']->last_name)) |
|
94 | + $additionalFormFields['last_name'] = $defines['focus']->last_name; |
|
95 | + if(isset($defines['focus']->primary_address_street)) |
|
96 | + $additionalFormFields['primary_address_street'] = $defines['focus']->primary_address_street; |
|
97 | + if(isset($defines['focus']->primary_address_city)) |
|
98 | + $additionalFormFields['primary_address_city'] = $defines['focus']->primary_address_city; |
|
99 | + if(isset($defines['focus']->primary_address_state)) |
|
100 | + $additionalFormFields['primary_address_state'] = $defines['focus']->primary_address_state; |
|
101 | + if(isset($defines['focus']->primary_address_country)) |
|
102 | + $additionalFormFields['primary_address_country'] = $defines['focus']->primary_address_country; |
|
103 | + if(isset($defines['focus']->primary_address_postalcode)) |
|
104 | + $additionalFormFields['primary_address_postalcode'] = $defines['focus']->primary_address_postalcode; |
|
105 | + if(isset($defines['focus']->phone_work)) |
|
106 | + $additionalFormFields['phone_work'] = $defines['focus']->phone_work; |
|
107 | + if(isset($defines['focus']->id)) |
|
108 | + $additionalFormFields['contact_id'] = $defines['focus']->id; |
|
109 | + } |
|
110 | 110 | |
111 | - //from opportunities |
|
112 | - if ($defines['focus']->object_name == 'Opportunity') { |
|
113 | - if(isset($defines['focus']->id)) |
|
114 | - $additionalFormFields['opportunity_id'] = $defines['focus']->id; |
|
115 | - if(isset($defines['focus']->account_name)) |
|
116 | - $additionalFormFields['account_name'] = $defines['focus']->account_name; |
|
117 | - if(isset($defines['focus']->account_id)) |
|
118 | - $additionalFormFields['account_id'] = $defines['focus']->account_id; |
|
119 | - } |
|
111 | + //from opportunities |
|
112 | + if ($defines['focus']->object_name == 'Opportunity') { |
|
113 | + if(isset($defines['focus']->id)) |
|
114 | + $additionalFormFields['opportunity_id'] = $defines['focus']->id; |
|
115 | + if(isset($defines['focus']->account_name)) |
|
116 | + $additionalFormFields['account_name'] = $defines['focus']->account_name; |
|
117 | + if(isset($defines['focus']->account_id)) |
|
118 | + $additionalFormFields['account_id'] = $defines['focus']->account_id; |
|
119 | + } |
|
120 | 120 | |
121 | - $button = $this->_get_form($defines, $additionalFormFields); |
|
122 | - $button .= "<input title='$title' class='button' type='submit' name='{$this->getWidgetId()}_button' id='{$this->getWidgetId()}' value=' $value '/>\n"; |
|
123 | - $button .= "</form>"; |
|
124 | - return $button; |
|
125 | - } |
|
121 | + $button = $this->_get_form($defines, $additionalFormFields); |
|
122 | + $button .= "<input title='$title' class='button' type='submit' name='{$this->getWidgetId()}_button' id='{$this->getWidgetId()}' value=' $value '/>\n"; |
|
123 | + $button .= "</form>"; |
|
124 | + return $button; |
|
125 | + } |
|
126 | 126 | } |
127 | 127 | ?> |
128 | 128 | \ No newline at end of file |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | //$accesskey = $app_strings['LBL_NEW_BUTTON_KEY']; |
61 | 61 | $value = $app_strings['LBL_NEW_BUTTON_LABEL']; |
62 | 62 | $this->module = 'Leads'; |
63 | - if( ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
63 | + if (ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)) { |
|
64 | 64 | $button = "<input title='$title'class='button' type='button' name='button' value=' $value ' disabled/>\n"; |
65 | 65 | return $button; |
66 | 66 | } |
@@ -69,52 +69,52 @@ discard block |
||
69 | 69 | |
70 | 70 | //from accounts |
71 | 71 | if ($defines['focus']->object_name == 'Account') { |
72 | - if(isset($defines['focus']->billing_address_street)) |
|
72 | + if (isset($defines['focus']->billing_address_street)) |
|
73 | 73 | $additionalFormFields['primary_address_street'] = $defines['focus']->billing_address_street; |
74 | - if(isset($defines['focus']->billing_address_city)) |
|
74 | + if (isset($defines['focus']->billing_address_city)) |
|
75 | 75 | $additionalFormFields['primary_address_city'] = $defines['focus']->billing_address_city; |
76 | - if(isset($defines['focus']->billing_address_state)) |
|
76 | + if (isset($defines['focus']->billing_address_state)) |
|
77 | 77 | $additionalFormFields['primary_address_state'] = $defines['focus']->billing_address_state; |
78 | - if(isset($defines['focus']->billing_address_country)) |
|
78 | + if (isset($defines['focus']->billing_address_country)) |
|
79 | 79 | $additionalFormFields['primary_address_country'] = $defines['focus']->billing_address_country; |
80 | - if(isset($defines['focus']->billing_address_postalcode)) |
|
80 | + if (isset($defines['focus']->billing_address_postalcode)) |
|
81 | 81 | $additionalFormFields['primary_address_postalcode'] = $defines['focus']->billing_address_postalcode; |
82 | - if(isset($defines['focus']->phone_office)) |
|
82 | + if (isset($defines['focus']->phone_office)) |
|
83 | 83 | $additionalFormFields['phone_work'] = $defines['focus']->phone_office; |
84 | - if(isset($defines['focus']->id)) |
|
84 | + if (isset($defines['focus']->id)) |
|
85 | 85 | $additionalFormFields['account_id'] = $defines['focus']->id; |
86 | 86 | } |
87 | 87 | //from contacts |
88 | 88 | if ($defines['focus']->object_name == 'Contact') { |
89 | - if(isset($defines['focus']->salutation)) |
|
89 | + if (isset($defines['focus']->salutation)) |
|
90 | 90 | $additionalFormFields['salutation'] = $defines['focus']->salutation; |
91 | - if(isset($defines['focus']->first_name)) |
|
91 | + if (isset($defines['focus']->first_name)) |
|
92 | 92 | $additionalFormFields['first_name'] = $defines['focus']->first_name; |
93 | - if(isset($defines['focus']->last_name)) |
|
93 | + if (isset($defines['focus']->last_name)) |
|
94 | 94 | $additionalFormFields['last_name'] = $defines['focus']->last_name; |
95 | - if(isset($defines['focus']->primary_address_street)) |
|
95 | + if (isset($defines['focus']->primary_address_street)) |
|
96 | 96 | $additionalFormFields['primary_address_street'] = $defines['focus']->primary_address_street; |
97 | - if(isset($defines['focus']->primary_address_city)) |
|
97 | + if (isset($defines['focus']->primary_address_city)) |
|
98 | 98 | $additionalFormFields['primary_address_city'] = $defines['focus']->primary_address_city; |
99 | - if(isset($defines['focus']->primary_address_state)) |
|
99 | + if (isset($defines['focus']->primary_address_state)) |
|
100 | 100 | $additionalFormFields['primary_address_state'] = $defines['focus']->primary_address_state; |
101 | - if(isset($defines['focus']->primary_address_country)) |
|
101 | + if (isset($defines['focus']->primary_address_country)) |
|
102 | 102 | $additionalFormFields['primary_address_country'] = $defines['focus']->primary_address_country; |
103 | - if(isset($defines['focus']->primary_address_postalcode)) |
|
103 | + if (isset($defines['focus']->primary_address_postalcode)) |
|
104 | 104 | $additionalFormFields['primary_address_postalcode'] = $defines['focus']->primary_address_postalcode; |
105 | - if(isset($defines['focus']->phone_work)) |
|
105 | + if (isset($defines['focus']->phone_work)) |
|
106 | 106 | $additionalFormFields['phone_work'] = $defines['focus']->phone_work; |
107 | - if(isset($defines['focus']->id)) |
|
107 | + if (isset($defines['focus']->id)) |
|
108 | 108 | $additionalFormFields['contact_id'] = $defines['focus']->id; |
109 | 109 | } |
110 | 110 | |
111 | 111 | //from opportunities |
112 | 112 | if ($defines['focus']->object_name == 'Opportunity') { |
113 | - if(isset($defines['focus']->id)) |
|
113 | + if (isset($defines['focus']->id)) |
|
114 | 114 | $additionalFormFields['opportunity_id'] = $defines['focus']->id; |
115 | - if(isset($defines['focus']->account_name)) |
|
115 | + if (isset($defines['focus']->account_name)) |
|
116 | 116 | $additionalFormFields['account_name'] = $defines['focus']->account_name; |
117 | - if(isset($defines['focus']->account_id)) |
|
117 | + if (isset($defines['focus']->account_id)) |
|
118 | 118 | $additionalFormFields['account_id'] = $defines['focus']->account_id; |
119 | 119 | } |
120 | 120 |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -69,53 +71,73 @@ discard block |
||
69 | 71 | |
70 | 72 | //from accounts |
71 | 73 | if ($defines['focus']->object_name == 'Account') { |
72 | - if(isset($defines['focus']->billing_address_street)) |
|
73 | - $additionalFormFields['primary_address_street'] = $defines['focus']->billing_address_street; |
|
74 | - if(isset($defines['focus']->billing_address_city)) |
|
75 | - $additionalFormFields['primary_address_city'] = $defines['focus']->billing_address_city; |
|
76 | - if(isset($defines['focus']->billing_address_state)) |
|
77 | - $additionalFormFields['primary_address_state'] = $defines['focus']->billing_address_state; |
|
78 | - if(isset($defines['focus']->billing_address_country)) |
|
79 | - $additionalFormFields['primary_address_country'] = $defines['focus']->billing_address_country; |
|
80 | - if(isset($defines['focus']->billing_address_postalcode)) |
|
81 | - $additionalFormFields['primary_address_postalcode'] = $defines['focus']->billing_address_postalcode; |
|
82 | - if(isset($defines['focus']->phone_office)) |
|
83 | - $additionalFormFields['phone_work'] = $defines['focus']->phone_office; |
|
84 | - if(isset($defines['focus']->id)) |
|
85 | - $additionalFormFields['account_id'] = $defines['focus']->id; |
|
74 | + if(isset($defines['focus']->billing_address_street)) { |
|
75 | + $additionalFormFields['primary_address_street'] = $defines['focus']->billing_address_street; |
|
76 | + } |
|
77 | + if(isset($defines['focus']->billing_address_city)) { |
|
78 | + $additionalFormFields['primary_address_city'] = $defines['focus']->billing_address_city; |
|
79 | + } |
|
80 | + if(isset($defines['focus']->billing_address_state)) { |
|
81 | + $additionalFormFields['primary_address_state'] = $defines['focus']->billing_address_state; |
|
82 | + } |
|
83 | + if(isset($defines['focus']->billing_address_country)) { |
|
84 | + $additionalFormFields['primary_address_country'] = $defines['focus']->billing_address_country; |
|
85 | + } |
|
86 | + if(isset($defines['focus']->billing_address_postalcode)) { |
|
87 | + $additionalFormFields['primary_address_postalcode'] = $defines['focus']->billing_address_postalcode; |
|
88 | + } |
|
89 | + if(isset($defines['focus']->phone_office)) { |
|
90 | + $additionalFormFields['phone_work'] = $defines['focus']->phone_office; |
|
91 | + } |
|
92 | + if(isset($defines['focus']->id)) { |
|
93 | + $additionalFormFields['account_id'] = $defines['focus']->id; |
|
94 | + } |
|
86 | 95 | } |
87 | 96 | //from contacts |
88 | 97 | if ($defines['focus']->object_name == 'Contact') { |
89 | - if(isset($defines['focus']->salutation)) |
|
90 | - $additionalFormFields['salutation'] = $defines['focus']->salutation; |
|
91 | - if(isset($defines['focus']->first_name)) |
|
92 | - $additionalFormFields['first_name'] = $defines['focus']->first_name; |
|
93 | - if(isset($defines['focus']->last_name)) |
|
94 | - $additionalFormFields['last_name'] = $defines['focus']->last_name; |
|
95 | - if(isset($defines['focus']->primary_address_street)) |
|
96 | - $additionalFormFields['primary_address_street'] = $defines['focus']->primary_address_street; |
|
97 | - if(isset($defines['focus']->primary_address_city)) |
|
98 | - $additionalFormFields['primary_address_city'] = $defines['focus']->primary_address_city; |
|
99 | - if(isset($defines['focus']->primary_address_state)) |
|
100 | - $additionalFormFields['primary_address_state'] = $defines['focus']->primary_address_state; |
|
101 | - if(isset($defines['focus']->primary_address_country)) |
|
102 | - $additionalFormFields['primary_address_country'] = $defines['focus']->primary_address_country; |
|
103 | - if(isset($defines['focus']->primary_address_postalcode)) |
|
104 | - $additionalFormFields['primary_address_postalcode'] = $defines['focus']->primary_address_postalcode; |
|
105 | - if(isset($defines['focus']->phone_work)) |
|
106 | - $additionalFormFields['phone_work'] = $defines['focus']->phone_work; |
|
107 | - if(isset($defines['focus']->id)) |
|
108 | - $additionalFormFields['contact_id'] = $defines['focus']->id; |
|
98 | + if(isset($defines['focus']->salutation)) { |
|
99 | + $additionalFormFields['salutation'] = $defines['focus']->salutation; |
|
100 | + } |
|
101 | + if(isset($defines['focus']->first_name)) { |
|
102 | + $additionalFormFields['first_name'] = $defines['focus']->first_name; |
|
103 | + } |
|
104 | + if(isset($defines['focus']->last_name)) { |
|
105 | + $additionalFormFields['last_name'] = $defines['focus']->last_name; |
|
106 | + } |
|
107 | + if(isset($defines['focus']->primary_address_street)) { |
|
108 | + $additionalFormFields['primary_address_street'] = $defines['focus']->primary_address_street; |
|
109 | + } |
|
110 | + if(isset($defines['focus']->primary_address_city)) { |
|
111 | + $additionalFormFields['primary_address_city'] = $defines['focus']->primary_address_city; |
|
112 | + } |
|
113 | + if(isset($defines['focus']->primary_address_state)) { |
|
114 | + $additionalFormFields['primary_address_state'] = $defines['focus']->primary_address_state; |
|
115 | + } |
|
116 | + if(isset($defines['focus']->primary_address_country)) { |
|
117 | + $additionalFormFields['primary_address_country'] = $defines['focus']->primary_address_country; |
|
118 | + } |
|
119 | + if(isset($defines['focus']->primary_address_postalcode)) { |
|
120 | + $additionalFormFields['primary_address_postalcode'] = $defines['focus']->primary_address_postalcode; |
|
121 | + } |
|
122 | + if(isset($defines['focus']->phone_work)) { |
|
123 | + $additionalFormFields['phone_work'] = $defines['focus']->phone_work; |
|
124 | + } |
|
125 | + if(isset($defines['focus']->id)) { |
|
126 | + $additionalFormFields['contact_id'] = $defines['focus']->id; |
|
127 | + } |
|
109 | 128 | } |
110 | 129 | |
111 | 130 | //from opportunities |
112 | 131 | if ($defines['focus']->object_name == 'Opportunity') { |
113 | - if(isset($defines['focus']->id)) |
|
114 | - $additionalFormFields['opportunity_id'] = $defines['focus']->id; |
|
115 | - if(isset($defines['focus']->account_name)) |
|
116 | - $additionalFormFields['account_name'] = $defines['focus']->account_name; |
|
117 | - if(isset($defines['focus']->account_id)) |
|
118 | - $additionalFormFields['account_id'] = $defines['focus']->account_id; |
|
132 | + if(isset($defines['focus']->id)) { |
|
133 | + $additionalFormFields['opportunity_id'] = $defines['focus']->id; |
|
134 | + } |
|
135 | + if(isset($defines['focus']->account_name)) { |
|
136 | + $additionalFormFields['account_name'] = $defines['focus']->account_name; |
|
137 | + } |
|
138 | + if(isset($defines['focus']->account_id)) { |
|
139 | + $additionalFormFields['account_id'] = $defines['focus']->account_id; |
|
140 | + } |
|
119 | 141 | } |
120 | 142 | |
121 | 143 | $button = $this->_get_form($defines, $additionalFormFields); |
@@ -174,25 +174,25 @@ discard block |
||
174 | 174 | return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')"; |
175 | 175 | } |
176 | 176 | |
177 | - //for to_pdf/to_csv |
|
178 | - function displayListPlain($layout_def) { |
|
179 | - $reporter = $this->layout_manager->getAttribute("reporter"); |
|
180 | - $field_def = $reporter->all_fields[$layout_def['column_key']]; |
|
181 | - $display = strtoupper($field_def['secondary_table'].'_name'); |
|
182 | - //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
|
183 | - if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
|
184 | - $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
|
185 | - } |
|
177 | + //for to_pdf/to_csv |
|
178 | + function displayListPlain($layout_def) { |
|
179 | + $reporter = $this->layout_manager->getAttribute("reporter"); |
|
180 | + $field_def = $reporter->all_fields[$layout_def['column_key']]; |
|
181 | + $display = strtoupper($field_def['secondary_table'].'_name'); |
|
182 | + //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
|
183 | + if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
|
184 | + $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
|
185 | + } |
|
186 | 186 | elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
187 | 187 | { |
188 | 188 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name'); |
189 | 189 | } |
190 | - elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
191 | - $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
|
192 | - } |
|
193 | - $cell = $layout_def['fields'][$display]; |
|
194 | - return $cell; |
|
195 | - } |
|
190 | + elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
191 | + $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
|
192 | + } |
|
193 | + $cell = $layout_def['fields'][$display]; |
|
194 | + return $cell; |
|
195 | + } |
|
196 | 196 | |
197 | 197 | function displayList($layout_def) { |
198 | 198 | $reporter = $this->layout_manager->getAttribute("reporter"); |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | |
202 | 202 | //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
203 | 203 | if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
204 | - $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
|
204 | + $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
|
205 | 205 | } |
206 | 206 | elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
207 | 207 | { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -58,18 +58,18 @@ discard block |
||
58 | 58 | { |
59 | 59 | $values[] = $layout_def['input_name0']; |
60 | 60 | } |
61 | - $html = '<select name="' . $layout_def['name'] . '[]" multiple="true">'; |
|
61 | + $html = '<select name="'.$layout_def['name'].'[]" multiple="true">'; |
|
62 | 62 | |
63 | 63 | $query = $this->displayInputQuery($layout_def); |
64 | 64 | $result = $this->reporter->db->query($query); |
65 | 65 | while ($row = $this->reporter->db->fetchByAssoc($result)) |
66 | 66 | { |
67 | - $html .= '<option value="' . $row['id'] . '"'; |
|
67 | + $html .= '<option value="'.$row['id'].'"'; |
|
68 | 68 | if (in_array($row['id'], $values)) |
69 | 69 | { |
70 | 70 | $html .= ' selected="selected"'; |
71 | 71 | } |
72 | - $html .= '>' . htmlspecialchars($row['title']) . '</option>'; |
|
72 | + $html .= '>'.htmlspecialchars($row['title']).'</option>'; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | $html .= '</select>'; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $ids[] = $row['id']; |
135 | 135 | } |
136 | 136 | $layout_def['name'] = 'id'; |
137 | - return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')"; |
|
137 | + return $this->_get_column_select($layout_def)." IN ('".implode("', '", $ids)."')"; |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $module = isset($layout_def['custom_module']) ? $layout_def['custom_module'] : $layout_def['module']; |
155 | 155 | $seed = BeanFactory::getBean($module); |
156 | 156 | |
157 | - foreach($layout_def['input_name0'] as $beanId) |
|
157 | + foreach ($layout_def['input_name0'] as $beanId) |
|
158 | 158 | { |
159 | 159 | if (!empty($relation->lhs_module) && !empty($relation->rhs_module) |
160 | 160 | && $relation->lhs_module == $relation->rhs_module) { |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | } |
172 | 172 | $ids = array_unique($ids); |
173 | 173 | $layout_def['name'] = 'id'; |
174 | - return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')"; |
|
174 | + return $this->_get_column_select($layout_def)." IN ('".implode("', '", $ids)."')"; |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | //for to_pdf/to_csv |
@@ -180,14 +180,14 @@ discard block |
||
180 | 180 | $field_def = $reporter->all_fields[$layout_def['column_key']]; |
181 | 181 | $display = strtoupper($field_def['secondary_table'].'_name'); |
182 | 182 | //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
183 | - if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
|
183 | + if (!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])) { |
|
184 | 184 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
185 | 185 | } |
186 | - elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
186 | + elseif (isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
187 | 187 | { |
188 | 188 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name'); |
189 | 189 | } |
190 | - elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
190 | + elseif (!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])) { |
|
191 | 191 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
192 | 192 | } |
193 | 193 | $cell = $layout_def['fields'][$display]; |
@@ -200,14 +200,14 @@ discard block |
||
200 | 200 | $display = strtoupper($field_def['secondary_table'].'_name'); |
201 | 201 | |
202 | 202 | //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
203 | - if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
|
203 | + if (!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])) { |
|
204 | 204 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
205 | 205 | } |
206 | - elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
206 | + elseif (isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
207 | 207 | { |
208 | 208 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name'); |
209 | 209 | } |
210 | - elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
210 | + elseif (!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])) { |
|
211 | 211 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
212 | 212 | } |
213 | 213 | $recordField = $this->getTruncatedColumnAlias(strtoupper($layout_def['table_alias']).'_'.strtoupper($layout_def['name'])); |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -53,8 +55,7 @@ discard block |
||
53 | 55 | if (is_array($layout_def['input_name0'])) |
54 | 56 | { |
55 | 57 | $values = $layout_def['input_name0']; |
56 | - } |
|
57 | - else |
|
58 | + } else |
|
58 | 59 | { |
59 | 60 | $values[] = $layout_def['input_name0']; |
60 | 61 | } |
@@ -182,12 +183,10 @@ discard block |
||
182 | 183 | //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
183 | 184 | if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
184 | 185 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
185 | - } |
|
186 | - elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
186 | + } elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
187 | 187 | { |
188 | 188 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name'); |
189 | - } |
|
190 | - elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
189 | + } elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
191 | 190 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
192 | 191 | } |
193 | 192 | $cell = $layout_def['fields'][$display]; |
@@ -202,12 +201,10 @@ discard block |
||
202 | 201 | //#31797 , we should get the table alias in a global registered array:selected_loaded_custom_links |
203 | 202 | if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){ |
204 | 203 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name'); |
205 | - } |
|
206 | - elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
204 | + } elseif(isset($field_def['rep_rel_name']) && isset($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']])) |
|
207 | 205 | { |
208 | 206 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name'); |
209 | - } |
|
210 | - elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
207 | + } elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){ |
|
211 | 208 | $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name'); |
212 | 209 | } |
213 | 210 | $recordField = $this->getTruncatedColumnAlias(strtoupper($layout_def['table_alias']).'_'.strtoupper($layout_def['name'])); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -45,16 +45,16 @@ discard block |
||
45 | 45 | { |
46 | 46 | function displayListPlain($layout_def) { |
47 | 47 | |
48 | - $value= $this->_get_list_value($layout_def); |
|
48 | + $value = $this->_get_list_value($layout_def); |
|
49 | 49 | |
50 | - if (isset($layout_def['widget_type']) && $layout_def['widget_type'] =='checkbox') { |
|
50 | + if (isset($layout_def['widget_type']) && $layout_def['widget_type'] == 'checkbox') { |
|
51 | 51 | |
52 | - if ($value != '' && ($value == 'on' || intval($value) == 1 || $value == 'yes')) |
|
52 | + if ($value != '' && ($value == 'on' || intval($value) == 1 || $value == 'yes')) |
|
53 | 53 | { |
54 | 54 | return " <input name='checkbox_display' class='checkbox' type='checkbox' disabled='true' checked>"; |
55 | 55 | } |
56 | 56 | //Modification to allow checkboxes to be displayed correctly in subpanel |
57 | - if ($layout_def['checkbox_value']=='true'){ |
|
57 | + if ($layout_def['checkbox_value'] == 'true') { |
|
58 | 58 | return " <input name='".$layout_def['module']."checkbox_display[]' class='checkbox' type='checkbox' id='".$layout_def['module']."checkbox_display_id[]' value=\"".$layout_def['fields']['ID']."\" onclick=''>"; |
59 | 59 | } |
60 | 60 |
@@ -1,5 +1,7 @@ |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -45,41 +45,41 @@ |
||
45 | 45 | |
46 | 46 | class SugarWidgetSubPanelTopArchiveEmailButton extends SugarWidgetSubPanelTopButton |
47 | 47 | { |
48 | - function display($defines, $additionalFormFields = NULL, $nonbutton = false) |
|
49 | - { |
|
50 | - if((ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true) || |
|
51 | - $defines['module'] == "History" & !ACLController::checkAccess("Emails", 'edit', true))){ |
|
52 | - $temp = ''; |
|
53 | - return $temp; |
|
54 | - } |
|
48 | + function display($defines, $additionalFormFields = NULL, $nonbutton = false) |
|
49 | + { |
|
50 | + if((ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true) || |
|
51 | + $defines['module'] == "History" & !ACLController::checkAccess("Emails", 'edit', true))){ |
|
52 | + $temp = ''; |
|
53 | + return $temp; |
|
54 | + } |
|
55 | 55 | |
56 | - global $app_strings; |
|
57 | - global $mod_strings; |
|
58 | - global $currentModule; |
|
56 | + global $app_strings; |
|
57 | + global $mod_strings; |
|
58 | + global $currentModule; |
|
59 | 59 | |
60 | - $title = $app_strings['LBL_TRACK_EMAIL_BUTTON_TITLE']; |
|
61 | - $value = $app_strings['LBL_TRACK_EMAIL_BUTTON_LABEL']; |
|
62 | - $this->module = 'Emails'; |
|
60 | + $title = $app_strings['LBL_TRACK_EMAIL_BUTTON_TITLE']; |
|
61 | + $value = $app_strings['LBL_TRACK_EMAIL_BUTTON_LABEL']; |
|
62 | + $this->module = 'Emails'; |
|
63 | 63 | |
64 | - $additionalFormFields = array(); |
|
65 | - $additionalFormFields['type'] = 'archived'; |
|
66 | - // cn: bug 5727 - must override the parents' parent for contacts (which could be an Account) |
|
67 | - $additionalFormFields['parent_type'] = $defines['focus']->module_dir; |
|
68 | - $additionalFormFields['parent_id'] = $defines['focus']->id; |
|
69 | - $additionalFormFields['parent_name'] = $defines['focus']->name; |
|
64 | + $additionalFormFields = array(); |
|
65 | + $additionalFormFields['type'] = 'archived'; |
|
66 | + // cn: bug 5727 - must override the parents' parent for contacts (which could be an Account) |
|
67 | + $additionalFormFields['parent_type'] = $defines['focus']->module_dir; |
|
68 | + $additionalFormFields['parent_id'] = $defines['focus']->id; |
|
69 | + $additionalFormFields['parent_name'] = $defines['focus']->name; |
|
70 | 70 | |
71 | - if(isset($defines['focus']->email1)) |
|
72 | - { |
|
73 | - $additionalFormFields['to_email_addrs'] = $defines['focus']->email1; |
|
74 | - } |
|
75 | - if(ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
76 | - $button = "<input id='".preg_replace('[ ]', '', $value)."_button' title='$title' class='button' type='button' name='".preg_replace('[ ]', '', mb_strtolower($value, 'UTF-8'))."_button' value='$value' disabled/>\n"; |
|
77 | - return $button; |
|
78 | - } |
|
79 | - $button = $this->_get_form($defines, $additionalFormFields); |
|
80 | - $button .= "<input id='".preg_replace('[ ]', '', $value)."_button' title='$title' class='button' type='submit' name='".preg_replace('[ ]', '', mb_strtolower($value, 'UTF-8'))."_button' value='$value'/>\n"; |
|
81 | - $button .= "</form>"; |
|
82 | - return $button; |
|
83 | - } |
|
71 | + if(isset($defines['focus']->email1)) |
|
72 | + { |
|
73 | + $additionalFormFields['to_email_addrs'] = $defines['focus']->email1; |
|
74 | + } |
|
75 | + if(ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
76 | + $button = "<input id='".preg_replace('[ ]', '', $value)."_button' title='$title' class='button' type='button' name='".preg_replace('[ ]', '', mb_strtolower($value, 'UTF-8'))."_button' value='$value' disabled/>\n"; |
|
77 | + return $button; |
|
78 | + } |
|
79 | + $button = $this->_get_form($defines, $additionalFormFields); |
|
80 | + $button .= "<input id='".preg_replace('[ ]', '', $value)."_button' title='$title' class='button' type='submit' name='".preg_replace('[ ]', '', mb_strtolower($value, 'UTF-8'))."_button' value='$value'/>\n"; |
|
81 | + $button .= "</form>"; |
|
82 | + return $button; |
|
83 | + } |
|
84 | 84 | } |
85 | 85 | ?> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | { |
48 | 48 | function display($defines, $additionalFormFields = NULL, $nonbutton = false) |
49 | 49 | { |
50 | - if((ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true) || |
|
51 | - $defines['module'] == "History" & !ACLController::checkAccess("Emails", 'edit', true))){ |
|
50 | + if ((ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true) || |
|
51 | + $defines['module'] == "History" & !ACLController::checkAccess("Emails", 'edit', true))) { |
|
52 | 52 | $temp = ''; |
53 | 53 | return $temp; |
54 | 54 | } |
@@ -68,11 +68,11 @@ discard block |
||
68 | 68 | $additionalFormFields['parent_id'] = $defines['focus']->id; |
69 | 69 | $additionalFormFields['parent_name'] = $defines['focus']->name; |
70 | 70 | |
71 | - if(isset($defines['focus']->email1)) |
|
71 | + if (isset($defines['focus']->email1)) |
|
72 | 72 | { |
73 | 73 | $additionalFormFields['to_email_addrs'] = $defines['focus']->email1; |
74 | 74 | } |
75 | - if(ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)){ |
|
75 | + if (ACLController::moduleSupportsACL($defines['module']) && !ACLController::checkAccess($defines['module'], 'edit', true)) { |
|
76 | 76 | $button = "<input id='".preg_replace('[ ]', '', $value)."_button' title='$title' class='button' type='button' name='".preg_replace('[ ]', '', mb_strtolower($value, 'UTF-8'))."_button' value='$value' disabled/>\n"; |
77 | 77 | return $button; |
78 | 78 | } |
@@ -1,5 +1,7 @@ |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -45,65 +45,65 @@ discard block |
||
45 | 45 | |
46 | 46 | class SugarWidgetSubPanelDetailViewLink extends SugarWidgetField |
47 | 47 | { |
48 | - function displayList($layout_def) |
|
49 | - { |
|
50 | - global $focus; |
|
51 | - |
|
52 | - $module = ''; |
|
53 | - $record = ''; |
|
54 | - |
|
55 | - if(isset($layout_def['varname'])) |
|
56 | - { |
|
57 | - $key = strtoupper($layout_def['varname']); |
|
58 | - } |
|
59 | - else |
|
60 | - { |
|
61 | - $key = $this->_get_column_alias($layout_def); |
|
62 | - $key = strtoupper($key); |
|
63 | - } |
|
64 | - if (empty($layout_def['fields'][$key])) { |
|
65 | - return ""; |
|
66 | - } else { |
|
67 | - $value = $layout_def['fields'][$key]; |
|
68 | - } |
|
69 | - |
|
70 | - |
|
71 | - if(empty($layout_def['target_record_key'])) |
|
72 | - { |
|
73 | - $record = $layout_def['fields']['ID']; |
|
74 | - } |
|
75 | - else |
|
76 | - { |
|
77 | - $record_key = strtoupper($layout_def['target_record_key']); |
|
78 | - $record = $layout_def['fields'][$record_key]; |
|
79 | - } |
|
80 | - |
|
81 | - if(!empty($layout_def['target_module_key'])) { |
|
82 | - if (!empty($layout_def['fields'][strtoupper($layout_def['target_module_key'])])) { |
|
83 | - $module=$layout_def['fields'][strtoupper($layout_def['target_module_key'])]; |
|
84 | - } |
|
85 | - } |
|
48 | + function displayList($layout_def) |
|
49 | + { |
|
50 | + global $focus; |
|
51 | + |
|
52 | + $module = ''; |
|
53 | + $record = ''; |
|
54 | + |
|
55 | + if(isset($layout_def['varname'])) |
|
56 | + { |
|
57 | + $key = strtoupper($layout_def['varname']); |
|
58 | + } |
|
59 | + else |
|
60 | + { |
|
61 | + $key = $this->_get_column_alias($layout_def); |
|
62 | + $key = strtoupper($key); |
|
63 | + } |
|
64 | + if (empty($layout_def['fields'][$key])) { |
|
65 | + return ""; |
|
66 | + } else { |
|
67 | + $value = $layout_def['fields'][$key]; |
|
68 | + } |
|
69 | + |
|
70 | + |
|
71 | + if(empty($layout_def['target_record_key'])) |
|
72 | + { |
|
73 | + $record = $layout_def['fields']['ID']; |
|
74 | + } |
|
75 | + else |
|
76 | + { |
|
77 | + $record_key = strtoupper($layout_def['target_record_key']); |
|
78 | + $record = $layout_def['fields'][$record_key]; |
|
79 | + } |
|
80 | + |
|
81 | + if(!empty($layout_def['target_module_key'])) { |
|
82 | + if (!empty($layout_def['fields'][strtoupper($layout_def['target_module_key'])])) { |
|
83 | + $module=$layout_def['fields'][strtoupper($layout_def['target_module_key'])]; |
|
84 | + } |
|
85 | + } |
|
86 | 86 | |
87 | 87 | if (empty($module)) { |
88 | - if(empty($layout_def['target_module'])) |
|
89 | - { |
|
90 | - $module = $layout_def['module']; |
|
91 | - } |
|
92 | - else |
|
93 | - { |
|
94 | - $module = $layout_def['target_module']; |
|
95 | - } |
|
96 | - } |
|
88 | + if(empty($layout_def['target_module'])) |
|
89 | + { |
|
90 | + $module = $layout_def['module']; |
|
91 | + } |
|
92 | + else |
|
93 | + { |
|
94 | + $module = $layout_def['target_module']; |
|
95 | + } |
|
96 | + } |
|
97 | 97 | |
98 | 98 | //links to email module now need additional information. |
99 | 99 | //this is to resolve the information about the target of the emails. necessitated by feature that allow |
100 | 100 | //only on email record for the whole campaign. |
101 | 101 | $parent=''; |
102 | 102 | if (!empty($layout_def['parent_info'])) { |
103 | - if (!empty($focus)){ |
|
104 | - $parent="&parent_id=".$focus->id; |
|
105 | - $parent.="&parent_module=".$focus->module_dir; |
|
106 | - } |
|
103 | + if (!empty($focus)){ |
|
104 | + $parent="&parent_id=".$focus->id; |
|
105 | + $parent.="&parent_module=".$focus->module_dir; |
|
106 | + } |
|
107 | 107 | } else { |
108 | 108 | if(!empty($layout_def['parent_id'])) { |
109 | 109 | if (isset($layout_def['fields'][strtoupper($layout_def['parent_id'])])) { |
@@ -117,13 +117,13 @@ discard block |
||
117 | 117 | } |
118 | 118 | } |
119 | 119 | |
120 | - $action = 'DetailView'; |
|
121 | - $value = $layout_def['fields'][$key]; |
|
122 | - global $current_user; |
|
123 | - if( !empty($record) && |
|
124 | - ($layout_def['DetailView'] && !$layout_def['owner_module'] |
|
125 | - || $layout_def['DetailView'] && !ACLController::moduleSupportsACL($layout_def['owner_module']) |
|
126 | - || ACLController::checkAccess($layout_def['owner_module'], 'view', $layout_def['owner_id'] == $current_user->id))) |
|
120 | + $action = 'DetailView'; |
|
121 | + $value = $layout_def['fields'][$key]; |
|
122 | + global $current_user; |
|
123 | + if( !empty($record) && |
|
124 | + ($layout_def['DetailView'] && !$layout_def['owner_module'] |
|
125 | + || $layout_def['DetailView'] && !ACLController::moduleSupportsACL($layout_def['owner_module']) |
|
126 | + || ACLController::checkAccess($layout_def['owner_module'], 'view', $layout_def['owner_id'] == $current_user->id))) |
|
127 | 127 | { |
128 | 128 | $link = ajaxLink("index.php?module=$module&action=$action&record={$record}{$parent}"); |
129 | 129 | if ($module == 'EAPM') |
@@ -132,11 +132,11 @@ discard block |
||
132 | 132 | } |
133 | 133 | return '<a href="' . $link . '" >'."$value</a>"; |
134 | 134 | |
135 | - }else{ |
|
136 | - return $value; |
|
137 | - } |
|
135 | + }else{ |
|
136 | + return $value; |
|
137 | + } |
|
138 | 138 | |
139 | - } |
|
139 | + } |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | ?> |
143 | 143 | \ No newline at end of file |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $module = ''; |
53 | 53 | $record = ''; |
54 | 54 | |
55 | - if(isset($layout_def['varname'])) |
|
55 | + if (isset($layout_def['varname'])) |
|
56 | 56 | { |
57 | 57 | $key = strtoupper($layout_def['varname']); |
58 | 58 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | |
71 | - if(empty($layout_def['target_record_key'])) |
|
71 | + if (empty($layout_def['target_record_key'])) |
|
72 | 72 | { |
73 | 73 | $record = $layout_def['fields']['ID']; |
74 | 74 | } |
@@ -78,14 +78,14 @@ discard block |
||
78 | 78 | $record = $layout_def['fields'][$record_key]; |
79 | 79 | } |
80 | 80 | |
81 | - if(!empty($layout_def['target_module_key'])) { |
|
81 | + if (!empty($layout_def['target_module_key'])) { |
|
82 | 82 | if (!empty($layout_def['fields'][strtoupper($layout_def['target_module_key'])])) { |
83 | - $module=$layout_def['fields'][strtoupper($layout_def['target_module_key'])]; |
|
83 | + $module = $layout_def['fields'][strtoupper($layout_def['target_module_key'])]; |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | 87 | if (empty($module)) { |
88 | - if(empty($layout_def['target_module'])) |
|
88 | + if (empty($layout_def['target_module'])) |
|
89 | 89 | { |
90 | 90 | $module = $layout_def['module']; |
91 | 91 | } |
@@ -98,21 +98,21 @@ discard block |
||
98 | 98 | //links to email module now need additional information. |
99 | 99 | //this is to resolve the information about the target of the emails. necessitated by feature that allow |
100 | 100 | //only on email record for the whole campaign. |
101 | - $parent=''; |
|
101 | + $parent = ''; |
|
102 | 102 | if (!empty($layout_def['parent_info'])) { |
103 | - if (!empty($focus)){ |
|
104 | - $parent="&parent_id=".$focus->id; |
|
105 | - $parent.="&parent_module=".$focus->module_dir; |
|
103 | + if (!empty($focus)) { |
|
104 | + $parent = "&parent_id=".$focus->id; |
|
105 | + $parent .= "&parent_module=".$focus->module_dir; |
|
106 | 106 | } |
107 | 107 | } else { |
108 | - if(!empty($layout_def['parent_id'])) { |
|
108 | + if (!empty($layout_def['parent_id'])) { |
|
109 | 109 | if (isset($layout_def['fields'][strtoupper($layout_def['parent_id'])])) { |
110 | - $parent.="&parent_id=".$layout_def['fields'][strtoupper($layout_def['parent_id'])]; |
|
110 | + $parent .= "&parent_id=".$layout_def['fields'][strtoupper($layout_def['parent_id'])]; |
|
111 | 111 | } |
112 | 112 | } |
113 | - if(!empty($layout_def['parent_module'])) { |
|
113 | + if (!empty($layout_def['parent_module'])) { |
|
114 | 114 | if (isset($layout_def['fields'][strtoupper($layout_def['parent_module'])])) { |
115 | - $parent.="&parent_module=".$layout_def['fields'][strtoupper($layout_def['parent_module'])]; |
|
115 | + $parent .= "&parent_module=".$layout_def['fields'][strtoupper($layout_def['parent_module'])]; |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $action = 'DetailView'; |
121 | 121 | $value = $layout_def['fields'][$key]; |
122 | 122 | global $current_user; |
123 | - if( !empty($record) && |
|
123 | + if (!empty($record) && |
|
124 | 124 | ($layout_def['DetailView'] && !$layout_def['owner_module'] |
125 | 125 | || $layout_def['DetailView'] && !ACLController::moduleSupportsACL($layout_def['owner_module']) |
126 | 126 | || ACLController::checkAccess($layout_def['owner_module'], 'view', $layout_def['owner_id'] == $current_user->id))) |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | { |
131 | 131 | $link = "index.php?module=$module&action=$action&record={$record}{$parent}"; |
132 | 132 | } |
133 | - return '<a href="' . $link . '" >'."$value</a>"; |
|
133 | + return '<a href="'.$link.'" >'."$value</a>"; |
|
134 | 134 | |
135 | - }else{ |
|
135 | + } else { |
|
136 | 136 | return $value; |
137 | 137 | } |
138 | 138 |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -55,8 +57,7 @@ discard block |
||
55 | 57 | if(isset($layout_def['varname'])) |
56 | 58 | { |
57 | 59 | $key = strtoupper($layout_def['varname']); |
58 | - } |
|
59 | - else |
|
60 | + } else |
|
60 | 61 | { |
61 | 62 | $key = $this->_get_column_alias($layout_def); |
62 | 63 | $key = strtoupper($key); |
@@ -71,8 +72,7 @@ discard block |
||
71 | 72 | if(empty($layout_def['target_record_key'])) |
72 | 73 | { |
73 | 74 | $record = $layout_def['fields']['ID']; |
74 | - } |
|
75 | - else |
|
75 | + } else |
|
76 | 76 | { |
77 | 77 | $record_key = strtoupper($layout_def['target_record_key']); |
78 | 78 | $record = $layout_def['fields'][$record_key]; |
@@ -88,8 +88,7 @@ discard block |
||
88 | 88 | if(empty($layout_def['target_module'])) |
89 | 89 | { |
90 | 90 | $module = $layout_def['module']; |
91 | - } |
|
92 | - else |
|
91 | + } else |
|
93 | 92 | { |
94 | 93 | $module = $layout_def['target_module']; |
95 | 94 | } |
@@ -132,7 +131,7 @@ discard block |
||
132 | 131 | } |
133 | 132 | return '<a href="' . $link . '" >'."$value</a>"; |
134 | 133 | |
135 | - }else{ |
|
134 | + } else{ |
|
136 | 135 | return $value; |
137 | 136 | } |
138 | 137 |
@@ -45,83 +45,83 @@ |
||
45 | 45 | |
46 | 46 | class SugarWidgetSubPanelRemoveButtonProjects extends SugarWidgetField |
47 | 47 | { |
48 | - function displayHeaderCell(&$layout_def) |
|
49 | - { |
|
50 | - return ' '; |
|
51 | - } |
|
48 | + function displayHeaderCell(&$layout_def) |
|
49 | + { |
|
50 | + return ' '; |
|
51 | + } |
|
52 | 52 | |
53 | - function displayList(&$layout_def) |
|
54 | - { |
|
55 | - global $app_strings; |
|
53 | + function displayList(&$layout_def) |
|
54 | + { |
|
55 | + global $app_strings; |
|
56 | 56 | |
57 | - global $current_user; |
|
57 | + global $current_user; |
|
58 | 58 | |
59 | - $parent_record_id = $_REQUEST['record']; |
|
60 | - $parent_module = $_REQUEST['module']; |
|
59 | + $parent_record_id = $_REQUEST['record']; |
|
60 | + $parent_module = $_REQUEST['module']; |
|
61 | 61 | |
62 | - if ($layout_def['module'] == 'Holidays'){ |
|
63 | - $action = 'DeleteHolidayRelationship'; |
|
64 | - } |
|
65 | - else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts'){ |
|
66 | - $action = 'DeleteResourceRelationship'; |
|
67 | - } |
|
68 | - else{ |
|
69 | - $action = 'DeleteRelationship'; |
|
70 | - } |
|
62 | + if ($layout_def['module'] == 'Holidays'){ |
|
63 | + $action = 'DeleteHolidayRelationship'; |
|
64 | + } |
|
65 | + else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts'){ |
|
66 | + $action = 'DeleteResourceRelationship'; |
|
67 | + } |
|
68 | + else{ |
|
69 | + $action = 'DeleteRelationship'; |
|
70 | + } |
|
71 | 71 | |
72 | - $record = $layout_def['fields']['ID']; |
|
73 | - $current_module=$layout_def['module']; |
|
74 | - $hideremove=false; |
|
72 | + $record = $layout_def['fields']['ID']; |
|
73 | + $current_module=$layout_def['module']; |
|
74 | + $hideremove=false; |
|
75 | 75 | |
76 | - $return_module = $_REQUEST['module']; |
|
77 | - $return_action = 'SubPanelViewer'; |
|
78 | - $subpanel = $layout_def['subpanel_id']; |
|
79 | - $return_id = $_REQUEST['record']; |
|
76 | + $return_module = $_REQUEST['module']; |
|
77 | + $return_action = 'SubPanelViewer'; |
|
78 | + $subpanel = $layout_def['subpanel_id']; |
|
79 | + $return_id = $_REQUEST['record']; |
|
80 | 80 | |
81 | 81 | |
82 | - $focus = new Project(); |
|
82 | + $focus = new Project(); |
|
83 | 83 | |
84 | - $focus->retrieve($return_id); |
|
84 | + $focus->retrieve($return_id); |
|
85 | 85 | |
86 | - if ($current_user->id == $focus->assigned_user_id || is_admin($current_user)){ |
|
87 | - $is_owner = true; |
|
88 | - } |
|
89 | - else{ |
|
90 | - $is_owner = false; |
|
91 | - } |
|
86 | + if ($current_user->id == $focus->assigned_user_id || is_admin($current_user)){ |
|
87 | + $is_owner = true; |
|
88 | + } |
|
89 | + else{ |
|
90 | + $is_owner = false; |
|
91 | + } |
|
92 | 92 | |
93 | - if (isset($layout_def['linked_field_set']) && !empty($layout_def['linked_field_set'])) { |
|
94 | - $linked_field= $layout_def['linked_field_set'] ; |
|
95 | - } else { |
|
96 | - $linked_field = $layout_def['linked_field']; |
|
97 | - } |
|
98 | - $refresh_page = 0; |
|
99 | - if(!empty($layout_def['refresh_page'])){ |
|
100 | - $refresh_page = 1; |
|
101 | - } |
|
102 | - $return_url = "index.php?module=$return_module&action=$return_action&subpanel=$subpanel&record=$return_id&sugar_body_only=1&inline=1"; |
|
93 | + if (isset($layout_def['linked_field_set']) && !empty($layout_def['linked_field_set'])) { |
|
94 | + $linked_field= $layout_def['linked_field_set'] ; |
|
95 | + } else { |
|
96 | + $linked_field = $layout_def['linked_field']; |
|
97 | + } |
|
98 | + $refresh_page = 0; |
|
99 | + if(!empty($layout_def['refresh_page'])){ |
|
100 | + $refresh_page = 1; |
|
101 | + } |
|
102 | + $return_url = "index.php?module=$return_module&action=$return_action&subpanel=$subpanel&record=$return_id&sugar_body_only=1&inline=1"; |
|
103 | 103 | |
104 | - $icon_remove_text = strtolower($app_strings['LBL_ID_FF_REMOVE']); |
|
105 | - $icon_remove_html = SugarThemeRegistry::current()->getImage( 'delete_inline', 'align="absmiddle" border="0"',null,null,'.gif','');//setting alt to blank on purpose on subpanels for 508 |
|
106 | - $remove_url = $layout_def['start_link_wrapper'] |
|
107 | - . "index.php?module=$parent_module" |
|
108 | - . "&action=$action" |
|
109 | - . "&record=$parent_record_id" |
|
110 | - . "&linked_field=$linked_field" |
|
111 | - . "&linked_id=$record" |
|
112 | - . "&return_url=" . urlencode(urlencode($return_url)) |
|
113 | - . "&refresh_page=1" |
|
114 | - . $layout_def['end_link_wrapper']; |
|
115 | - $remove_confirmation_text = $app_strings['NTC_REMOVE_CONFIRMATION']; |
|
116 | - //based on listview since that lets you select records |
|
117 | - if($layout_def['ListView'] && !$hideremove && $is_owner) { |
|
118 | - return '<a href="' . $remove_url . '"' |
|
119 | - . ' class="listViewTdToolsS1"' |
|
120 | - . " onclick=\"return confirm('$remove_confirmation_text');\"" |
|
121 | - . ">$icon_remove_html $icon_remove_text</a>"; |
|
122 | - }else{ |
|
123 | - return ''; |
|
124 | - } |
|
125 | - } |
|
104 | + $icon_remove_text = strtolower($app_strings['LBL_ID_FF_REMOVE']); |
|
105 | + $icon_remove_html = SugarThemeRegistry::current()->getImage( 'delete_inline', 'align="absmiddle" border="0"',null,null,'.gif','');//setting alt to blank on purpose on subpanels for 508 |
|
106 | + $remove_url = $layout_def['start_link_wrapper'] |
|
107 | + . "index.php?module=$parent_module" |
|
108 | + . "&action=$action" |
|
109 | + . "&record=$parent_record_id" |
|
110 | + . "&linked_field=$linked_field" |
|
111 | + . "&linked_id=$record" |
|
112 | + . "&return_url=" . urlencode(urlencode($return_url)) |
|
113 | + . "&refresh_page=1" |
|
114 | + . $layout_def['end_link_wrapper']; |
|
115 | + $remove_confirmation_text = $app_strings['NTC_REMOVE_CONFIRMATION']; |
|
116 | + //based on listview since that lets you select records |
|
117 | + if($layout_def['ListView'] && !$hideremove && $is_owner) { |
|
118 | + return '<a href="' . $remove_url . '"' |
|
119 | + . ' class="listViewTdToolsS1"' |
|
120 | + . " onclick=\"return confirm('$remove_confirmation_text');\"" |
|
121 | + . ">$icon_remove_html $icon_remove_text</a>"; |
|
122 | + }else{ |
|
123 | + return ''; |
|
124 | + } |
|
125 | + } |
|
126 | 126 | } |
127 | 127 | ?> |
128 | 128 | \ No newline at end of file |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -59,19 +59,19 @@ discard block |
||
59 | 59 | $parent_record_id = $_REQUEST['record']; |
60 | 60 | $parent_module = $_REQUEST['module']; |
61 | 61 | |
62 | - if ($layout_def['module'] == 'Holidays'){ |
|
62 | + if ($layout_def['module'] == 'Holidays') { |
|
63 | 63 | $action = 'DeleteHolidayRelationship'; |
64 | 64 | } |
65 | - else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts'){ |
|
65 | + else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts') { |
|
66 | 66 | $action = 'DeleteResourceRelationship'; |
67 | 67 | } |
68 | - else{ |
|
68 | + else { |
|
69 | 69 | $action = 'DeleteRelationship'; |
70 | 70 | } |
71 | 71 | |
72 | 72 | $record = $layout_def['fields']['ID']; |
73 | - $current_module=$layout_def['module']; |
|
74 | - $hideremove=false; |
|
73 | + $current_module = $layout_def['module']; |
|
74 | + $hideremove = false; |
|
75 | 75 | |
76 | 76 | $return_module = $_REQUEST['module']; |
77 | 77 | $return_action = 'SubPanelViewer'; |
@@ -83,43 +83,43 @@ discard block |
||
83 | 83 | |
84 | 84 | $focus->retrieve($return_id); |
85 | 85 | |
86 | - if ($current_user->id == $focus->assigned_user_id || is_admin($current_user)){ |
|
86 | + if ($current_user->id == $focus->assigned_user_id || is_admin($current_user)) { |
|
87 | 87 | $is_owner = true; |
88 | 88 | } |
89 | - else{ |
|
89 | + else { |
|
90 | 90 | $is_owner = false; |
91 | 91 | } |
92 | 92 | |
93 | 93 | if (isset($layout_def['linked_field_set']) && !empty($layout_def['linked_field_set'])) { |
94 | - $linked_field= $layout_def['linked_field_set'] ; |
|
94 | + $linked_field = $layout_def['linked_field_set']; |
|
95 | 95 | } else { |
96 | 96 | $linked_field = $layout_def['linked_field']; |
97 | 97 | } |
98 | 98 | $refresh_page = 0; |
99 | - if(!empty($layout_def['refresh_page'])){ |
|
99 | + if (!empty($layout_def['refresh_page'])) { |
|
100 | 100 | $refresh_page = 1; |
101 | 101 | } |
102 | 102 | $return_url = "index.php?module=$return_module&action=$return_action&subpanel=$subpanel&record=$return_id&sugar_body_only=1&inline=1"; |
103 | 103 | |
104 | 104 | $icon_remove_text = strtolower($app_strings['LBL_ID_FF_REMOVE']); |
105 | - $icon_remove_html = SugarThemeRegistry::current()->getImage( 'delete_inline', 'align="absmiddle" border="0"',null,null,'.gif','');//setting alt to blank on purpose on subpanels for 508 |
|
105 | + $icon_remove_html = SugarThemeRegistry::current()->getImage('delete_inline', 'align="absmiddle" border="0"', null, null, '.gif', ''); //setting alt to blank on purpose on subpanels for 508 |
|
106 | 106 | $remove_url = $layout_def['start_link_wrapper'] |
107 | 107 | . "index.php?module=$parent_module" |
108 | 108 | . "&action=$action" |
109 | 109 | . "&record=$parent_record_id" |
110 | 110 | . "&linked_field=$linked_field" |
111 | 111 | . "&linked_id=$record" |
112 | - . "&return_url=" . urlencode(urlencode($return_url)) |
|
112 | + . "&return_url=".urlencode(urlencode($return_url)) |
|
113 | 113 | . "&refresh_page=1" |
114 | 114 | . $layout_def['end_link_wrapper']; |
115 | 115 | $remove_confirmation_text = $app_strings['NTC_REMOVE_CONFIRMATION']; |
116 | 116 | //based on listview since that lets you select records |
117 | - if($layout_def['ListView'] && !$hideremove && $is_owner) { |
|
118 | - return '<a href="' . $remove_url . '"' |
|
117 | + if ($layout_def['ListView'] && !$hideremove && $is_owner) { |
|
118 | + return '<a href="'.$remove_url.'"' |
|
119 | 119 | . ' class="listViewTdToolsS1"' |
120 | 120 | . " onclick=\"return confirm('$remove_confirmation_text');\"" |
121 | 121 | . ">$icon_remove_html $icon_remove_text</a>"; |
122 | - }else{ |
|
122 | + } else { |
|
123 | 123 | return ''; |
124 | 124 | } |
125 | 125 | } |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -61,11 +63,9 @@ discard block |
||
61 | 63 | |
62 | 64 | if ($layout_def['module'] == 'Holidays'){ |
63 | 65 | $action = 'DeleteHolidayRelationship'; |
64 | - } |
|
65 | - else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts'){ |
|
66 | + } else if ($layout_def['module'] == 'Users' || $layout_def['module'] == 'Contacts'){ |
|
66 | 67 | $action = 'DeleteResourceRelationship'; |
67 | - } |
|
68 | - else{ |
|
68 | + } else{ |
|
69 | 69 | $action = 'DeleteRelationship'; |
70 | 70 | } |
71 | 71 | |
@@ -85,8 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | if ($current_user->id == $focus->assigned_user_id || is_admin($current_user)){ |
87 | 87 | $is_owner = true; |
88 | - } |
|
89 | - else{ |
|
88 | + } else{ |
|
90 | 89 | $is_owner = false; |
91 | 90 | } |
92 | 91 | |
@@ -119,7 +118,7 @@ discard block |
||
119 | 118 | . ' class="listViewTdToolsS1"' |
120 | 119 | . " onclick=\"return confirm('$remove_confirmation_text');\"" |
121 | 120 | . ">$icon_remove_html $icon_remove_text</a>"; |
122 | - }else{ |
|
121 | + } else{ |
|
123 | 122 | return ''; |
124 | 123 | } |
125 | 124 | } |
@@ -41,26 +41,26 @@ discard block |
||
41 | 41 | |
42 | 42 | |
43 | 43 | class SugarWidgetFieldMultiEnum extends SugarWidgetFieldEnum { |
44 | - public function queryFilternot_one_of(&$layout_def) { |
|
45 | - $arr = array (); |
|
46 | - foreach ($layout_def['input_name0'] as $value) { |
|
47 | - array_push($arr, "'".$GLOBALS['db']->quote($value)."'"); |
|
48 | - } |
|
49 | - $reporter = $this->layout_manager->getAttribute("reporter"); |
|
44 | + public function queryFilternot_one_of(&$layout_def) { |
|
45 | + $arr = array (); |
|
46 | + foreach ($layout_def['input_name0'] as $value) { |
|
47 | + array_push($arr, "'".$GLOBALS['db']->quote($value)."'"); |
|
48 | + } |
|
49 | + $reporter = $this->layout_manager->getAttribute("reporter"); |
|
50 | 50 | |
51 | - $col_name = $this->_get_column_select($layout_def) . " NOT LIKE " ; |
|
52 | - $arr_count = count($arr); |
|
53 | - $query = ""; |
|
54 | - foreach($arr as $key=>$val) { |
|
55 | - $query .= $col_name; |
|
56 | - $value = preg_replace("/^'/", "'%", $val, 1); |
|
57 | - $value = preg_replace("/'$/", "%'", $value, 1); |
|
58 | - $query .= $value; |
|
59 | - if ($key != ($arr_count - 1)) |
|
60 | - $query.= " OR " ; |
|
61 | - } |
|
62 | - return '('.$query.')'; |
|
63 | - } |
|
51 | + $col_name = $this->_get_column_select($layout_def) . " NOT LIKE " ; |
|
52 | + $arr_count = count($arr); |
|
53 | + $query = ""; |
|
54 | + foreach($arr as $key=>$val) { |
|
55 | + $query .= $col_name; |
|
56 | + $value = preg_replace("/^'/", "'%", $val, 1); |
|
57 | + $value = preg_replace("/'$/", "%'", $value, 1); |
|
58 | + $query .= $value; |
|
59 | + if ($key != ($arr_count - 1)) |
|
60 | + $query.= " OR " ; |
|
61 | + } |
|
62 | + return '('.$query.')'; |
|
63 | + } |
|
64 | 64 | |
65 | 65 | public function queryFilterone_of(&$layout_def) { |
66 | 66 | //Fix for inaccurate filtering of contacts in Contacts dashlet on multiselects. |
@@ -72,47 +72,47 @@ discard block |
||
72 | 72 | array_push($arr, "'^^'"); |
73 | 73 | } |
74 | 74 | } |
75 | - $reporter = $this->layout_manager->getAttribute("reporter"); |
|
75 | + $reporter = $this->layout_manager->getAttribute("reporter"); |
|
76 | 76 | |
77 | - $col_name = $this->_get_column_select($layout_def) . " LIKE " ; |
|
78 | - $arr_count = count($arr); |
|
79 | - $query = ""; |
|
80 | - foreach($arr as $key=>$val) { |
|
81 | - $query .= $col_name; |
|
82 | - $value = preg_replace("/^'/", "'%", $val, 1); |
|
83 | - $value = preg_replace("/'$/", "%'", $value, 1); |
|
84 | - $query .= $value; |
|
85 | - if ($key != ($arr_count - 1)) |
|
86 | - $query.= " OR " ; |
|
87 | - } |
|
88 | - return '('.$query.')'; |
|
89 | - } |
|
77 | + $col_name = $this->_get_column_select($layout_def) . " LIKE " ; |
|
78 | + $arr_count = count($arr); |
|
79 | + $query = ""; |
|
80 | + foreach($arr as $key=>$val) { |
|
81 | + $query .= $col_name; |
|
82 | + $value = preg_replace("/^'/", "'%", $val, 1); |
|
83 | + $value = preg_replace("/'$/", "%'", $value, 1); |
|
84 | + $query .= $value; |
|
85 | + if ($key != ($arr_count - 1)) |
|
86 | + $query.= " OR " ; |
|
87 | + } |
|
88 | + return '('.$query.')'; |
|
89 | + } |
|
90 | 90 | |
91 | - public function queryFilteris($layout_def) { |
|
92 | - $input_name0 = $layout_def['input_name0']; |
|
93 | - if (is_array($layout_def['input_name0'])) { |
|
94 | - $input_name0 = $layout_def['input_name0'][0]; |
|
95 | - } |
|
91 | + public function queryFilteris($layout_def) { |
|
92 | + $input_name0 = $layout_def['input_name0']; |
|
93 | + if (is_array($layout_def['input_name0'])) { |
|
94 | + $input_name0 = $layout_def['input_name0'][0]; |
|
95 | + } |
|
96 | 96 | |
97 | - // Bug 40022 |
|
98 | - // IS filter doesn't add the carets (^) to multienum custom field values |
|
99 | - $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0); |
|
97 | + // Bug 40022 |
|
98 | + // IS filter doesn't add the carets (^) to multienum custom field values |
|
99 | + $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0); |
|
100 | 100 | |
101 | - return $this->_get_column_select($layout_def)." = ".$this->reporter->db->quoted($input_name0)."\n"; |
|
102 | - } |
|
101 | + return $this->_get_column_select($layout_def)." = ".$this->reporter->db->quoted($input_name0)."\n"; |
|
102 | + } |
|
103 | 103 | |
104 | - public function queryFilteris_not($layout_def) { |
|
105 | - $input_name0 = $layout_def['input_name0']; |
|
106 | - if (is_array($layout_def['input_name0'])) { |
|
107 | - $input_name0 = $layout_def['input_name0'][0]; |
|
108 | - } |
|
104 | + public function queryFilteris_not($layout_def) { |
|
105 | + $input_name0 = $layout_def['input_name0']; |
|
106 | + if (is_array($layout_def['input_name0'])) { |
|
107 | + $input_name0 = $layout_def['input_name0'][0]; |
|
108 | + } |
|
109 | 109 | |
110 | - // Bug 50549 |
|
111 | - // IS NOT filter doesn't add the carets (^) to multienum custom field values |
|
112 | - $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0); |
|
110 | + // Bug 50549 |
|
111 | + // IS NOT filter doesn't add the carets (^) to multienum custom field values |
|
112 | + $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0); |
|
113 | 113 | |
114 | - return $this->_get_column_select($layout_def)." <> ".$this->reporter->db->quoted($input_name0)."\n"; |
|
115 | - } |
|
114 | + return $this->_get_column_select($layout_def)." <> ".$this->reporter->db->quoted($input_name0)."\n"; |
|
115 | + } |
|
116 | 116 | |
117 | 117 | /** |
118 | 118 | * Returns an OrderBy query for multi-select. We treat multi-select the same as a normal field because |
@@ -131,13 +131,13 @@ discard block |
||
131 | 131 | * @return string |
132 | 132 | */ |
133 | 133 | private function encodeMultienumCustom($layout_def, $value) { |
134 | - $field_def = $this->reporter->getFieldDefFromLayoutDef($layout_def); |
|
135 | - // Check if it is a custom field |
|
136 | - if (!empty($field_def['source']) && ($field_def['source'] == 'custom_fields' || ($field_def['source'] == 'non-db' && !empty($field_def['ext2']) && !empty($field_def['id']))) && !empty($field_def['real_table'])) |
|
137 | - { |
|
138 | - $value = encodeMultienumValue(array($value)); |
|
139 | - } |
|
140 | - return $value; |
|
134 | + $field_def = $this->reporter->getFieldDefFromLayoutDef($layout_def); |
|
135 | + // Check if it is a custom field |
|
136 | + if (!empty($field_def['source']) && ($field_def['source'] == 'custom_fields' || ($field_def['source'] == 'non-db' && !empty($field_def['ext2']) && !empty($field_def['id']))) && !empty($field_def['real_table'])) |
|
137 | + { |
|
138 | + $value = encodeMultienumValue(array($value)); |
|
139 | + } |
|
140 | + return $value; |
|
141 | 141 | } |
142 | 142 | } |
143 | 143 | ?> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -42,22 +42,22 @@ discard block |
||
42 | 42 | |
43 | 43 | class SugarWidgetFieldMultiEnum extends SugarWidgetFieldEnum { |
44 | 44 | public function queryFilternot_one_of(&$layout_def) { |
45 | - $arr = array (); |
|
45 | + $arr = array(); |
|
46 | 46 | foreach ($layout_def['input_name0'] as $value) { |
47 | 47 | array_push($arr, "'".$GLOBALS['db']->quote($value)."'"); |
48 | 48 | } |
49 | 49 | $reporter = $this->layout_manager->getAttribute("reporter"); |
50 | 50 | |
51 | - $col_name = $this->_get_column_select($layout_def) . " NOT LIKE " ; |
|
51 | + $col_name = $this->_get_column_select($layout_def)." NOT LIKE "; |
|
52 | 52 | $arr_count = count($arr); |
53 | 53 | $query = ""; |
54 | - foreach($arr as $key=>$val) { |
|
54 | + foreach ($arr as $key=>$val) { |
|
55 | 55 | $query .= $col_name; |
56 | 56 | $value = preg_replace("/^'/", "'%", $val, 1); |
57 | 57 | $value = preg_replace("/'$/", "%'", $value, 1); |
58 | 58 | $query .= $value; |
59 | 59 | if ($key != ($arr_count - 1)) |
60 | - $query.= " OR " ; |
|
60 | + $query .= " OR "; |
|
61 | 61 | } |
62 | 62 | return '('.$query.')'; |
63 | 63 | } |
@@ -66,24 +66,24 @@ discard block |
||
66 | 66 | //Fix for inaccurate filtering of contacts in Contacts dashlet on multiselects. |
67 | 67 | $arr = array(); |
68 | 68 | foreach ($layout_def['input_name0'] as $value) { |
69 | - if($value != ""){ |
|
69 | + if ($value != "") { |
|
70 | 70 | array_push($arr, "'".$GLOBALS['db']->quote($value)."'"); |
71 | - }else{ |
|
71 | + } else { |
|
72 | 72 | array_push($arr, "'^^'"); |
73 | 73 | } |
74 | 74 | } |
75 | 75 | $reporter = $this->layout_manager->getAttribute("reporter"); |
76 | 76 | |
77 | - $col_name = $this->_get_column_select($layout_def) . " LIKE " ; |
|
77 | + $col_name = $this->_get_column_select($layout_def)." LIKE "; |
|
78 | 78 | $arr_count = count($arr); |
79 | 79 | $query = ""; |
80 | - foreach($arr as $key=>$val) { |
|
80 | + foreach ($arr as $key=>$val) { |
|
81 | 81 | $query .= $col_name; |
82 | 82 | $value = preg_replace("/^'/", "'%", $val, 1); |
83 | 83 | $value = preg_replace("/'$/", "%'", $value, 1); |
84 | 84 | $query .= $value; |
85 | 85 | if ($key != ($arr_count - 1)) |
86 | - $query.= " OR " ; |
|
86 | + $query .= " OR "; |
|
87 | 87 | } |
88 | 88 | return '('.$query.')'; |
89 | 89 | } |
@@ -1,5 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -56,8 +58,9 @@ discard block |
||
56 | 58 | $value = preg_replace("/^'/", "'%", $val, 1); |
57 | 59 | $value = preg_replace("/'$/", "%'", $value, 1); |
58 | 60 | $query .= $value; |
59 | - if ($key != ($arr_count - 1)) |
|
60 | - $query.= " OR " ; |
|
61 | + if ($key != ($arr_count - 1)) { |
|
62 | + $query.= " OR " ; |
|
63 | + } |
|
61 | 64 | } |
62 | 65 | return '('.$query.')'; |
63 | 66 | } |
@@ -68,7 +71,7 @@ discard block |
||
68 | 71 | foreach ($layout_def['input_name0'] as $value) { |
69 | 72 | if($value != ""){ |
70 | 73 | array_push($arr, "'".$GLOBALS['db']->quote($value)."'"); |
71 | - }else{ |
|
74 | + } else{ |
|
72 | 75 | array_push($arr, "'^^'"); |
73 | 76 | } |
74 | 77 | } |
@@ -82,8 +85,9 @@ discard block |
||
82 | 85 | $value = preg_replace("/^'/", "'%", $val, 1); |
83 | 86 | $value = preg_replace("/'$/", "%'", $value, 1); |
84 | 87 | $query .= $value; |
85 | - if ($key != ($arr_count - 1)) |
|
86 | - $query.= " OR " ; |
|
88 | + if ($key != ($arr_count - 1)) { |
|
89 | + $query.= " OR " ; |
|
90 | + } |
|
87 | 91 | } |
88 | 92 | return '('.$query.')'; |
89 | 93 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | } |
56 | 56 | $content = $this->displayListPlain($layout_def); |
57 | - return $content; |
|
57 | + return $content; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | function queryFilterBefore($layout_def) |
@@ -88,26 +88,26 @@ discard block |
||
88 | 88 | $this->queryDateOp($column, $end, "<=", "date").")\n"; |
89 | 89 | } |
90 | 90 | |
91 | - function queryFilterTP_yesterday($layout_def) |
|
92 | - { |
|
93 | - global $timedate; |
|
91 | + function queryFilterTP_yesterday($layout_def) |
|
92 | + { |
|
93 | + global $timedate; |
|
94 | 94 | $layout_def['input_name0'] = $timedate->asDbDate($timedate->getNow(true)->get("-1 day")); |
95 | 95 | return $this->queryFilterOn($layout_def); |
96 | - } |
|
96 | + } |
|
97 | 97 | |
98 | - function queryFilterTP_today($layout_def) |
|
99 | - { |
|
100 | - global $timedate; |
|
98 | + function queryFilterTP_today($layout_def) |
|
99 | + { |
|
100 | + global $timedate; |
|
101 | 101 | $layout_def['input_name0'] = $timedate->asDbDate($timedate->getNow(true)); |
102 | 102 | return $this->queryFilterOn($layout_def); |
103 | - } |
|
103 | + } |
|
104 | 104 | |
105 | - function queryFilterTP_tomorrow(& $layout_def) |
|
106 | - { |
|
107 | - global $timedate; |
|
108 | - $layout_def['input_name0'] = $timedate->asDbDate($timedate->getNow(true)->get("+1 day")); |
|
105 | + function queryFilterTP_tomorrow(& $layout_def) |
|
106 | + { |
|
107 | + global $timedate; |
|
108 | + $layout_def['input_name0'] = $timedate->asDbDate($timedate->getNow(true)->get("+1 day")); |
|
109 | 109 | return $this->queryFilterOn($layout_def); |
110 | - } |
|
110 | + } |
|
111 | 111 | |
112 | 112 | protected function queryMonth($layout_def, $month) |
113 | 113 | { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
3 | 3 | /********************************************************************************* |
4 | 4 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 5 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | { |
47 | 47 | global $timedate; |
48 | 48 | // i guess qualifier and column_function are the same.. |
49 | - if (! empty($layout_def['column_function'])) { |
|
49 | + if (!empty($layout_def['column_function'])) { |
|
50 | 50 | $func_name = 'displayList'.$layout_def['column_function']; |
51 | - if ( method_exists($this,$func_name)) { |
|
51 | + if (method_exists($this, $func_name)) { |
|
52 | 52 | $display = $this->$func_name($layout_def); |
53 | 53 | return $display; |
54 | 54 | } |
@@ -1,5 +1,7 @@ |
||
1 | 1 | <?php |
2 | -if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); |
|
2 | +if(!defined('sugarEntry') || !sugarEntry) { |
|
3 | + die('Not A Valid Entry Point'); |
|
4 | +} |
|
3 | 5 | /********************************************************************************* |
4 | 6 | * SugarCRM Community Edition is a customer relationship management program developed by |
5 | 7 | * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. |