You are here

function bg_image_context_context_page_reaction in Background Images 7

Implementation of hook_context_page_reaction().

We need to actually call the reaction at some point or nothing will happen.

File

bg_image_context/bg_image_context.module, line 65
bg_image_context.module

Code

function bg_image_context_context_page_reaction() {
  if ($plugin = context_get_plugin('reaction', 'bg_image')) {
    $plugin
      ->execute();
  }
}