You are here

commerce_test.module in Commerce Core 8.2

Test module for Commerce.

File

tests/modules/commerce_test/commerce_test.module
View 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

Namesort descending Description
commerce_test_theme Implements hook_theme().