function seo_checker_theme in SEO Compliance Checker 6
Same name and namespace in other branches
- 6.2 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,
),
),
);
}