/
var
/
www
/
html
/
sugardemo
/
modules
/
Users
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ /********************************************************************************* * Description: TODO: To be written. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ 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 = ['first_name', 'last_name', 'user_name']; $where_clauses = []; 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();