Add php files

This commit is contained in:
2025-05-12 15:44:39 +00:00
parent c951760058
commit 82d5804ac4
9534 changed files with 2638137 additions and 0 deletions

279
modules/MailMerge/Step1.php Executable file
View File

@@ -0,0 +1,279 @@
<?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".
********************************************************************************/
/*
* Created on Oct 4, 2005
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
require_once('modules/MailMerge/modules_array.php');
require_once('include/json_config.php');
$json_config = new json_config();
global $app_strings;
global $app_list_strings;
global $mod_strings;
global $current_user;
global $beanList, $beanFiles;
global $sugar_version, $sugar_config;
$xtpl = new XTemplate('modules/MailMerge/Step1.html');
$xtpl->assign("MOD", $mod_strings);
$xtpl->assign("APP", $app_strings);
$xtpl->assign('JSON_CONFIG_JAVASCRIPT', $json_config->get_static_json_server(false, true));
if($_SESSION['MAILMERGE_MODULE'] == 'Campaigns' || $_SESSION['MAILMERGE_MODULE'] == 'CampaignProspects'){
$modules_array['Campaigns'] = 'Campaigns';
}
$module_list = $modules_array;
if(isset($_REQUEST['reset']) && $_REQUEST['reset'])
{
$_SESSION['MAILMERGE_MODULE'] = null;
$_SESSION['MAILMERGE_DOCUMENT_ID'] = null;
$_SESSION['SELECTED_OBJECTS_DEF'] = null;
$_SESSION['MAILMERGE_SKIP_REL'] = null;
$_SESSION['MAILMERGE_RECORD'] = null;
$_SESSION['MAILMERGE_RECORDS'] = null;
$_SESSION['MAILMERGE_CONTAINS_CONTACT_INFO'] = null;
}
$fromListView = false;
if(!empty($_REQUEST['record']))
{
$_SESSION['MAILMERGE_RECORD'] = $_REQUEST['record'];
}
else if(isset($_REQUEST['uid'])) {
$_SESSION['MAILMERGE_RECORD'] = explode(',', $_REQUEST['uid']);
}
else if(isset($_REQUEST['entire']) && $_REQUEST['entire'] == 'true') {
// do entire list
$focus = 0;
$bean = $beanList[ $_SESSION['MAILMERGE_MODULE']];
require_once($beanFiles[$bean]);
$focus = new $bean;
if(isset($_SESSION['export_where']) && !empty($_SESSION['export_where'])) { // bug 4679
$where = $_SESSION['export_where'];
} else {
$where = '';
}
$beginWhere = substr(trim($where), 0, 5);
if ($beginWhere == "where")
$where = substr(trim($where), 5, strlen($where));
$query = $focus->create_export_query($order_by,$where);
$result = $db->query($query,true,"Error mail merging {$_SESSION['MAILMERGE_MODULE']}: "."<BR>$query");
$new_arr = array();
while($val = $db->fetchByAssoc($result,-1,false))
{
array_push($new_arr, $val['id']);
}
$_SESSION['MAILMERGE_RECORD'] = $new_arr;
}
else if(isset($_SESSION['MAILMERGE_RECORDS']))
{
$fromListView = true;
$_SESSION['MAILMERGE_RECORD'] = $_SESSION['MAILMERGE_RECORDS'];
$_SESSION['MAILMERGE_RECORDS'] = null;
}
$rModule = '';
if(isset($_SESSION['MAILMERGE_RECORD']))
{
if(!empty($_POST['return_module']) && $_POST['return_module'] != "MailMerge")
{
$rModule = $_POST['return_module'];
}
else if($fromListView)
{
$rModule = $_SESSION['MAILMERGE_MODULE_FROM_LISTVIEW'];
$_SESSION['MAILMERGE_MODULE_FROM_LISTVIEW'] = null;
}
else
{
$rModule = $_SESSION['MAILMERGE_MODULE'];
}
if($rModule == 'CampaignProspects'){
$rModule = 'Campaigns';
}
$_SESSION['MAILMERGE_MODULE'] = $rModule;
if(!empty($rModule) && $rModule != "MailMerge")
{
$class_name = $beanList[$rModule];
$includedir = $beanFiles[$class_name];
require_once($includedir);
$seed = new $class_name();
$selected_objects = '';
foreach($_SESSION['MAILMERGE_RECORD'] as $record_id)
{
if($rModule == 'Campaigns'){
$prospect = new Prospect();
$prospect_module_list = array('leads', 'contacts', 'prospects', 'users');
foreach($prospect_module_list as $mname){
$pList = $prospect->retrieveTargetList("campaigns.id = '$record_id' AND related_type = #$mname#", array('id', 'first_name', 'last_name'));
foreach($pList['list'] as $bean){
$selected_objects .= $bean->id.'='.str_replace("&", "##", $bean->name).'&';
}
}
}else{
$seed->retrieve($record_id);
$selected_objects .= $record_id.'='.str_replace("&", "##", $seed->name).'&';
}
}
if($rModule != 'Contacts'
&& $rModule != 'Leads' && $rModule != 'Products' && $rModule != 'Campaigns' && $rModule != 'Projects'
)
{
$_SESSION['MAILMERGE_SKIP_REL'] = false;
$xtpl->assign("STEP", "2");
$xtpl->assign("SELECTED_OBJECTS", $selected_objects);
$_SESSION['SELECTED_OBJECTS_DEF'] = $selected_objects;
}
else
{
$_SESSION['MAILMERGE_SKIP_REL'] = true;
$xtpl->assign("STEP", "2");
$_SESSION['SELECTED_OBJECTS_DEF'] = $selected_objects;
}
}
else
{
$xtpl->assign("STEP", "2");
}
}
else
{
$xtpl->assign("STEP", "2");
}
$modules = $module_list;
$func = "";
if($rModule == 'Campaigns'){
$func = "disableModuleDropDown();";
}
$xtpl->assign("MAILMERGE_DISABLE_DROP_DOWN", $func);
$xtpl->assign("MAILMERGE_MODULE_OPTIONS", get_select_options_with_id($modules, $_SESSION['MAILMERGE_MODULE']));
$xtpl->assign("MAILMERGE_TEMPLATES", get_select_options_with_id(getDocumentRevisions(), '0'));
if(isset($_SESSION['MAILMERGE_MODULE'])){
$module_select_text = $mod_strings['LBL_MAILMERGE_SELECTED_MODULE'];
$xtpl->assign("MAILMERGE_NUM_SELECTED_OBJECTS",count($_SESSION['MAILMERGE_RECORD'])." ".$_SESSION['MAILMERGE_MODULE']." Selected");
}
else{
$module_select_text = $mod_strings['LBL_MAILMERGE_MODULE'];
}
$xtpl->assign("MODULE_SELECT", $module_select_text);
if($_SESSION['MAILMERGE_MODULE'] == 'Campaigns'){
$_SESSION['MAILMERGE_MODULE'] = 'CampaignProspects';
}
$admin = new Administration();
$admin->retrieveSettings();
$user_merge = $current_user->getPreference('mailmerge_on');
if ($user_merge != 'on' || !isset($admin->settings['system_mailmerge_on']) || !$admin->settings['system_mailmerge_on']){
$xtpl->assign("ADDIN_NOTICE", $mod_strings['LBL_ADDIN_NOTICE']);
$xtpl->assign("DISABLE_NEXT_BUTTON", "disabled");
}
$xtpl->parse("main");
$xtpl->out("main");
function get_user_module_list($user){
global $app_list_strings, $current_language;
$app_list_strings = return_app_list_strings_language($current_language);
$modules = query_module_access_list($user);
global $modInvisList, $modInvisListActivities;
if(isset($modules['Calendar']) || $modules['Activities']){
foreach($modInvisListActivities as $invis){
$modules[$invis] = $invis;
}
}
return $modules;
}
function getDocumentRevisions()
{
$document = new Document();
$currentDate = gmdate($GLOBALS['timedate']->get_db_date_time_format());
if ($document->db->dbType=="mysql") {
$empty_date=db_convert("'0000-00-00'", 'datetime');
}
else {
$empty_date=db_convert("'1970-01-01 00:00:00'", 'datetime');
}
$query = "SELECT revision, document_name, document_revisions.id FROM document_revisions
LEFT JOIN documents on documents.id = document_revisions.document_id WHERE ((active_date <= ".db_convert("'".$currentDate."'", 'datetime')." AND exp_date > ".db_convert("'".$currentDate."'", 'datetime').") OR (active_date is NULL) or (active_date = ".$empty_date.") or (active_date <= ".db_convert("'".$currentDate."'", 'datetime')." AND ((exp_date = ".$empty_date.") OR (exp_date is NULL)))) AND is_template = 1 AND template_type = 'mailmerge' AND documents.deleted = 0 ORDER BY document_name";
$result = $document->db->query($query,true,"Error retrieving $document->object_name list: ");
$list = Array();
$list['None'] = 'None';
while(($row = $document->db->fetchByAssoc($result)) != null)
{
$revision = null;
$docName = $row['document_name'];
$revision = $row['revision'];
if(!empty($revision));
{
$docName .= " (rev. ".$revision.")";
}
$list[$row['id']] = $docName;
}
return $list;
}
?>