You are here

function ad_types_reset in Advertisement 7.2

Resets the cached list of ad types.

File

./ad.module, line 242
Defines the core ad entity, including the entity itself, the bundle definitions (ad types), and various API functions to manage ads and interact with them through forms and autocompletes.

Code

function ad_types_reset() {
  $ad_types =& drupal_static('ad_types');
  $ad_types = NULL;
}