You are here

function feedback_load_multiple in Feedback 7.2

Loads feedback entries from the database.

Parameters

$fids: An array of feedback entry IDs.

$conditions: An associative array of conditions on the {feedback} table, where the keys are the database fields and the values are the values those fields must have.

Return value

An array of feedback entry objects indexed by fid.

See also

hook_feedback_load()

feedback_load()

entity_load()

EntityFieldQuery

5 calls to feedback_load_multiple()
feedback_admin_view_form in ./feedback.admin.inc
Build a (sortable) form containing a checkbox for each feedback entry.
feedback_admin_view_form_submit in ./feedback.admin.inc
Form submit callback for admin view form.
feedback_delete_multiple in ./feedback.module
Deletes multiple feedback entries.
feedback_form in ./feedback.module
Form constructor for the feedback form.
feedback_load in ./feedback.module
Loads a feedback entry from the database.

File

./feedback.module, line 514
Allows site visitors and users to report issues about this site.

Code

function feedback_load_multiple($fids = array(), $conditions = array()) {
  return entity_load('feedback', $fids, $conditions);
}