You are here

dimension.module in Dimension 2.1.x

Same filename and directory in other branches
  1. 7 dimension.module
  2. 2.0.x dimension.module

File

dimension.module
View source
<?php

/**
 * Implements hook_theme().
 */
function dimension_theme() {
  return [
    'area_components_field_formatter' => [
      'variables' => [
        'width' => 0,
        'height' => 0,
      ],
    ],
    'volume_components_field_formatter' => [
      'variables' => [
        'width' => 0,
        'height' => 0,
        'length' => 0,
      ],
    ],
  ];
}

Functions

Namesort descending Description
dimension_theme Implements hook_theme().