]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Emails/Popup_picker.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Emails / Popup_picker.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-2012 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
40
41 global $theme;
42
43
44
45
46
47
48
49
50
51 class Popup_Picker {
52         /*
53          * 
54          */
55         function Popup_Picker() {
56         }
57         
58         /*
59          * 
60          */
61         function _get_where_clause() {
62                 $where = '';
63                 if(isset($_REQUEST['query'])) {
64                         $where_clauses = array();
65                         append_where_clause($where_clauses, "name", "emails.name");
66                         append_where_clause($where_clauses, "contact_name", "contacts.last_name");
67                 
68                         $where = generate_where_statement($where_clauses);
69                 }
70                 
71                 return $where;
72         }
73         
74         /**
75          *
76          */
77         function process_page() {
78                 global $theme;
79                 global $mod_strings;
80                 global $app_strings;
81                 global $currentModule;
82                 
83                 $output_html = '';
84                 $where = '';
85                 
86                 $where = $this->_get_where_clause();
87                 
88                 
89                 
90                 $name = empty($_REQUEST['name']) ? '' : $_REQUEST['name'];
91                 $contact_name = empty($_REQUEST['contact_name']) ? '' : $_REQUEST['contact_name'];
92                 $request_data = empty($_REQUEST['request_data']) ? '' : $_REQUEST['request_data'];
93                 $hide_clear_button = empty($_REQUEST['hide_clear_button']) ? false : true;
94                 
95                 $button  = "<form action='index.php' method='post' name='form' id='form'>\n";
96
97                 if(!$hide_clear_button) {
98                         $button .= "<input type='button' name='button' class='button' onclick=\"send_back('','');\" title='"
99                                 .$app_strings['LBL_CLEAR_BUTTON_TITLE']."' value='  "
100                                 .$app_strings['LBL_CLEAR_BUTTON_LABEL']."  ' />\n";
101                 }
102                 $button .= "<input type='submit' name='button' class='button' onclick=\"window.close();\" title='"
103                         .$app_strings['LBL_CANCEL_BUTTON_TITLE']."' accesskey='"
104                         .$app_strings['LBL_CANCEL_BUTTON_KEY']."' value='  "
105                         .$app_strings['LBL_CANCEL_BUTTON_LABEL']."  ' />\n";
106                 $button .= "</form>\n";
107
108                 $form = new XTemplate('modules/Emails/Popup_picker.html');
109                 $form->assign('MOD', $mod_strings);
110                 $form->assign('APP', $app_strings);
111                 $form->assign('THEME', $theme);
112                 $form->assign('MODULE_NAME', $currentModule);
113                 $form->assign('NAME', $name);
114                 $form->assign('CONTACT_NAME', $contact_name);
115                 $form->assign('request_data', $request_data);
116                 
117                 ob_start();
118                 insert_popup_header($theme);
119                 $output_html .= ob_get_contents();
120                 ob_end_clean();
121                 
122                 $output_html .= get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], '', false);
123                 
124                 $form->parse('main.SearchHeader');
125                 $output_html .= $form->text('main.SearchHeader');
126                 
127                 // Reset the sections that are already in the page so that they do not print again later.
128                 $form->reset('main.SearchHeader');
129
130                 // create the listview
131                 $seed_bean = new Email();
132                 $ListView = new ListView();
133                 $ListView->show_export_button = false;
134                 $ListView->process_for_popups = true;
135                 $ListView->setXTemplate($form);
136                 $ListView->setHeaderTitle($mod_strings['LBL_LIST_FORM_TITLE']);
137                 $ListView->setHeaderText($button);
138                 $ListView->setQuery($where, '', 'name', 'EMAIL');
139                 $ListView->setModStrings($mod_strings);
140
141                 ob_start();
142                 $ListView->processListView($seed_bean, 'main', 'EMAIL');
143                 $output_html .= ob_get_contents();
144                 ob_end_clean();
145                                 
146                 $output_html .= insert_popup_footer();
147                 return $output_html;
148         }
149 } // end of class Popup_Picker
150 ?>