]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldrelate.php
Release 6.5.10
[Github/sugarcrm.git] / include / generic / SugarWidgets / SugarWidgetFieldrelate.php
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  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 class SugarWidgetFieldRelate extends SugarWidgetReportField
40 {
41     /**
42      * Method returns HTML of input on configure dashlet page
43      *
44      * @param array $layout_def definition of a field
45      * @return string HTML of select for edit page
46      */
47     public function displayInput($layout_def)
48     {
49         $values = array();
50         if (is_array($layout_def['input_name0']))
51         {
52             $values = $layout_def['input_name0'];
53         }
54         else
55         {
56             $values[] = $layout_def['input_name0'];
57         }
58         $html = '<select name="' . $layout_def['name'] . '[]" multiple="true">';
59
60         $query = $this->displayInputQuery($layout_def);
61         $result = $this->reporter->db->query($query);
62         while ($row = $this->reporter->db->fetchByAssoc($result))
63         {
64             $html .= '<option value="' . $row['id'] . '"';
65             if (in_array($row['id'], $values))
66             {
67                 $html .= ' selected="selected"';
68             }
69             $html .= '>' . htmlspecialchars($row['title']) . '</option>';
70         }
71
72         $html .= '</select>';
73         return $html;
74     }
75
76     /**
77      * Method returns database query for generation HTML of input on configure dashlet page
78      *
79      * @param array $layout_def definition of a field
80      * @return string database query HTML of select for edit page
81      */
82     private function displayInputQuery($layout_def)
83     {
84         $title = $layout_def['rname'];
85         if (isset($layout_def['db_concat_fields'])) {
86             $title = $this->reporter->db->concat($layout_def['table'], $layout_def['db_concat_fields']);
87         }
88
89         $query = "SELECT
90                 id,
91                 $title title
92             FROM {$layout_def['table']}
93             WHERE deleted = 0
94             ORDER BY title ASC";
95         return $query;
96     }
97
98     /**
99      * Method returns part of where in style table_alias.id IN (...) because we can't join of relation
100      *
101      * @param array $layout_def definition of a field
102      * @param bool $rename_columns unused
103      * @return string SQL where part
104      */
105     public function queryFilterStarts_With($layout_def, $rename_columns = true)
106     {
107         $ids = array();
108
109         $relation = new Relationship();
110         $relation->retrieve_by_name($layout_def['link']);
111
112         global $beanList;
113         $beanClass = $beanList[$relation->lhs_module];
114         $seed = new $beanClass();
115         $seed->retrieve($layout_def['input_name0']);
116
117         $link = new Link2($layout_def['link'], $seed);
118         $sql = $link->getQuery();
119         $result = $this->reporter->db->query($sql);
120         while ($row = $this->reporter->db->fetchByAssoc($result))
121         {
122             $ids[] = $row['id'];
123         }
124         $layout_def['name'] = 'id';
125         return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')";
126     }
127
128     /**
129      * Method returns part of where in style table_alias.id IN (...) because we can't join of relation
130      *
131      * @param array $layout_def definition of a field
132      * @param bool $rename_columns unused
133      * @return string SQL where part
134      */
135     public function queryFilterone_of($layout_def, $rename_columns = true)
136     {
137         $ids = array();
138
139         $relation = new Relationship();
140         $relation->retrieve_by_name($layout_def['link']);
141
142         global $beanList;
143         $beanClass = $beanList[$relation->lhs_module];
144         $seed = new $beanClass();
145
146         foreach($layout_def['input_name0'] as $beanId)
147         {
148             $seed->retrieve($beanId);
149
150             $link = new Link2($layout_def['link'], $seed);
151             $sql = $link->getQuery();
152             $result = $this->reporter->db->query($sql);
153             while ($row = $this->reporter->db->fetchByAssoc($result))
154             {
155                 $ids[] = $row['id'];
156             }
157         }
158         $ids = array_unique($ids);
159         $layout_def['name'] = 'id';
160         return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')";
161     }
162
163         //for to_pdf/to_csv
164         function displayListPlain($layout_def) {
165             $reporter = $this->layout_manager->getAttribute("reporter");
166                 $field_def = $reporter->all_fields[$layout_def['column_key']];
167                 $display = strtoupper($field_def['secondary_table'].'_name');
168                 //#31797  , we should get the table alias in a global registered array:selected_loaded_custom_links
169                 if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){
170                         $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name');
171                 }
172         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']]))
173         {
174             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name');
175         }
176                 elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){
177                         $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name');
178                 }
179                 $cell = $layout_def['fields'][$display];
180                 return $cell;
181         }
182
183     function displayList($layout_def) {
184         $reporter = $this->layout_manager->getAttribute("reporter");
185         $field_def = $reporter->all_fields[$layout_def['column_key']];
186         $display = strtoupper($field_def['secondary_table'].'_name');
187
188         //#31797  , we should get the table alias in a global registered array:selected_loaded_custom_links
189         if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){
190              $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name');
191         }
192         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']]))
193         {
194             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name');
195         }
196         elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){
197             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name');
198         }
199         $recordField = $this->getTruncatedColumnAlias(strtoupper($layout_def['table_alias']).'_'.strtoupper($layout_def['name']));
200
201         $record = $layout_def['fields'][$recordField];
202         $cell = "<a target='_blank' class=\"listViewTdLinkS1\" href=\"index.php?action=DetailView&module=".$field_def['ext2']."&record=$record\">";
203         $cell .= $layout_def['fields'][$display];
204         $cell .= "</a>";
205         return $cell;
206     }
207 }
208
209 ?>