public function PartyController::buildContent in Party 8.2
Same name and namespace in other branches
- 7 includes/party.entity.inc \PartyController::buildContent()
Overriding the buildContent function to add entity specific fields.
File
- includes/
party.entity.inc, line 165 - Contains the controller classes for Party entities.
Class
- PartyController
- The API controller class for the Party entity.
Code
public function buildContent($entity, $view_mode = 'full', $langcode = NULL, $content = array()) {
$content = parent::buildContent($entity, $view_mode, $langcode, $content);
return $content;
}