Implements hook_theme().

Fichier

./quicktabs.module, line 28

Code

function quicktabs_theme($existing, $type, $theme, $path) {
    return [
        'quicktabs_block_content' => [
            'variables' => [
                'title' => NULL,
                'block' => NULL,
                'classes' => NULL,
                'id' => NULL,
                'tabid' => NULL,
            ],
            'template' => 'quicktabs-block-content',
        ],
        'quicktabs_view_quicktabs' => [
            'file' => 'quicktabs.theme.inc',
        ],
    ];
}