2012-06-18 17 views

Respuesta

7

Puede utilizar la propiedad className especificar para otras clases ..

Documentación: the ActiveRecord class name that should be used to look for the attribute value being validated. Defaults to null, meaning using the class of the object currently being validated. You may use path alias to reference a class name here.

Deja para tener un atributo llamado common_attr en dos modelos:

class Model1 extends CActiveRecord{ 
    public function rules(){ 
     array('common_attr', 'unique', 'className'=> 'Model1'), 
     array('common_attr', 'unique', 'className'=> 'Model2'), 
    } 
} 

class Model2 extends CActiveRecord{ 
    public function rules(){ 
     array('common_attr', 'unique', 'className'=> 'Model1'), 
     array('common_attr', 'unique', 'className'=> 'Model2'), 
    } 
} 

y para comprobar combined key validación desde múltiples tablas puede usar criterios propiedad de CUniqueValidator ..No hay necesidad de cualquier extensión

Documentación: criteria property public array $criteria; additional query criteria. This will be combined with the condition that checks if the attribute value exists in the corresponding table column. This array will be used to instantiate a CDbCriteria object.

class Model1 extends CActiveRecord{ 

    public function rules(){ 
     array('common_attr', 'unique', 'caseSensitive'=>false, 
        'criteria'=>array(
      'join'=>'LEFT JOIN model2 ON model2.common_attr=model1.common_attr', 
          'condition'=>'model2.common_attr=model1.common_attr', 
     )), 
    } 
} 
+0

El primer método funciona como un encanto. Gracias :) – dInGd0nG

Cuestiones relacionadas