You are here

advanced_forum_bootstrap.module in Advanced Forum Bootstrap 7.3

File

advanced_forum_bootstrap.module
View source
<?php

function advanced_forum_bootstrap_ctools_plugin_directory($module, $plugin) {
  if ($module == 'advanced_forum') {
    return 'styles';
  }
}

/**
 * Preprocesses template variables for the forum icon template.
 */
function advanced_forum_bootstrap_preprocess_forum_icon(&$vars) {
  switch ($vars['icon_class']) {
    case 'sticky':
      $vars['classes_array'][] = 'glyphicon glyphicon-pushpin';
      break;
    case 'closed':
      $vars['classes_array'][] = 'glyphicon glyphicon-ban-circle';
      break;
    case 'hot':
      $vars['classes_array'][] = 'glyphicon glyphicon-fire';
      break;
    case 'hot-new':
      $vars['classes_array'][] = 'glyphicon glyphicon-fire';
      $vars['attributes_array']['style'] = "color: #ff0000";
      break;
    case 'new':
      $vars['classes_array'][] = 'glyphicon glyphicon-star';
      break;
    case 'default':
      $vars['classes_array'][] = 'glyphicon glyphicon-star-empty';
      break;
  }
}

Functions

Namesort descending Description
advanced_forum_bootstrap_ctools_plugin_directory
advanced_forum_bootstrap_preprocess_forum_icon Preprocesses template variables for the forum icon template.