You are here

function node_theme in Drupal 8

Same name and namespace in other branches
  1. 6 modules/node/node.module \node_theme()
  2. 7 modules/node/node.module \node_theme()
  3. 9 core/modules/node/node.module \node_theme()

Implements hook_theme().

File

core/modules/node/node.module, line 166
The core module that allows content to be submitted to the site.

Code

function node_theme() {
  return [
    'node' => [
      'render element' => 'elements',
    ],
    'node_add_list' => [
      'variables' => [
        'content' => NULL,
      ],
    ],
    'node_edit_form' => [
      'render element' => 'form',
    ],
    'field__node__title' => [
      'base hook' => 'field',
    ],
    'field__node__uid' => [
      'base hook' => 'field',
    ],
    'field__node__created' => [
      'base hook' => 'field',
    ],
  ];
}