You are here

function paragraphs_ee_theme in Paragraphs Editor Enhancements 8

Implements hook_theme().

File

./paragraphs_ee.module, line 24
Main functions for "Paragraphs Editor Enhancements" module.

Code

function paragraphs_ee_theme() {
  return [
    'paragraphs_add_dialog__categorized' => [
      'render element' => 'element',
      'template' => 'paragraphs-add-dialog--categorized',
      'path' => drupal_get_path('module', 'paragraphs_ee') . '/templates',
    ],
    'input__submit__paragraphs_action__image' => [
      'base hook' => 'input',
      'render element' => 'element',
      'template' => 'input--submit--paragraphs_action--image',
      'path' => drupal_get_path('module', 'paragraphs_ee') . '/templates',
    ],
  ];
}