You are here

function domain_preprocess_html in Domain Access 7.3

Same name and namespace in other branches
  1. 8 domain/domain.module \domain_preprocess_html()

Implements template_preprocess_html().

File

./domain.module, line 4140
Core module functions for the Domain Access suite.

Code

function domain_preprocess_html(&$variables) {
  $classes = domain_page_classes();
  foreach ($classes as $class) {
    $variables['classes_array'][] = $class;
  }
}