/** * Condicion de menor o igual que sobre un atributo. */ public static function LTEQA($alias, $attr, $refAlias, $refAttr) { $c = new Condition(); $c->setType(self::TYPE_LTEQ); $c->setAttribute($alias, $attr); $c->setReferenceAttribute($refAlias, $refAttr); return $c; }