You are here

module_handler_test.module in Zircon Profile 8

File

core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.module
View source
<?php

/**
 * Implements hook_hook_info().
 */
function module_handler_test_hook_info() {
  return array(
    'hook' => array(
      'group' => 'hook',
    ),
  );
}
function module_handler_test_hook($arg) {
  return $arg;
}