public function save()
 {
     if (!$this->validate()) {
         return FALSE;
     }
     if (is_null($this->id)) {
         return cgfb_comment_ops::insert($this);
     } else {
         return cgfb_comment_ops::update($this);
     }
 }