]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldrelate.php
Release 6.5.12
[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['custom_module']) || isset($layout_def['ext2'])) {
86             $bean = BeanFactory::getBean($layout_def['module']);
87             $layout_def['table'] = $bean->table_name;
88             if (isset($bean->field_defs[$title]['db_concat_fields'])){
89                 $layout_def['db_concat_fields'] = $bean->field_defs[$title]['db_concat_fields'];
90             }
91         }
92         if (isset($layout_def['db_concat_fields'])) {
93             $title = $this->reporter->db->concat($layout_def['table'], $layout_def['db_concat_fields']);
94         }
95
96         $query = "SELECT
97                 id,
98                 $title title
99             FROM {$layout_def['table']}
100             WHERE deleted = 0
101             ORDER BY title ASC";
102         return $query;
103     }
104
105     /**
106      * Method returns part of where in style table_alias.id IN (...) because we can't join of relation
107      *
108      * @param array $layout_def definition of a field
109      * @param bool $rename_columns unused
110      * @return string SQL where part
111      */
112     public function queryFilterStarts_With($layout_def, $rename_columns = true)
113     {
114         $ids = array();
115
116         $relation = new Relationship();
117         $relation->retrieve_by_name($layout_def['link']);
118
119         global $beanList;
120         $beanClass = $beanList[$relation->lhs_module];
121         $seed = new $beanClass();
122         $seed->retrieve($layout_def['input_name0']);
123
124         $link = new Link2($layout_def['link'], $seed);
125         $sql = $link->getQuery();
126         $result = $this->reporter->db->query($sql);
127         while ($row = $this->reporter->db->fetchByAssoc($result))
128         {
129             $ids[] = $row['id'];
130         }
131         $layout_def['name'] = 'id';
132         return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')";
133     }
134
135     /**
136      * Method returns part of where in style table_alias.id IN (...) because we can't join of relation
137      *
138      * @param array $layout_def definition of a field
139      * @param bool $rename_columns unused
140      * @return string SQL where part
141      */
142     public function queryFilterone_of($layout_def, $rename_columns = true)
143     {
144         $ids = array();
145         if (isset($layout_def['link'])) {
146             $relation = new Relationship();
147             $relation->retrieve_by_name($layout_def['link']);
148         }
149         $module = isset($layout_def['custom_module']) ? $layout_def['custom_module'] : $layout_def['module'];
150         $seed = BeanFactory::getBean($module);
151
152         foreach($layout_def['input_name0'] as $beanId)
153         {
154             if (!empty($relation->lhs_module) && !empty($relation->rhs_module)
155                 && $relation->lhs_module == $relation->rhs_module) {
156                     $filter = array('id');
157             } else {
158                 $filter = array('id', $layout_def['name']);
159             }
160             $where = $layout_def['id_name']."='$beanId' ";
161             $sql = $seed->create_new_list_query('', $where, $filter, array(), 0, '', false, $seed, true);
162             $result = $this->reporter->db->query($sql);
163             while ($row = $this->reporter->db->fetchByAssoc($result)) {
164                 $ids[] = $row['id'];
165             }
166         }
167         $ids = array_unique($ids);
168         $layout_def['name'] = 'id';
169         return $this->_get_column_select($layout_def) . " IN ('" . implode("', '", $ids) . "')";
170     }
171
172         //for to_pdf/to_csv
173         function displayListPlain($layout_def) {
174             $reporter = $this->layout_manager->getAttribute("reporter");
175                 $field_def = $reporter->all_fields[$layout_def['column_key']];
176                 $display = strtoupper($field_def['secondary_table'].'_name');
177                 //#31797  , we should get the table alias in a global registered array:selected_loaded_custom_links
178                 if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){
179                         $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name');
180                 }
181         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']]))
182         {
183             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name');
184         }
185                 elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){
186                         $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name');
187                 }
188                 $cell = $layout_def['fields'][$display];
189                 return $cell;
190         }
191
192     function displayList($layout_def) {
193         $reporter = $this->layout_manager->getAttribute("reporter");
194         $field_def = $reporter->all_fields[$layout_def['column_key']];
195         $display = strtoupper($field_def['secondary_table'].'_name');
196
197         //#31797  , we should get the table alias in a global registered array:selected_loaded_custom_links
198         if(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table']])){
199              $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table']]['join_table_alias'].'_name');
200         }
201         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']]))
202         {
203             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['rep_rel_name']]['join_table_alias'].'_name');
204         }
205         elseif(!empty($reporter->selected_loaded_custom_links) && !empty($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']])){
206             $display = strtoupper($reporter->selected_loaded_custom_links[$field_def['secondary_table'].'_'.$field_def['name']]['join_table_alias'].'_name');
207         }
208         $recordField = $this->getTruncatedColumnAlias(strtoupper($layout_def['table_alias']).'_'.strtoupper($layout_def['name']));
209
210         $record = $layout_def['fields'][$recordField];
211         $cell = "<a target='_blank' class=\"listViewTdLinkS1\" href=\"index.php?action=DetailView&module=".$field_def['ext2']."&record=$record\">";
212         $cell .= $layout_def['fields'][$display];
213         $cell .= "</a>";
214         return $cell;
215     }
216 }
217
218 ?>