You are here

function contexturl_context_registry in Context URL 7

Implements hook_context_registry().

File

./contexturl.module, line 29
Implements the necessary hooks for Context URL to work properly.

Code

function contexturl_context_registry() {
  return array(
    'conditions' => array(
      'url' => array(
        'title' => t('Page URL'),
        'description' => t('Use a simple formula to check the page url: you can use use wildchar "*".'),
        'plugin' => 'contexturl_condition_url',
      ),
    ),
  );
}