Files
crm.twinpol.com/modules/Emails/ListViewGroup.php
2025-05-12 15:44:39 +00:00

264 lines
11 KiB
PHP
Executable File

<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* 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. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
/*********************************************************************************
* Description: TODO: To be written.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
require_once('modules/MySettings/StoreQuery.php');
global $app_strings;
global $app_list_strings;
global $mod_strings;
global $urlPrefix;
global $currentModule;
global $theme;
global $focus_list; // focus_list is the means of passing data to a ListView.
$focus = new Email();
$header_text = '';
$where = '';
$type = '';
$assigned_user_id = '';
$group = '';
$search_adv = '';
$whereClauses = array();
$error = '';
///////////////////////////////////////////////////////////////////////////////
////
//// SEARCH FORM FUNCTIONALITY
//// SEARCH QUERY GENERATION
$storeQuery = new StoreQuery();
if(!isset($_REQUEST['query'])){
//_pp('loading: '.$currentModule.'Group');
//_pp($current_user->user_preferences[$currentModule.'GroupQ']);
$storeQuery->loadQuery($currentModule.'Group');
$storeQuery->populateRequest();
} else {
//_pp($current_user->user_preferences[$currentModule.'GroupQ']);
//_pp('saving: '.$currentModule.'Group');
$storeQuery->saveFromGet($currentModule.'Group');
}
if(isset($_REQUEST['query'])) {
// we have a query
if(isset($_REQUEST['email_type'])) $email_type = $_REQUEST['email_type'];
if(isset($_REQUEST['assigned_to'])) $assigned_to = $_REQUEST['assigned_to'];
if(isset($_REQUEST['status'])) $status = $_REQUEST['status'];
if(isset($_REQUEST['name'])) $name = $_REQUEST['name'];
if(isset($_REQUEST['contact_name'])) $contact_name = $_REQUEST['contact_name'];
if(isset($email_type) && $email_type != "") $whereClauses['emails.type'] = "emails.type = '".$GLOBALS['db']->quote($email_type)."'";
if(isset($assigned_to) && $assigned_to != "") $whereClauses['emails.assigned_user_id'] = "emails.assigned_user_id = '".$GLOBALS['db']->quote($assigned_to)."'";
if(isset($status) && $status != "") $whereClauses['emails.status'] = "emails.status = '".$GLOBALS['db']->quote($status)."'";
if(isset($name) && $name != "") $whereClauses['emails.name'] = "emails.name like '".$GLOBALS['db']->quote($name)."%'";
if(isset($contact_name) && $contact_name != '') {
$contact_names = explode(" ", $contact_name);
foreach ($contact_names as $name) {
$whereClauses['contacts.name'] = "(contacts.first_name like '".$GLOBALS['db']->quote($name)."%' OR contacts.last_name like '".$GLOBALS['db']->quote($name)."%')";
}
}
$focus->custom_fields->setWhereClauses($whereClauses);
$GLOBALS['log']->info("Here is the where clause for the list view: $where");
} // end isset($_REQUEST['query'])
//// OUTPUT GENERATION
if (!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') {
// ASSIGNMENTS pre-processing
$email_type_sel = '';
$assigned_to_sel = '';
$status_sel = '';
if(isset($_REQUEST['email_type'])) $email_type_sel = $_REQUEST['email_type'];
if(isset($_REQUEST['assigned_to'])) $assigned_to_sel = $_REQUEST['assigned_to'];
if(isset($_REQUEST['status'])) $status_sel = $_REQUEST['status'];
if(isset($_REQUEST['search'])) $search_adv = $_REQUEST['search'];
// drop-downs values
$r = $focus->db->query("SELECT id, user_name FROM users WHERE deleted = 0 AND status = 'Active' OR users.is_group = 1 ORDER BY status");
$users[] = '';
while($a = $focus->db->fetchByAssoc($r)) {
$users[$a['id']] = $a['user_name'];
}
$email_types[] = '';
$email_types = array_merge($email_types, $app_list_strings['dom_email_types']);
$email_status[] = '';
$email_status = array_merge($email_status, $app_list_strings['dom_email_status']);
$types = get_select_options_with_id($email_types, $email_type_sel);
$assigned_to = get_select_options_with_id($users, $assigned_to_sel);
$email_status = get_select_options_with_id($email_status, $status_sel);
// ASSIGNMENTS AND OUTPUT
$search_form = new XTemplate ('modules/Emails/SearchFormGroupInbox.html');
$search_form->assign('MOD', $mod_strings);
$search_form->assign('APP', $app_strings);
$search_form->assign('ADVANCED_SEARCH_PNG', SugarThemeRegistry::current()->getImage('advanced_search','alt="'.$app_strings['LNK_ADVANCED_SEARCH'].'" border="0"'));
$search_form->assign('BASIC_SEARCH_PNG', SugarThemeRegistry::current()->getImage('basic_search','alt="'.$app_strings['LNK_BASIC_SEARCH'].'" border="0"'));
$search_form->assign('TYPE_OPTIONS', $types);
$search_form->assign('ASSIGNED_TO_OPTIONS', $assigned_to);
$search_form->assign('STATUS_OPTIONS', $email_status);
$search_form->assign('ADV_URL', $_SERVER['REQUEST_URI']);
$search_form->assign('SEARCH_ADV', $search_adv);
$search_form->assign('SEARCH_ACTION', 'ListViewGroup');
if(isset($_REQUEST['name'])) $search_form->assign('NAME', $_REQUEST['name']);
if(isset($_REQUEST['contact_name'])) $search_form->assign('CONTACT_NAME', $_REQUEST['contact_name']);
if(isset($current_user_only)) $search_form->assign('CURRENT_USER_ONLY', "checked");
// adding custom fields:
$focus->custom_fields->populateXTPL($search_form, 'search' );
if(!empty($get['assigned_user_id'])) {
$search_form->assign('ASSIGNED_USER_ID', $get['assigned_user_id']);
}
$search_form->assign('JAVASCRIPT', $focus->u_get_clear_form_js());
}
//// END SEARCH FORM FUNCTIONALITY
////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//// NAVIGATION HACK
$_SESSION['emailStartAction'] = ''; // empty this value to allow new writes
//// END NAVIGATION HACK
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
////
//// INBOX FUNCTIONALITY
// for Inbox
$r = $focus->db->query('SELECT count(id) AS c FROM users WHERE users.is_group = 1 AND deleted = 0');
$a = $focus->db->fetchByAssoc($r);
$or = 'emails.assigned_user_id IN (\'abc\''; // must have a dummy entry to force group inboxes to not show personal emails
if($a['c'] > 0) {
$r = $focus->db->query('SELECT id FROM users WHERE users.is_group = 1 AND deleted = 0');
while($a = $focus->db->fetchByAssoc($r)) {
$or .= ',\''.$a['id'].'\'';
}
}
$or .= ') ';
$whereClauses['emails.assigned_user_id'] = $or;
$whereClauses['emails.type'] = 'emails.type = \'inbound\'';
$display_title = $mod_strings['LBL_LIST_TITLE_GROUP_INBOX'];
//// END INBOX FUNCTIONALITY
////
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//// OUTPUT
///////////////////////////////////////////////////////////////////////////////
echo get_module_title("Emails", $mod_strings['LBL_MODULE_TITLE'].$display_title, true);
// admin-edit
if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){
$header_text = "&nbsp;<a href='index.php?action=index&module=DynamicLayout&from_action=SearchForm&from_module=".$_REQUEST['module'] ."'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>";
}
// search form
echo get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE']. $header_text, "", false);
// ADVANCED SEARCH
if(isset($_REQUEST['search']) && $_REQUEST['search'] == 'advanced') {
$search_form->parse('adv');
$search_form->out('adv');
} else {
$search_form->parse('main');
$search_form->out('main');
}
echo $focus->rolloverStyle; // for email previews
if(!empty($_REQUEST['error'])) {
$error = $app_list_strings['dom_email_errors'][$_REQUEST['error']];
}
//_pp($where);
if(!empty($assigned_to_sel)) {
$whereClauses['emails.assigned_user_id'] = 'emails.assigned_user_id = \''.$assigned_to_sel.'\'';
}
//_pp($whereClauses);
// CONSTRUCT WHERE STRING FROM WHERECLAUSE ARRAY
foreach($whereClauses as $clause) {
if($where != '') {
$where .= ' AND ';
}
$where .= $clause;
}
//echo $focus->quickCreateJS();
$ListView = new ListView();
// group distributionforms
echo $focus->distributionForm($where);
$ListView->shouldProcess = true;
$ListView->show_mass_update = true;
$ListView->show_mass_update_form = false;
$ListView->initNewXTemplate( 'modules/Emails/ListViewGroupInbox.html',$mod_strings);
$ListView->xTemplateAssign('ATTACHMENT_HEADER', SugarThemeRegistry::current()->getImage('attachment',"","",""));
$ListView->xTemplateAssign('ERROR', $error);
$ListView->xTemplateAssign('CHECK_MAIL',$focus->checkInbox('group'));
$ListView->setHeaderTitle($display_title . $header_text );
$ListView->setQuery($where, '', 'date_sent, date_entered DESC', 'EMAIL');
$ListView->setAdditionalDetails();
$ListView->processListView($focus, 'main', 'EMAIL');
?>