You are here

function apachesolr_attachments_admin_page in Apache Solr Attachments 6

Same name and namespace in other branches
  1. 6.3 apachesolr_attachments.admin.inc \apachesolr_attachments_admin_page()
  2. 6.2 apachesolr_attachments.admin.inc \apachesolr_attachments_admin_page()
  3. 7 apachesolr_attachments.admin.inc \apachesolr_attachments_admin_page()
1 string reference to 'apachesolr_attachments_admin_page'
apachesolr_attachments_menu in ./apachesolr_attachments.module
Implementation of hook_menu().

File

./apachesolr_attachments.admin.inc, line 10
Provides a file attachment search implementation for use with the Apache Solr module

Code

function apachesolr_attachments_admin_page() {
  $output = '';
  $output .= drupal_get_form('apachesolr_attachments_settings');
  $output .= drupal_get_form('apachesolr_attachments_delete_index_form');
  return $output;
}