You are here

function social_post_theme_suggestions_post in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  2. 8 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  3. 8.2 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  4. 8.3 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  5. 8.4 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  6. 8.5 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  7. 8.6 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  8. 8.7 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  9. 8.8 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  10. 10.3.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  11. 10.0.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
  12. 10.1.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()

Implements hook_theme_suggestions_HOOK().

File

modules/social_features/social_post/social_post.module, line 245
The Social post module.

Code

function social_post_theme_suggestions_post(array $variables) {
  $suggestions = [];
  $entity = $variables['elements']['#post'];
  $sanitized_view_mode = strtr($variables['elements']['#view_mode'], '.', '_');
  $suggestions[] = 'post__' . $sanitized_view_mode;
  $suggestions[] = 'post__' . $entity
    ->bundle();
  $suggestions[] = 'post__' . $entity
    ->bundle() . '__' . $sanitized_view_mode;
  $suggestions[] = 'post__' . $entity
    ->id();
  $suggestions[] = 'post__' . $entity
    ->id() . '__' . $sanitized_view_mode;
  return $suggestions;
}