commerce_test.module in Commerce Core 8.2
Test module for Commerce.
File
tests/modules/commerce_test/commerce_test.moduleView source
<?php
/**
* @file
* Test module for Commerce.
*/
/**
* Implements hook_theme().
*/
function commerce_test_theme($existing, $type, $theme, $path) {
return [
'render_entity' => [
'template' => 'commerce-test-entity-render',
'variables' => [
'entity' => NULL,
],
],
];
}
Functions
Name | Description |
---|---|
commerce_test_theme | Implements hook_theme(). |