]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Leads/Capture.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Leads / Capture.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 require_once('modules/Leads/LeadFormBase.php');
40
41 global $app_strings, $app_list_strings;
42
43 $mod_strings = return_module_language($sugar_config['default_language'], 'Leads');
44
45 $app_list_strings['record_type_module'] = array('Contact'=>'Contacts', 'Account'=>'Accounts', 'Opportunity'=>'Opportunities', 'Case'=>'Cases', 'Note'=>'Notes', 'Call'=>'Calls', 'Email'=>'Emails', 'Meeting'=>'Meetings', 'Task'=>'Tasks', 'Lead'=>'Leads','Bug'=>'Bugs',
46 );
47 /**
48  * To make your changes upgrade safe create a file called leadCapture_override.php and place the changes there
49  */
50 $users = array(
51         'PUT A RANDOM KEY FROM THE WEBSITE HERE' => array('name'=>'PUT THE USER_NAME HERE', 'pass'=>'PUT THE USER_HASH FOR THE RESPECTIVE USER HERE'),
52 );
53 if(file_exists('leadCapture_override.php')){
54         include('leadCapture_override.php');
55 }
56 if (!empty($_POST['user']) && !empty($users[$_POST['user']])) {
57
58     $current_user = new User();
59         $current_user->user_name = $users[$_POST['user']]['name'];
60
61         if($current_user->load_user($users[$_POST['user']]['pass'], true)){
62                 $leadForm = new LeadFormBase();
63                 $prefix = '';
64                 if(!empty($_POST['prefix'])){
65                         $prefix =       $_POST['prefix'];
66                 }
67
68                 if( !isset($_POST['assigned_user_id']) || !empty($_POST['assigned_user_id']) ){
69                         $_POST['prefix'] = $current_user->id;
70                 }
71
72                 $_POST['record'] ='';
73
74                 if( isset($_POST['_splitName']) ) {
75                         $name = explode(' ',$_POST['name']);
76                         if(sizeof($name) == 1) {
77                                 $_POST['first_name'] = '';  $_POST['last_name'] = $name[0];
78                         }
79                         else {
80                                 $_POST['first_name'] = $name[0];  $_POST['last_name'] = $name[1];
81                         }
82                 }
83
84                 $return_val = $leadForm->handleSave($prefix, false, true);
85
86                 if(isset($_POST['redirect']) && !empty($_POST['redirect'])){
87
88                         //header("Location: ".$_POST['redirect']);
89                         echo '<html ' . get_language_header() .'><head><title>SugarCRM</title></head><body>';
90                         echo '<form name="redirect" action="' .$_POST['redirect']. '" method="POST">';
91
92                         foreach($_POST as $param => $value) {
93
94                                 if($param != 'redirect' && $param != 'submit') {
95                                         echo '<input type="hidden" name="'.$param.'" value="'.$value.'">';
96                                 }
97
98                         }
99
100                         if( ($return_val == '') || ($return_val  == 0) || ($return_val < 0) ) {
101                                 echo '<input type="hidden" name="error" value="1">';
102                         }
103                         echo '</form><script language="javascript" type="text/javascript">document.redirect.submit();</script>';
104                         echo '</body></html>';
105                 }
106                 else{
107                         echo "Thank You For Your Submission.";
108                 }
109                 sugar_cleanup();
110                 // die to keep code from running into redirect case below
111                 die();
112         }
113 }
114
115 echo "We're sorry, the server is currently unavailable, please try again later.";
116 if (!empty($_POST['redirect'])) {
117         echo '<html ' . get_language_header() . '><head><title>SugarCRM</title></head><body>';
118         echo '<form name="redirect" action="' .$_POST['redirect']. '" method="POST">';
119         echo '</form><script language="javascript" type="text/javascript">document.redirect.submit();</script>';
120         echo '</body></html>';
121 }
122 ?>