public static function MostPopularService::clear in Drupal Most Popular 7
Same name and namespace in other branches
- 6 classes/services.php \MostPopularService::clear()
Clears the internal caches, so the list of services must be fetched again.
1 call to MostPopularService::clear()
- MostPopularService::reset in classes/
services.php - Resets the titles for each of the services to the defaults.
File
- classes/
services.php, line 154 - Defines a wrapper for the mostpopular_services table.
Class
- MostPopularService
- @file Defines a wrapper for the mostpopular_services table.
Code
public static function clear() {
self::$availableList = NULL;
self::$enabledList = NULL;
self::$disabledList = NULL;
}