public static function MostPopularService::fetchEnabled in Drupal Most Popular 6
Same name and namespace in other branches
- 7 classes/services.php \MostPopularService::fetchEnabled()
Fetches all of the enabled services.
2 calls to MostPopularService::fetchEnabled()
- mostpopular_refresh in ./
mostpopular.api.php - Refreshes data from each service by invoking hook_mostpopular_service('refresh').
- theme_mostpopular_services in ./
mostpopular.block.inc - Themes a list of links to services. You can apply styles to class mostpopular-services.
File
- classes/
services.php, line 234 - Defines a wrapper for the mostpopular_services table.
Class
- MostPopularService
- @file Defines a wrapper for the mostpopular_services table.
Code
public static function fetchEnabled() {
self::fetchAvailable();
return self::$enabledList;
}