You are here

function relation_theme in Relation 8

Same name and namespace in other branches
  1. 8.2 relation.module \relation_theme()

Implements hook_theme().

File

./relation.module, line 40
Describes relations between entities.

Code

function relation_theme() {
  $theme = array(
    'relation' => array(
      'render element' => 'elements',
      'template' => 'relation',
    ),
    'relation_admin_content' => array(
      'variables' => array(
        'relations' => NULL,
      ),
    ),
  );
  return $theme;
}