JFormRuleEquals/test
From Joomla! Documentation
< API16:JFormRuleEquals
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Method to test if two values are equal. To use this rule, the form XML needs a validate attribute of equals and a field attribute that is equal to the field to test against.
<! removed transcluded page call, red link never existed >
Syntax[edit]
test(&$field, &$values)
Parameter Name | Default Value | Description |
---|---|---|
&$field | $field A reference to the form field. | |
&$values | $values The values to test for validiaty. |
Returns[edit]
mixed on invalid rule, true if the value is valid, false otherwise.
Defined in[edit]
libraries/joomla/form/rules/equals.php
Importing[edit]
jimport( 'joomla.form.rules.equals' );
Source Body[edit]
public function test(&$field, &$values)
{
$return = false;
$field1 = (string)$field->attributes()->name;
$field2 = (string)$field->attributes()->field;
// Check the rule.
if (!$field2) {
return new JException('Invalid Form Rule :: '.get_class($this));
}
// Test the two values against each other.
if ($values[$field1] == $values[$field2]) {
$return = true;
}
return $return;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]