You are here

function party_query in Party 8.2

Same name and namespace in other branches
  1. 7 party.module \party_query()

Returns a new SelectQuery extended by PartyQuery for the active database.

Parameters

$options: An array of options to control how the query operates.

Return value

SelectQuery A new SelectQuery object for this connection.

See also

db_select()

File

./party.module, line 1615
Provides a generic CRM party entity.

Code

function party_query($options = array()) {
  return db_select('party', 'party', $options)
    ->extend('PartyQuery');
}