You are here

function context_keywords_context_page_condition in Context Keywords 7

Same name and namespace in other branches
  1. 6 context_keywords.module \context_keywords_context_page_condition()

Implementation of hook_context_page_reaction() adds context based on the browser keywords string.

File

./context_keywords.module, line 55
context_keywords.module Adds referral url keyword conditions to Context

Code

function context_keywords_context_page_condition() {
  if ($plugin = context_get_plugin('condition', 'keywords')) {
    $plugin
      ->execute();
  }
}