You are here

function opigno_simple_ui_theme_registry_alter in Opigno 7

Same name and namespace in other branches
  1. 7.0 modules/opigno_simple_ui/opigno_simple_ui.module \opigno_simple_ui_theme_registry_alter()

Implements hook_theme_registry_alter().

File

modules/simple_ui/opigno_simple_ui.module, line 260

Code

function opigno_simple_ui_theme_registry_alter(&$theme_registry) {
  if (isset($theme_registry['menu_local_task'])) {
    $theme_registry['menu_local_task']['function'] = 'theme_opigno_simple_ui_local_task';
  }
  if (module_exists('quiz')) {
    opigno_simple_ui_quiz_theme_registry_alter($theme_registry);
  }
}