You are here

function isotope_page_build in Isotope (with Masonry and Packery) 7

Implements hook_page_build().

File

./isotope.module, line 53
Defines the default hooks that the history js module implements.

Code

function isotope_page_build(&$page) {
  if (module_exists('context')) {
    if ($plugin = context_get_plugin('reaction', 'isotope')) {
      $plugin
        ->execute();
    }
  }
}