You are here

function social_post_theme 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()
  2. 8 modules/social_features/social_post/social_post.module \social_post_theme()
  3. 8.2 modules/social_features/social_post/social_post.module \social_post_theme()
  4. 8.3 modules/social_features/social_post/social_post.module \social_post_theme()
  5. 8.4 modules/social_features/social_post/social_post.module \social_post_theme()
  6. 8.5 modules/social_features/social_post/social_post.module \social_post_theme()
  7. 8.6 modules/social_features/social_post/social_post.module \social_post_theme()
  8. 8.7 modules/social_features/social_post/social_post.module \social_post_theme()
  9. 8.8 modules/social_features/social_post/social_post.module \social_post_theme()
  10. 10.3.x modules/social_features/social_post/social_post.module \social_post_theme()
  11. 10.0.x modules/social_features/social_post/social_post.module \social_post_theme()
  12. 10.1.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 195
The Social post module.

Code

function social_post_theme() {
  $items = [
    'post' => [
      'render element' => 'elements',
      'file' => 'post.page.inc',
      'template' => 'post',
    ],
    'post__featured' => [
      'template' => 'post--featured',
      'base hook' => 'post',
    ],
  ];
  return $items;
}