You are here

apachesolr_test.module in Apache Solr Search 6.3

File

tests/apachesolr_test/apachesolr_test.module
View source
<?php

/**
 * Implements hook_footer().
 *
 */
function hook_footer($main = 0) {
  $included_files = get_included_files();
  $filename = dirname(dirname(dirname(realpath(__FILE__)))) . '/apachesolr.index.inc';
  if (in_array($filename, $included_files)) {
    return '<div">apachesolr.index.inc was included</div>';
  }
}

Functions

Namesort descending Description
hook_footer Implements hook_footer().