You are here

function ad_text_init in Advertisement 5.2

Same name and namespace in other branches
  1. 5 text/ad_text.module \ad_text_init()

File

text/ad_text.module, line 34
Enhances the ad module to support static text ads.

Code

function ad_text_init() {
  if (function_exists('drupal_set_content')) {
    if (module_exists('views')) {
      include drupal_get_path('module', 'ad_text') . '/ad_text_views.inc';
    }
  }
}