/**
  * undocumented function
  *
  * @return void
  * @author 
  **/
 protected function deleteValid($id)
 {
     $exist = SocialTargetCategory::isExist($id);
     if ($exist) {
         return false;
     }
     return true;
 }