]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/register.php
Release 6.4.0
[Github/sugarcrm.git] / install / register.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
40 $suicide = true;
41 if(isset($install_script)) {
42         if($install_script) {
43                 $suicide = false;
44         }
45 }
46
47 if($suicide) {
48    // mysterious suicide note
49    die($mod_strings['ERR_NO_DIRECT_SCRIPT']);
50 }
51
52
53 if (!isset($_POST['confirm']) || !$_POST['confirm']) {
54         include("sugar_version.php"); // provide $sugar_flavor
55        global $sugar_config;
56         $ik = '';
57        if(isset($sugar_config['unique_key']) && !empty($sugar_config['unique_key']) ){
58         $ik = $sugar_config['unique_key'];
59        }
60
61         //$regPhp = file_get_contents("http://www.sugarcrm.com/product-registration/registration_php.php?edition={$sugar_flavor}&instance_key=".$ik);
62         //changing the reg form. placing in an iframe
63         /*
64         $regPhp="<iframe src='https://www.sugarcrm.com/product-registration/
65         registration_php_080428.php?edition={$sugar_flavor}&instance_key=
66         {$ik}' height='400px' width='700px' frameborder='0' scrolling='no'
67         allowtransparency='true'</iframe>";
68         */
69     $regPhp="<iframe src='https://www.sugarcrm.com/product-registration/registration_php_080428.php?edition={$sugar_flavor}&instance_key=
70     {$ik}' height='515px' width='700px' frameborder='0' scrolling='no'
71     allowtransparency='true'></iframe>";
72
73
74         $notConfirmed =<<<CONF
75                 <!-- <p>{$mod_strings['LBL_REG_CONF_1']}</p> -->
76                 <!-- begin registration -->
77                 {$regPhp}
78                 <!-- end registration -->
79 CONF;
80
81 } else {
82         $notConfirmed = $mod_strings['LBL_REG_CONF_3'];
83 }
84
85
86 ///////////////////////////////////////////////////////////////////////////////
87 ////    START OUTPUT
88 $langHeader = get_language_header();
89 $out =<<<EOQ
90 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
91 <html {$langHeader}>
92 <head>
93    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
94    <meta http-equiv="Content-Script-Type" content="text/javascript">
95    <meta http-equiv="Content-Style-Type" content="text/css">
96    <title>{$mod_strings['LBL_WIZARD_TITLE']} {$mod_strings['LBL_REG_TITLE']}</title>
97    <link REL="SHORTCUT ICON" HREF="$icon">
98    <link rel="stylesheet" href="$css" type="text/css" />
99    <script type="text/javascript" src="$common"></script>
100 </head>
101 <body onload="javascript:document.getElementById('button_next2').focus();">
102 <table cellspacing="0" cellpadding="0" border="0" align="center" class="shell">
103       <tr><td colspan="2" id="help">&nbsp;</td></tr>
104     <tr>
105       <th width="500">
106                 <p>
107                 <img src="{$sugar_md}" alt="SugarCRM" border="0">
108                 </p>
109                 {$mod_strings['LBL_REG_TITLE']} <span style="font-size: 9px;"> (Optional)</span></th>
110         <th width="200" style="text-align: right;"><a href="http://www.sugarcrm.com" target="_blank"><IMG src="$loginImage" width="145" height="30" alt="SugarCRM" border="0"></a></th>
111 </tr>
112 <tr>
113     <td colspan="2">{$notConfirmed}</td>
114 </tr>
115 <tr>
116         <td align="right" colspan="2">
117         <hr>
118         <table cellspacing="0" cellpadding="0" border="0" class="stdTable">
119                 <tr>
120                 <td>&nbsp;</td>
121                     <td>
122                 <form action="index.php" method="post" name="appform" id="appform">
123                     <input type="hidden" name="default_user_name" value="admin">
124                     <input class="button" type="submit" name="next" value="{$mod_strings['LBL_NEXT']}" id="button_next2"/>
125                         </form>
126                         </td>
127                 </tr>
128         </table>
129         </td>
130 </tr>
131 </table>
132 <br>
133 </body>
134 </html>
135 EOQ;
136
137 echo $out;
138
139 ?>