*/ class Horde_Constraint_And extends Horde_Constraint_Coupler { public function evaluate($value) { foreach ($this->_constraints as $c) { if (!$c->evaluate($value)) { return false; } } return true; } }