[Vtigercrm-commits] [vtiger-commits] r4570 - /vtigercrm/trunk/modules/Calendar/Forms.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Mar 28 02:39:00 EST 2006
Author: saraj
Date: Tue Mar 28 00:38:56 2006
New Revision: 4570
Log:
junk code has been removed
Modified:
vtigercrm/trunk/modules/Calendar/Forms.php
Modified: vtigercrm/trunk/modules/Calendar/Forms.php
==============================================================================
--- vtigercrm/trunk/modules/Calendar/Forms.php (original)
+++ vtigercrm/trunk/modules/Calendar/Forms.php Tue Mar 28 00:38:56 2006
@@ -1,138 +1,2 @@
<?php
-/*********************************************************************************
- * The contents of this file are subject to the SugarCRM Public License Version 1.1.2
- * ("License"); You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
- * the specific language governing rights and limitations under the License.
- * The Original Code is: SugarCRM Open Source
- * The Initial Developer of the Original Code is SugarCRM, Inc.
- * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
- * All Rights Reserved.
- * Contributor(s): ______________________________________.
- ********************************************************************************/
-/*********************************************************************************
- * $Header$
- * Description: Contains a variety of utility functions used to display UI
- * components such as form headers and footers. Intended to be modified on a per
- * theme basis.
- * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
- * All Rights Reserved.
- * Contributor(s): ______________________________________..
- ********************************************************************************/
-
-/**
- * Create javascript to validate the data entered into a record.
- * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
- * All Rights Reserved.
- * Contributor(s): ______________________________________..
-
-// To be fixed latter
-
-function get_validate_record_js () {
-global $mod_strings;
-global $app_strings;
-
-$lbl_last_name = $mod_strings['LBL_LIST_LAST_NAME'];
-$err_missing_required_fields = $app_strings['ERR_MISSING_REQUIRED_FIELDS'];
-$err_invalid_email_address = $app_strings['ERR_INVALID_EMAIL_ADDRESS'];
-
-$the_script = <<<EOQ
-
-<script type="text/javascript" language="Javascript">
-<!-- to hide script contents from old browsers
-
-function trim(s) {
- while (s.substring(0,1) == " ") {
- s = s.substring(1, s.length);
- }
- while (s.substring(s.length-1, s.length) == ' ') {
- s = s.substring(0,s.length-1);
- }
-
- return s;
-}
-
-function verify_data(form) {
- var isError = false;
- var errorMessage = "";
- if (trim(form.last_name.value) == "") {
- isError = true;
- errorMessage += "\\n$lbl_last_name";
- }
-
- if (isError == true) {
- alert("$err_missing_required_fields" + errorMessage);
- return false;
- }
- if (trim(form.email1.value) != "" && !/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(form.email1.value)) {
- alert('"' + form.email1.value + '" $err_invalid_email_address');
- return false;
- }
- if (trim(form.email2.value) != "" && !/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(form.email2.value)) {
- alert('"' + form.email2.value + '" $err_invalid_email_address');
- return false;
- }
-
- return true;
-}
-
-// end hiding contents from old browsers -->
-</script>
-
-EOQ;
-
-return $the_script;
-}
-
- */
-/**
- * Create HTML form to enter a new record with the minimum necessary fields.
- * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
- * All Rights Reserved.
- * Contributor(s): ______________________________________..
-function get_new_record_form () {
-global $mod_strings;
-global $app_strings;
-global $current_user;
-
-$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
-$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
-$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
-$lbl_phone = $mod_strings['LBL_PHONE'];
-$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
-$lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
-$lbl_save_button_key = $app_strings['LBL_SAVE_BUTTON_KEY'];
-$lbl_save_button_label = $app_strings['LBL_SAVE_BUTTON_LABEL'];
-$user_id = $current_user->id;
-
-$the_form = get_left_form_header($mod_strings['LBL_NEW_FORM_TITLE']);
-$the_form .= <<<EOQ
-
- <form name="ContactSave" onSubmit="return verify_data(ContactSave)" method="POST" action="index.php">
- <input type="hidden" name="module" value="Contacts">
- <input type="hidden" name="record" value="">
- <input type="hidden" name="assigned_user_id" value='${user_id}'>
- <input type="hidden" name="email2" value="">
- <input type="hidden" name="action" value="Save">
- $lbl_first_name<br>
- <input name='first_name' type="text" value=""><br>
- <FONT class="required">$lbl_required_symbol</FONT>$lbl_last_name<br>
- <input name='last_name' type="text" value=""><br>
- $lbl_phone<br>
- <input name='phone_work' type="text" value=""><br>
- $lbl_email_address<br>
- <input name='email1' type="text" value=""><br><br>
- <input title="$lbl_save_button_title" accessKey="$lbl_save_button_key" class="button" type="submit" name="button" value=" $lbl_save_button_label " >
- </form>
-
-EOQ;
-$the_form .= get_left_form_footer();
-$the_form .= get_validate_record_js();
-
-return $the_form;
-}
-
- */
?>
More information about the vtigercrm-commits
mailing list