Condition
extends ClassDynamic
in package
Condition class
A condition object is a set of one or more comparisons. Don't use the Condition object as a standalone, rather use the element's method.
Example; Basic yes-no condition
$objCheck = $objForm->addField("yesno", "Yes or No", ValidForm::VFORM_RADIO_LIST);
$objYes = $objCheck->addField("Yes", "yes");
$objCheck->addField("No", "no");
$objText = $objForm->addField(
"textfield",
"Text here",
ValidForm::VFORM_TEXT,
array("required" => "true"),
array("required" => "This field is required"),
array("fielddisabled" => "disabled")
);
$objText->addCondition("enabled", true, array(
new Comparison($objYes, ValidForm::VFORM_COMPARISON_EQUAL, "yes")
));
Example 2; Hide field when other field has predefined value
$objFirstName = $objForm->addField('firstname', 'First name', ValidForm::VFORM_STRING);
$objLastName = $objForm->addField('lastname', 'Last name', ValidForm::VFORM_STRING);
$objLastName->addCondition(
'visible', // Last name will become
false, // 'not visible' (visible -> false)
array(
// When field $objFirstName 'is equal to' Robin
new \ValidFormBuilder\Comparison($objFirstName, ValidForm::VFORM_COMPARISON_EQUAL, 'Robin')
)
);
Example 3; Trigger condition with comparison that doesn't need a value
$objFirstName = $objForm->addField('firstname', 'First name', ValidForm::VFORM_STRING);
$objLastName = $objForm->addField('lastname', 'Last name', ValidForm::VFORM_STRING);
$objFirstName->addCondition(
'enabled', // First Name will be
false, // 'disabled' (enabled -> false)
array(
// When field $objLastName 'is not empty'
// (note that we cal leave out the third 'value' parameter in this case)
new \ValidFormBuilder\Comparison($objLastName, ValidForm::VFORM_COMPARISON_NOT_EMPTY)
)
);