Implements hook_theme().

Call the base hook from Paragraphs to allow preprocess hooks to work.

File

./a11y_paragraphs_tabs.module, line 13

Code

function a11y_paragraphs_tabs_theme() {
    return [
        'paragraph__a11y_paragraphs_tabs_wrapper' => [
            'render element' => 'element',
            'template' => 'paragraph--a11y-paragraphs-tabs-wrapper',
            'base hook' => 'paragraph',
        ],
        'field__field_a11y_para_tabs_tabs_panel' => [
            'render element' => 'content',
            'template' => 'field--field-a11y-para-tabs-tabs-panel',
            'base hook' => 'field',
        ],
    ];
}