You are here

function apachesolr_search_context_registry in Apache Solr Search 7

Implements hook_context_registry().

File

./apachesolr_search.module, line 1715
Provides a content search implementation for node content for use with the Apache Solr search application.

Code

function apachesolr_search_context_registry() {
  return array(
    'conditions' => array(
      'apachesolr_page' => array(
        'title' => t('Apachesolr search page'),
        'plugin' => 'apachesolr_context_page_condition',
      ),
    ),
  );
}