You are here

function seo_checker_theme in SEO Compliance Checker 6.2

Same name and namespace in other branches
  1. 6 inc/seo_checker.theme.inc \seo_checker_theme()

Implementation of hook_theme().

File

inc/seo_checker.theme.inc, line 34
Contains the functions used to theme the outputs of this module.

Code

function seo_checker_theme() {
  $path = drupal_get_path('module', 'seo_checker');
  return array(
    'seo_slider' => array(
      'template' => 'slider-atleast',
      'path' => "{$path}/theme",
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'seo_check_results' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}