You are here

public function IndividualListBuilder::buildRow in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_contact/src/IndividualListBuilder.php \Drupal\crm_core_contact\IndividualListBuilder::buildRow()
  2. 8 modules/crm_core_contact/src/IndividualListBuilder.php \Drupal\crm_core_contact\IndividualListBuilder::buildRow()

Builds a row for an entity in the entity listing.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.

Return value

array A render array structure of fields for this entity.

Overrides EntityListBuilder::buildRow

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

modules/crm_core_contact/src/IndividualListBuilder.php, line 76

Class

IndividualListBuilder
List builder for the individual entity.

Namespace

Drupal\crm_core_contact

Code

public function buildRow(EntityInterface $entity) {
  $row = array();
  $row['label']['data'] = array(
    '#type' => 'link',
    '#title' => $entity
      ->label(),
    '#url' => $entity
      ->urlInfo(),
  );
  $row['type'] = $entity
    ->get('type')->entity
    ->label();
  $row['changed'] = $this->dateFormatter
    ->format($entity
    ->get('changed')->value, 'short');
  return $row + parent::buildRow($entity);
}