You are here

function ip_ban_theme in IP Ban 8

Same name and namespace in other branches
  1. 7 ip_ban.module \ip_ban_theme()

Implements hook_theme().

File

./ip_ban.module, line 23
Module can "ban" or set site to "read only" by country or IP address.

Code

function ip_ban_theme() {
  $themes = array(
    'ip_ban_country_table' => array(
      'render element' => 'ip_ban_table',
    ),
  );
  return $themes;
}