PostViewBuilder.php in Open Social 8
Same filename and directory in other branches
- 8.9 modules/social_features/social_post/src/PostViewBuilder.php
- 8.2 modules/social_features/social_post/src/PostViewBuilder.php
- 8.3 modules/social_features/social_post/src/PostViewBuilder.php
- 8.4 modules/social_features/social_post/src/PostViewBuilder.php
- 8.5 modules/social_features/social_post/src/PostViewBuilder.php
- 8.6 modules/social_features/social_post/src/PostViewBuilder.php
- 8.7 modules/social_features/social_post/src/PostViewBuilder.php
- 8.8 modules/social_features/social_post/src/PostViewBuilder.php
- 10.3.x modules/social_features/social_post/src/PostViewBuilder.php
- 10.0.x modules/social_features/social_post/src/PostViewBuilder.php
- 10.1.x modules/social_features/social_post/src/PostViewBuilder.php
- 10.2.x modules/social_features/social_post/src/PostViewBuilder.php
Namespace
Drupal\social_postFile
modules/social_features/social_post/src/PostViewBuilder.phpView source
<?php
namespace Drupal\social_post;
use Drupal\Core\Entity\EntityViewBuilder;
use Drupal\social_post\Entity\Post;
/**
* Render controller for posts.
*/
class PostViewBuilder extends EntityViewBuilder {
/**
* {@inheritdoc}
*/
public function buildComponents(array &$build, array $entities, array $displays, $view_mode) {
if (empty($entities)) {
return;
}
parent::buildComponents($build, $entities, $displays, $view_mode);
foreach ($entities as $id => $entity) {
$build[$id]['links'] = [
'#lazy_builder' => [
get_called_class() . '::renderLinks',
[
$entity
->id(),
$view_mode,
$entity
->language()
->getId(),
!empty($entity->in_preview),
],
],
];
}
}
/**
* Lazy_builder callback; builds a post's links.
*
* @param string $post_entity_id
* The post entity ID.
* @param string $view_mode
* The view mode in which the post entity is being viewed.
* @param string $langcode
* The language in which the post entity is being viewed.
* @param bool $is_in_preview
* Whether the post is currently being previewed.
*
* @return array
* A renderable array representing the post links.
*/
public static function renderLinks($post_entity_id, $view_mode, $langcode, $is_in_preview) {
$links = [
'#theme' => 'links',
'#pre_render' => [
'drupal_pre_render_links',
],
'#attributes' => [
'class' => [
'links',
'inline',
],
],
];
if (!$is_in_preview) {
$entity = Post::load($post_entity_id)
->getTranslation($langcode);
$links['post'] = static::buildLinks($entity, $view_mode);
// Allow other modules to alter the post links.
$hook_context = [
'view_mode' => $view_mode,
'langcode' => $langcode,
];
\Drupal::moduleHandler()
->alter('post_links', $links, $entity, $hook_context);
}
return $links;
}
/**
* Build the default links (Read more) for a post.
*
* @param \Drupal\social_post\Entity\Post $entity
* The post object.
* @param string $view_mode
* A view mode identifier.
*
* @return array
* An array that can be processed by drupal_pre_render_links().
*/
protected static function buildLinks(Post $entity, $view_mode) {
$links = [];
if ($entity
->access('update') && $entity
->hasLinkTemplate('edit-form')) {
$links['edit'] = [
'title' => t('Edit'),
'weight' => 10,
'url' => $entity
->urlInfo('edit-form'),
'query' => [
'destination' => \Drupal::destination()
->get(),
],
];
}
if ($entity
->access('delete') && $entity
->hasLinkTemplate('delete-form')) {
$links['delete'] = [
'title' => t('Delete'),
'weight' => 100,
'url' => $entity
->urlInfo('delete-form'),
'query' => [
'destination' => \Drupal::destination()
->get(),
],
];
}
return [
'#theme' => 'links',
'#links' => $links,
'#attributes' => [
'class' => [
'links',
'inline',
],
],
];
}
}
Classes
Name | Description |
---|---|
PostViewBuilder | Render controller for posts. |