You are here

function social_post_album_preprocess_album_post_popup in Open Social 10.3.x

Same name and namespace in other branches
  1. 10.0.x modules/social_features/social_post/modules/social_post_album/social_post_album.module \social_post_album_preprocess_album_post_popup()
  2. 10.1.x modules/social_features/social_post/modules/social_post_album/social_post_album.module \social_post_album_preprocess_album_post_popup()
  3. 10.2.x modules/social_features/social_post/modules/social_post_album/social_post_album.module \social_post_album_preprocess_album_post_popup()

Implements hook_preprocess_HOOK().

1 call to social_post_album_preprocess_album_post_popup()
social_album_preprocess_social_album_post in modules/social_features/social_album/social_album.module
Implements hook_preprocess_HOOK().

File

modules/social_features/social_post/modules/social_post_album/social_post_album.module, line 91
The Social post album module.

Code

function social_post_album_preprocess_album_post_popup(&$variables) {
  $variables['post'] = [
    '#lazy_builder' => [
      'social_post_album.lazy_renderer:getPost',
      [
        'post',
        $variables['pid'],
        'album',
      ],
    ],
    '#create_placeholder' => TRUE,
  ];
}