]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DocumentRevisions/Forms.php
Release 6.5.0
[Github/sugarcrm.git] / modules / DocumentRevisions / Forms.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
40  * Description:  Contains a variety of utility functions used to display UI
41  * components such as form headers and footers.  Intended to be modified on a per
42  * theme basis.
43  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
44  * All Rights Reserved.
45  * Contributor(s): ______________________________________..
46  ********************************************************************************/
47
48 /**
49  * Create javascript to validate the data entered into a record.
50  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
51  * All Rights Reserved.
52  * Contributor(s): ______________________________________..
53  */
54 function get_validate_record_document_revision_js () {
55 global $mod_strings;
56 global $app_strings;
57
58 $lbl_version = $mod_strings['LBL_DOC_VERSION'];
59 $lbl_filename = $mod_strings['LBL_FILENAME'];
60
61
62 $err_missing_required_fields = $app_strings['ERR_MISSING_REQUIRED_FIELDS'];
63
64
65 $the_script  = <<<EOQ
66
67 <script type="text/javascript" language="Javascript">
68
69 function verify_data(form) {
70         var isError = false;
71         var errorMessage = "";
72         if (trim(form.revision.value) == "") {
73                 isError = true;
74                 errorMessage += "\\n$lbl_version";
75         }       
76         if (trim(form.uploadfile.value) == "") {
77                 isError = true;
78                 errorMessage += "\\n$lbl_filename";
79         }
80
81         if (isError == true) {
82                 alert("$err_missing_required_fields" + errorMessage);
83                 return false;
84         }
85
86         return true;
87 }
88 </script>
89
90 EOQ;
91
92 return $the_script;
93 }
94
95 function get_chooser_js()
96 {
97 $the_script  = <<<EOQ
98
99 <script type="text/javascript" language="Javascript">
100 <!--  to hide script contents from old browsers
101
102 function set_chooser()
103 {
104
105
106
107 var display_tabs_def = '';
108
109 for(i=0; i < object_refs['display_tabs'].options.length ;i++)
110 {
111          display_tabs_def += "display_tabs[]="+object_refs['display_tabs'].options[i].value+"&";
112 }
113
114 document.EditView.display_tabs_def.value = display_tabs_def;
115
116
117
118 }
119 // end hiding contents from old browsers  -->
120 </script>
121 EOQ;
122
123 return $the_script;
124 }
125 function get_validate_record_js(){
126         
127 global $mod_strings;
128 global $app_strings;
129
130 $lbl_name = $mod_strings['ERR_DOC_NAME'];
131 $lbl_start_date = $mod_strings['ERR_DOC_ACTIVE_DATE'];
132 $lbl_file_name = $mod_strings['ERR_FILENAME'];
133 $lbl_file_version=$mod_strings['ERR_DOC_VERSION'];
134 $sqs_no_match = $app_strings['ERR_SQS_NO_MATCH'];
135 $err_missing_required_fields = $app_strings['ERR_MISSING_REQUIRED_FIELDS'];
136
137 if(isset($_REQUEST['record'])) {
138 //do not validate upload file
139         $the_upload_script="";
140
141
142 } else 
143 {
144
145 $the_upload_script  = <<<EOQ
146
147         if (trim(form.uploadfile.value) == "") {
148                 isError = true;
149                 errorMessage += "\\n$lbl_file_name";
150         }
151 EOQ;
152
153 }
154
155 $the_script  = <<<EOQ
156
157 <script type="text/javascript" language="Javascript">
158
159 function verify_data(form) {
160         var isError = false;
161         var errorMessage = "";
162         if (trim(form.document_name.value) == "") {
163                 isError = true;
164                 errorMessage += "\\n$lbl_name";
165         }
166         
167         $the_upload_script
168         
169         if (trim(form.active_date.value) == "") {
170                 isError = true;
171                 errorMessage += "\\n$lbl_start_date";
172         }
173         if (trim(form.revision.value) == "") {
174                 isError = true;
175                 errorMessage += "\\n$lbl_file_version";
176         }
177
178         
179         if (isError == true) {
180                 alert("$err_missing_required_fields" + errorMessage);
181                 return false;
182         }
183         
184         //make sure start date is <= end_date
185
186         return true;
187 }
188 </script>
189
190 EOQ;
191
192 return $the_script;
193 }
194
195 ?>