_rsvp_get_invite

Definition

_rsvp_get_invite($hash)
rsvp/rsvp.module, line 1470

Description

  • Returns an invite by hash value.
*
  • *

Parameters

$hash The hash value of the invite.

  • @return dbresultset of the requested invite.

Code

<?php
function _rsvp_get_invite($hash) {
  return db_fetch_object(db_query('SELECT * FROM {rsvp} r LEFT JOIN {rsvp_invite} u ON r.rid = u.rid WHERE u.hash = \'%s\'', $hash));
}
?>