You are here

function simple_node_importer_theme in Simple Node Importer 8

Same name and namespace in other branches
  1. 7 simple_node_importer.module \simple_node_importer_theme()

Implements hook_theme().

File

./simple_node_importer.module, line 440
Simple node importer module file.

Code

function simple_node_importer_theme() {
  return [
    'simple_node_import_table' => [
      'render element' => 'form',
      'function' => 'simple_node_importer_theme_simple_node_import_table',
    ],
    'content_info_note' => [
      'template' => 'templates/content-info-note',
      'variables' => [
        'fields' => [],
      ],
    ],
    'mapping_help_text_info' => [
      'template' => 'mapping-help-text-info',
      'variables' => [
        'fields' => [],
      ],
    ],
  ];
}