]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Leads/Capture.php
Release 6.4.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-2011 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->authenticate_user($users[$_POST['user']]['pass'])){
62                 $userid = $current_user->retrieve_user_id($users[$_REQUEST['user']]['name']);
63                 $current_user->retrieve($userid);
64                 $leadForm = new LeadFormBase();
65                 $prefix = '';
66                 if(!empty($_POST['prefix'])){
67                         $prefix =       $_POST['prefix'];
68                 }
69
70                 if( !isset($_POST['assigned_user_id']) || !empty($_POST['assigned_user_id']) ){
71                         $_POST['prefix'] = $userid;
72                 }
73
74                 $_POST['record'] ='';
75
76                 if( isset($_POST['_splitName']) ) {
77                         $name = explode(' ',$_POST['name']);
78                         if(sizeof($name) == 1) {
79                                 $_POST['first_name'] = '';  $_POST['last_name'] = $name[0];
80                         }
81                         else {
82                                 $_POST['first_name'] = $name[0];  $_POST['last_name'] = $name[1];
83                         }
84                 }
85
86                 $return_val = $leadForm->handleSave($prefix, false, true);
87
88                 if(isset($_POST['redirect']) && !empty($_POST['redirect'])){
89
90                         //header("Location: ".$_POST['redirect']);
91                         echo '<html ' . get_language_header() .'><head><title>SugarCRM</title></head><body>';
92                         echo '<form name="redirect" action="' .$_POST['redirect']. '" method="POST">';
93
94                         foreach($_POST as $param => $value) {
95
96                                 if($param != 'redirect' && $param != 'submit') {
97                                         echo '<input type="hidden" name="'.$param.'" value="'.$value.'">';
98                                 }
99
100                         }
101
102                         if( ($return_val == '') || ($return_val  == 0) || ($return_val < 0) ) {
103                                 echo '<input type="hidden" name="error" value="1">';
104                         }
105                         echo '</form><script language="javascript" type="text/javascript">document.redirect.submit();</script>';
106                         echo '</body></html>';
107                 }
108                 else{
109                         echo "Thank You For Your Submission.";
110                 }
111                 sugar_cleanup();
112                 // die to keep code from running into redirect case below
113                 die();
114         }
115 }
116
117 echo "We're sorry, the server is currently unavailable, please try again later.";
118 if (!empty($_POST['redirect'])) {
119         echo '<html ' . get_language_header() . '><head><title>SugarCRM</title></head><body>';
120         echo '<form name="redirect" action="' .$_POST['redirect']. '" method="POST">';
121         echo '</form><script language="javascript" type="text/javascript">document.redirect.submit();</script>';
122         echo '</body></html>';
123 }
124 ?>