You are here

function seo_checklist_theme in SEO Checklist 7.4

Same name and namespace in other branches
  1. 8.4 seo_checklist.module \seo_checklist_theme()
  2. 5.0.x seo_checklist.module \seo_checklist_theme()

Implements hook_theme().

File

./seo_checklist.module, line 556
Track important SEO techniques on the website.

Code

function seo_checklist_theme($existing, $type, $theme, $path) {
  return array(
    'seo_checklist_intro_tab' => array(
      'template' => 'seo_checklist_intro_tab',
      'variables' => array(
        'volacci_logo' => t('Volacci'),
      ),
    ),
  );
}