You are here

function relation_ui_theme in Relation 7

Implements hook_theme().

File

./relation_ui.module, line 826
Provide administration interface for relation type bundles.

Code

function relation_ui_theme() {
  $theme = array(
    'relation_ui_admin_content' => array(
      'variables' => array(
        'relations' => NULL,
      ),
    ),
  );
  return $theme;
}