You are here

function social_album_theme in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_album/social_album.module \social_album_theme()
  2. 10.0.x modules/social_features/social_album/social_album.module \social_album_theme()
  3. 10.1.x modules/social_features/social_album/social_album.module \social_album_theme()

Implements hook_theme().

File

modules/social_features/social_album/social_album.module, line 23
The Social Album module.

Code

function social_album_theme($existing, $type, $theme, $path) {
  return [
    'social_album_post' => [
      'variables' => [
        'items' => NULL,
        'album' => NULL,
      ],
    ],
  ];
}