You are here

function system_skinr_theme_hooks in Skinr 8.2

Same name and namespace in other branches
  1. 7.2 modules/system.skinr.inc \system_skinr_theme_hooks()

Implements hook_skinr_theme_hooks().

File

modules/system.skinr.inc, line 61
Implements Skinr hooks for system.module.

Code

function system_skinr_theme_hooks($module, $element) {
  $theme_hooks = array();
  if ($module == 'system') {
    if ($element == 'html') {
      $theme_hooks[] = 'html';
    }
    else {
      $theme_hooks[] = $element;
      $theme_hooks[] = 'region';
    }
  }
  return $theme_hooks;
}