module_test.file.inc 203 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * A file to test module_implements() loading includes.
  5. */
  6. /**
  7. * Implements hook_test_hook().
  8. */
  9. function module_test_test_hook() {
  10. return array('module_test' => 'success!');
  11. }