]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/Diagnostic.tpl
Release 6.4.0
[Github/sugarcrm.git] / modules / Administration / Diagnostic.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 /*********************************************************************************
38
39  ********************************************************************************/
40 *}
41
42 <form name="Diagnostic" method="POST" action="index.php">
43 <input type="hidden" name="module" value="Administration">
44 <input type="hidden" name="action" value="DiagnosticRun">
45  
46 <table cellpadding="0" cellspacing="0" border="0" width="100%" class="actionsContainer">
47         <tr>
48         <td>
49         <input title="{$MOD.LBL_DIAG_EXECUTE_BUTTON}" class="button" onclick="this.form.action.value='DiagnosticRun';" type="submit" name="button" value="  {$MOD.LBL_DIAG_EXECUTE_BUTTON}  " >
50         <input title="{$MOD.LBL_DIAG_CANCEL_BUTTON}" class="button" onclick="this.form.action.value='index'; this.form.module.value='Administration'; " type="submit" name="button" value="  {$MOD.LBL_DIAG_CANCEL_BUTTON}  "></td>
51
52         </tr>
53 </table>
54 <div id="table" style="visibility:visible">
55 <table id="maintable" width="430" border="0" cellspacing="0" cellpadding="0" class="edit view">
56 <tr>
57         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_CONFIGPHP}</slot></td>
58         <td ><slot><input name='configphp' class="checkbox" type="checkbox" tabindex='1' checked></slot></td>
59         </tr><tr>
60         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_CUSTOMDIR}</slot></td>
61         <td ><slot><input name='custom_dir' class="checkbox" type="checkbox" tabindex='2' checked></slot></td>
62         </tr><tr>
63
64         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_PHPINFO}</slot></td>
65         <td ><slot><input name='phpinfo' class="checkbox" type="checkbox" tabindex='3' checked></slot></td>
66         </tr><tr>
67         <td scope="row"><slot>{$DB_NAME} - {$MOD.LBL_DIAGNOSTIC_MYSQLDUMPS}</slot></td>
68         <td ><slot><input name='mysql_dumps' class="checkbox" type="checkbox" tabindex='4' checked></slot></td>
69         </tr><tr>
70         <td scope="row"><slot>{$DB_NAME} - {$MOD.LBL_DIAGNOSTIC_MYSQLSCHEMA}</slot></td>
71
72         <td ><slot><input name='mysql_schema' class="checkbox" type="checkbox" tabindex='5' checked></slot></td>
73         </tr><tr>
74         <td scope="row"><slot>{$DB_NAME} - {$MOD.LBL_DIAGNOSTIC_MYSQLINFO}</slot></td>
75         <td ><slot><input name='mysql_info' class="checkbox" type="checkbox" tabindex='6' checked></slot></td>
76         </tr><tr>
77         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_MD5}</slot></td>
78         <td ><slot><input name='md5' class="checkbox" type="checkbox" tabindex='7' onclick="md5checkboxes()" checked></slot></td>
79         </tr><tr>
80
81         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_FILESMD5}</slot></td>
82         <td ><slot><input name='md5filesmd5' class="checkbox" type="checkbox" tabindex='8' ></slot></td>
83         </tr><tr>
84         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_CALCMD5}</slot></td>
85         <td ><slot><input name='md5calculated' class="checkbox" type="checkbox" tabindex='9' ></slot></td>
86         </tr><tr>
87         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_BLBF}</slot></td>
88
89         <td ><slot><input name='beanlistbeanfiles' class="checkbox" type="checkbox" tabindex='10' checked></slot></td>
90         </tr><tr>
91         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_SUGARLOG}</slot></td>
92         <td ><slot><input name='sugarlog' class="checkbox" type="checkbox" tabindex='11' checked></slot></td>
93         </tr><tr>
94         <td scope="row"><slot>{$MOD.LBL_DIAGNOSTIC_VARDEFS}</slot></td>
95         <td ><slot><input name='vardefs' class="checkbox" type="checkbox" tabindex='11' checked></slot></td>
96         </tr>
97 </table>
98 </div>
99 </form>
100
101 {literal}
102 <script type="text/javascript" language="Javascript">
103   var md5filesmd5_checked;
104   var md5calculated_checked;
105   function show(id) {
106       document.getElementById(id).style.display="block";
107   }
108   function md5checkboxes(){
109     if (document.Diagnostic.md5.checked == false){
110       md5filesmd5_checked = document.Diagnostic.md5filesmd5.checked;
111       md5calculated_checked = document.Diagnostic.md5calculated.checked;
112       document.Diagnostic.md5filesmd5.checked=false;
113       document.Diagnostic.md5calculated.checked=false;
114       document.Diagnostic.md5filesmd5.disabled=true;
115       document.Diagnostic.md5calculated.disabled=true;
116     }
117     else{
118       document.Diagnostic.md5filesmd5.disabled=false;
119       document.Diagnostic.md5calculated.disabled=false;
120       document.Diagnostic.md5filesmd5.checked=md5filesmd5_checked;
121       document.Diagnostic.md5calculated.checked=md5calculated_checked;
122     }
123   }
124 </script>
125 {/literal}