You are here

function seo_checklist_theme in SEO Checklist 8.4

Same name and namespace in other branches
  1. 7.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 932
Uses best practices to check for proper search engine optimization.

Code

function seo_checklist_theme($existing, $type, $theme, $path) {
  return [
    'seo_checklist_getting_started' => [
      'variables' => [
        'ga_query_string' => SEO_CHECKLIST_GA_QUERY_STRING,
      ],
    ],
  ];
}