public function PostListBuilder::buildRow in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.2 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.3 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.4 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.5 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.6 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.7 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 8.8 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 10.3.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 10.0.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 10.1.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildRow()
- 10.2.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::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/
social_features/ social_post/ src/ PostListBuilder.php, line 31
Class
- PostListBuilder
- Defines a class to build a listing of Post entities.
Namespace
Drupal\social_postCode
public function buildRow(EntityInterface $entity) {
/* @var $entity \Drupal\social_post\Entity\Post */
$row['id'] = $entity
->id();
$post_value = $entity
->get('field_post')->value;
$row['post'] = text_summary($post_value, NULL, 120);
$row['author'] = $entity
->getOwner()
->toLink();
$row['created'] = \Drupal::service('date.formatter')
->format($entity
->getCreatedTime(), 'small');
return $row + parent::buildRow($entity);
}