You are here

function seo_checklist_theme in SEO Checklist 5.0.x

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

Implements hook_theme().

File

./seo_checklist.module, line 1132
Uses best practices to check for proper search engine optimization.

Code

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