Edit file File name : PopupUsers.php Content :<?php if (!defined('sugarEntry') || !sugarEntry) { die('Not A Valid Entry Point'); } /** * * SugarCRM Community Edition is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc. * * SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd. * Copyright (C) 2011 - 2018 SalesAgility Ltd. * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along with * this program; if not, see http://www.gnu.org/licenses or write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. * * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not * reasonably feasible for technical reasons, the Appropriate Legal Notices must * display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM". */ global $theme; global $app_strings; global $app_list_strings; global $mod_strings; global $urlPrefix; global $currentModule; $current_module_strings = return_module_language($current_language, 'Users'); $seed_object = BeanFactory::newBean('Users'); $where = ""; if (isset($_REQUEST['query'])) { $search_fields = array("first_name", "last_name", "user_name"); $where_clauses = array(); append_where_clause($where_clauses, "first_name", "users.first_name"); append_where_clause($where_clauses, "last_name", "users.last_name"); append_where_clause($where_clauses, "user_name", "users.user_name"); $where = generate_where_statement($where_clauses); } //////////////////////////////////////////////////////// // Start the output //////////////////////////////////////////////////////// $from_form = empty($_REQUEST['form']) ? '' : $_REQUEST['form']; $form_submit = !empty($_REQUEST['form_submit']) && $_REQUEST['form_submit'] != 'false' ? true : false; $parent_id = empty($_REQUEST['parent_id']) ? 'parent_id' : $_REQUEST['parent_id']; $parent_name = empty($_REQUEST['parent_name']) ? 'parent_name' : $_REQUEST['parent_name']; $button = "<form action='index.php' method='post' name='form' id='form'>\n"; $button .= "<input type='hidden' name='record' value='". $_REQUEST['record'] ."'>\n"; $button .= "<input type='hidden' name='module' value='Roles'>\n"; $button .= "<input type='hidden' name='action' value='SaveUserRelationship'>\n"; $button .= "<input type='submit' name='button' class='button' title='".$current_module_strings['LBL_SELECT_CHECKED_BUTTON_TITLE']."' value=' ".$current_module_strings['LBL_SELECT_CHECKED_BUTTON_LABEL']." ' />\n"; $button .= "<input type='submit' name='button' class='button' title='".$app_strings['LBL_DONE_BUTTON_TITLE']."' onclick=\"window.close();\" value=' ".$app_strings['LBL_DONE_BUTTON_LABEL']." ' />\n"; $form =new XTemplate('modules/Users/Popup_Users_picker.html'); $GLOBALS['log']->debug("using file modules/Users/Popup_Users_picker.html"); $form->assign("MOD", $mod_strings); $form->assign("APP", $app_strings); $form->assign("MODULE_NAME", $currentModule); $form->assign("parent_id", $parent_id); $form->assign("parent_name", $parent_name); if (isset($_REQUEST['form_submit'])) { $form->assign("FORM_SUBMIT", $_REQUEST['form_submit']); } $form->assign("FORM", $from_form); $form->assign("RECORD_VALUE", $_REQUEST['record']); if (isset($_REQUEST['first_name'])) { $last_search['FIRST_NAME'] = $_REQUEST['first_name']; } if (isset($_REQUEST['last_name'])) { $last_search['LAST_NAME'] = $_REQUEST['last_name']; } if (isset($_REQUEST['user_name'])) { $last_search['USER_NAME'] = $_REQUEST['user_name']; } insert_popup_header($theme); // Quick search. echo "<form>"; echo get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], "", false); $form->parse("main.SearchHeader"); $form->out("main.SearchHeader"); $form->parse("main.SearchHeaderEnd"); $form->out("main.SearchHeaderEnd"); // Reset the sections that are already in the page so that they do not print again later. $form->reset("main.SearchHeader"); $form->reset("main.SearchHeaderEnd"); $ListView = new ListView(); $ListView->setXTemplate($form); $ListView->setHeaderTitle($current_module_strings['LBL_LIST_FORM_TITLE']); $ListView->setHeaderText($button); $ListView->setQuery($where, "", "user_name", "USER"); $ListView->setModStrings($current_module_strings); $ListView->processListViewMulti($seed_object, "main", "USER"); insert_popup_footer(); Save