You are here

function theme_rotating_banner_control in Rotating Banner 7

Same name and namespace in other branches
  1. 7.2 rotating_banner.module \theme_rotating_banner_control()

File

./rotating_banner.module, line 684

Code

function theme_rotating_banner_control($variables) {
  $type = $variables['type'];
  $func = "theme_rotating_banner_control__{$type}";
  if (function_exists($func)) {
    return call_user_func_array($func, array(
      $variables,
    ));
  }
  return '';
}