You are here

function context_no_title_process_page in Context No Title 7

Implements hook_process_page().

File

./context_no_title.module, line 42
Define plugin and activate.

Code

function context_no_title_process_page(&$vars) {
  if (module_exists('context')) {
    if ($plugin = context_get_plugin('reaction', 'no_title')) {
      $plugin
        ->execute($vars);
    }
  }
}