You are here

function masonry_context_page_build in Masonry API 7

Implements hook_page_build().

File

masonry_context/masonry_context.module, line 10
Provides a Context reacton plugin to display content in a jQuery Masonry grid.

Code

function masonry_context_page_build(&$page) {
  if ($plugin = context_get_plugin('reaction', 'masonry')) {
    $plugin
      ->execute();
  }
}