public function search() { $tmpFechaNac=$this->xfechaNac; $this->fechaNac=''; $provider=parent::search(); $this->fechaNac=$tmpFechaNac; $criteria=new CDbCriteria; if (!empty($this->fechaNac)) { $criteria->compare('fechaNac', date('Y-m-d', CDateTimeParser::parse($this->fechaNac, yii::app()->locale->dateFormat))); } $provider->getCriteria()->mergeWith($criteria); return $provider; }
public function attributeLabels() { return array_merge(parent::attributeLabels(), array('CEDULA' => Yii::t('app', 'Cédula'), 'TELEFONO' => Yii::t('app', 'Teléfono'), 'DIRECCION' => Yii::t('app', 'Dirección'), 'LUGAR_TRABAJO' => Yii::t('app', 'Lugar de trabajo o Carrera'))); }