function is_valid_save()
 {
     if (!isset($_SERVER['REQUEST_METHOD']) || $_SERVER['REQUEST_METHOD'] != 'POST') {
         return false;
     } else {
         if (!wp_verify_nonce(rbf_request_param($this->get_nonce_name()), $this->get_nonce_name())) {
             return false;
         }
     }
     return true;
 }
 function is_valid_save($term_id = null)
 {
     if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
         return false;
     } else {
         if (!wp_verify_nonce(rbf_request_param($this->get_nonce_name()), $this->get_nonce_name())) {
             return false;
         } else {
             if ($term_id < 1) {
                 return false;
             }
         }
     }
     return true;
 }
 function is_valid_save($user_id = 0)
 {
     if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
         return false;
     } else {
         if (!wp_verify_nonce(rbf_request_param($this->get_nonce_name()), $this->get_nonce_name())) {
             return false;
         } else {
             if (!$this->is_valid_attach()) {
                 return false;
             }
         }
     }
     return $this->is_valid_save_conditions($user_id);
 }