You are here

function features_ui_theme in Features 8.4

Same name and namespace in other branches
  1. 8.3 modules/features_ui/features_ui.module \features_ui_theme()

Implements hook_theme().

File

modules/features_ui/features_ui.module, line 35
Allows site administrators to modify configuration.

Code

function features_ui_theme() {
  return [
    'features_assignment_configure_form' => [
      'render element' => 'form',
      'file' => 'features_ui.admin.inc',
    ],
    'features_items' => [
      'variables' => [
        'items' => [],
      ],
    ],
  ];
}