You are here

function apachesolr_panels_block_configure in Apache Solr Panels 7

Implements hook_block_configure().

File

./apachesolr_panels.module, line 43
Integrates Apache Solr Search with Panels.

Code

function apachesolr_panels_block_configure($delta) {
  switch ($delta) {
    case 'search_form':
      $form['search_page'] = array(
        '#type' => 'textfield',
        '#title' => t('Path to search page'),
        '#default_value' => variable_get('apachesolr_panels_search_page', ''),
      );
      return $form;
  }
}