_rsvp_is_blind

Definition

_rsvp_is_blind($rid)
rsvp/rsvp.module, line 1581

Description

  • Checks to see if an rsvp is blind has been invited to an event.
*
  • *

Parameters

$rid The rid of the rsvp.

  • @return boolean. False if the rsvp is blind.

Code

<?php
function _rsvp_is_blind($rid) {
  $status = db_fetch_object(db_query('SELECT blind FROM {rsvp} WHERE rid = %d', $rid));

  return $status->blind;
}
?>