* class QuestionForm extends CFormModel * { * public function rules() * { * return array( * array('text, tag', 'required'), * array('text, 'type', 'type' => 'string'), * array('tag', 'in', 'range' => array('php', 'mysql', 'jquery')), * ); * } * } *