function social_post_theme in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.2 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.3 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.4 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.5 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.6 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.7 modules/social_features/social_post/social_post.module \social_post_theme()
- 8.8 modules/social_features/social_post/social_post.module \social_post_theme()
- 10.3.x modules/social_features/social_post/social_post.module \social_post_theme()
- 10.0.x modules/social_features/social_post/social_post.module \social_post_theme()
- 10.1.x modules/social_features/social_post/social_post.module \social_post_theme()
- 10.2.x modules/social_features/social_post/social_post.module \social_post_theme()
Implements hook_theme().
File
- modules/
social_features/ social_post/ social_post.module, line 152 - The Social post module.
Code
function social_post_theme() {
$items = [
'post' => [
'render element' => 'elements',
'file' => 'post.page.inc',
'template' => 'post',
],
];
return $items;
}