You are here

function manage_display_theme in Manage display 8

Implements hook_theme().

File

./manage_display.module, line 126
Make base fields such as 'title' available in "Manage Display".

Code

function manage_display_theme() {
  return [
    'submitted' => [
      'base hook' => 'username',
      'variables' => [
        'date' => NULL,
        'user_picture' => NULL,
        'metadata' => [],
        'account' => NULL,
        'attributes' => [],
        'link_options' => [],
      ],
    ],
  ];
}