function social_post_theme_suggestions_post in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.2 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.3 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.4 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.5 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.6 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.7 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 8.8 modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 10.3.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 10.0.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 10.1.x modules/social_features/social_post/social_post.module \social_post_theme_suggestions_post()
- 10.2.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 166 - 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;
}