coffee_test.module in Coffee 8
A test module for test the coffee module.
File
tests/modules/coffee_test/coffee_test.moduleView source
<?php
/**
* @file
* A test module for test the coffee module.
*/
use Drupal\Core\Url;
/**
* Implements hook_coffee_commands().
*/
function coffee_test_coffee_commands() {
$commands[] = [
'value' => Url::fromRoute('<front>')
->toString(),
'label' => t('Coffee hook fired!'),
'command' => ':test',
];
return $commands;
}
Functions
Name | Description |
---|---|
coffee_test_coffee_commands | Implements hook_coffee_commands(). |