module_handler_test.module in Zircon Profile 8
Same filename and directory in other branches
File
core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.moduleView 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;
}
Functions
Name | Description |
---|---|
module_handler_test_hook | |
module_handler_test_hook_info | Implements hook_hook_info(). |