You are here

function search_api_saved_searches_block_configure in Search API Saved Searches 7

Implements hook_block_configure().

File

./search_api_saved_searches.module, line 707
Offers the ability to save searches and be notified of new results.

Code

function search_api_saved_searches_block_configure($delta = '') {
  $settings = search_api_saved_searches_settings_load($delta);
  $form['settings_link'] = array(
    '#markup' => l(t('To saved search settings'), 'admin/config/search/search_api/index/' . $settings->index_id . '/saved_searches'),
  );
  return $form;
}