You are here

public function PartyDefaultDataSet::getEntities in Party 8.2

Same name and namespace in other branches
  1. 7 includes/party.data.inc \PartyDefaultDataSet::getEntities()

Get all attached entities

Return value

array An array of all this data set's entities keyed by their delta.

2 calls to PartyDefaultDataSet::getEntities()
PartyDefaultDataSet::hook_party_delete in includes/party.data.inc
Acts when a party is deleted.
PartyUserDataSet::hook_party_delete in modules/party_user/includes/party_user.data.inc
Act on party delete.

File

includes/party.data.inc, line 271
Provides the default class for managing party - Attached entity relationships.

Class

PartyDefaultDataSet
Class PartyDefaultDataSet

Code

public function getEntities() {
  $this
    ->loadEntities();
  return $this->entities;
}