From 3ff03dc4f0a72432b34c00da620272cf011e4ddd Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Thu, 29 Jul 2021 14:17:20 +1000 Subject: Publishing h-node.org code. - this is the h-node.org code, except - removed a js file (3x copies at three different locations) without license / copyright headers - /Js/linkToForm.js - /Public/Js/linkToForm.js - /admin/Public/Js/linkToForm.js - removed config files containing credentials - /Application/Include/params.php - /Config/Config.php - /admin/Application/Include/params.php - /admin/Config/Config.php - added license and copyright header to one php file - /admin/Library/ErrorReporting.php (almost identical to /Library/ErrorReporting.php which has the headers) --- h-source/Library/Lang/En/ValCondStrings.php | 68 +++++++---------------------- 1 file changed, 16 insertions(+), 52 deletions(-) (limited to 'h-source/Library/Lang/En/ValCondStrings.php') diff --git a/h-source/Library/Lang/En/ValCondStrings.php b/h-source/Library/Lang/En/ValCondStrings.php index 8742c23..7f4e7ea 100644 --- a/h-source/Library/Lang/En/ValCondStrings.php +++ b/h-source/Library/Lang/En/ValCondStrings.php @@ -2,7 +2,7 @@ // EasyGiant is a PHP framework for creating and managing dynamic content // -// Copyright (C) 2009 - 2014 Antonio Gallo (info@laboratoriolibero.com) +// Copyright (C) 2009 - 2011 Antonio Gallo // See COPYRIGHT.txt and LICENSE.txt. // // This file is part of EasyGiant @@ -24,106 +24,70 @@ if (!defined('EG')) die('Direct access not allowed!'); class Lang_En_ValCondStrings { - //get the HTMl of the hidden alert notices - public function getHiddenAlertElement($element) - { - $html = ""; - $t = explode(",",$element); - - foreach ($t as $el) - { - $html .= "
$el
"; - } - - return $html; - } - //if the element is not defined public function getNotDefinedResultString($element) { - return "
Please fill the field ". getFieldLabel($element) .".
\n".$this->getHiddenAlertElement($element); + return "
". $element ." not defined!
\n"; } //if the elements are not equal public function getNotEqualResultString($element) { - return "
Please check that the fields ".getFieldLabel($element)." are equal
\n".$this->getHiddenAlertElement($element); + return "
Different values: $element
\n"; } //if the element is not alphabetic public function getNotAlphabeticResultString($element) { - return "
Please check that the field ".getFieldLabel($element)." is alphabetic
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to be alphabetic
\n"; } //if the element is not alphanumeric public function getNotAlphanumericResultString($element) { - return "
Please check that the field ".getFieldLabel($element)." has to be alphanumeric
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to be alphanumeric
\n"; } //if the element is not a decimal digit public function getNotDecimalDigitResultString($element) { - return "
Please check that the field ".getFieldLabel($element)." is a decimal digit
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to be a decimal digit
\n"; } - - //if the element hasn't the mail format + + //if the element has the mail format public function getNotMailFormatResultString($element) { - return "
Please check that the field ".getFieldLabel($element)." is an e-mail address
\n".$this->getHiddenAlertElement($element); + return "
".$element." doesn't seem an e-mail address
\n"; } - //if the element is not numeric + //if the element is numeric public function getNotNumericResultString($element) { - return "
Please check that the field ".getFieldLabel($element)." is numeric
\n".$this->getHiddenAlertElement($element); - } - - //if the element is not an integer - public function getNotIntegerFormatResultString($element) - { - return "
Please check that the field ".getFieldLabel($element)." is an integer number
\n".$this->getHiddenAlertElement($element); - } - - //if the element is not a real date - public function getNotDateResultString($element) - { - return "
Please check that the field ".getFieldLabel($element)." is a real date
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to be a numeric
\n"; } //if the element (string) length exceeds the value of characters (defined by $maxLength) public function getLengthExceedsResultString($element,$maxLength) { - return "
Please check that the field ".getFieldLabel($element)." does not exceed the value of $maxLength characters
\n".$this->getHiddenAlertElement($element); + return "
".$element." exceeds the value of $maxLength characters
\n"; } //if the element is one of the strings indicated by $stringList (a comma-separated list of strings) public function getIsForbiddenStringResultString($element,$stringList) { - return "
Please check that the field ".getFieldLabel($element)." is not one of the following strings: $stringList
\n".$this->getHiddenAlertElement($element); + return "
".$element." can't be one of the following strings: $stringList
\n"; } //if the element is not one of the strings indicated by $stringList (a comma-separated list of strings) public function getIsNotStringResultString($element,$stringList) { - return "
Please check that the field ".getFieldLabel($element)." is one of the following strings: $stringList
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to be one of the following strings: $stringList
\n"; } - //if the element does not match the reg expr indicated by $regExp + //if the element is not one of the strings indicated by $stringList (a comma-separated list of strings) public function getDoesntMatchResultString($element,$regExp) { - return "
Please check that the field ".getFieldLabel($element)." matchs the following regular expression: $regExp
\n".$this->getHiddenAlertElement($element); - } - - //if the element is not decimal - public function getNotDecimalResultString($element, $format) - { - $t = explode(",",$format); - $M = (int)$t[0]; - $D = (int)$t[1]; - $I = $M - $D; - return "
Please check that the field ".getFieldLabel($element)." is a decimal number (maximum number of integer digits:$I, maximum number of decimal digits: $D)
\n".$this->getHiddenAlertElement($element); + return "
".$element." has to match the following regular expression: $regExp
\n"; } } -- cgit v1.2.3