You are here

public function ContactTypeListBuilder::buildRow in CRM Core 8

Same name and namespace in other branches
  1. 8.3 modules/crm_core_contact/src/ContactTypeListBuilder.php \Drupal\crm_core_contact\ContactTypeListBuilder::buildRow()
  2. 8.2 modules/crm_core_contact/src/ContactTypeListBuilder.php \Drupal\crm_core_contact\ContactTypeListBuilder::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/ContactTypeListBuilder.php, line 38

Class

ContactTypeListBuilder
Class ContactTypeListBuilder.

Namespace

Drupal\crm_core_contact

Code

public function buildRow(EntityInterface $entity) {
  $row = [];
  $row['title'] = [
    'data' => $entity
      ->label(),
    'class' => [
      'menu-label',
    ],
  ];
  $row['description'] = Xss::filterAdmin($entity->description);
  return $row + parent::buildRow($entity);
}