This simple snippet shows you how to add body class programmatically from your module in Drupal 7.
Source code viewer
/** * Implements hook_preprocess_html(). */ function HOOK_preprocess_html(&$vars) { $vars['classes_array'][] = 'your-custom-class'; } Programming Language: PHP