You are here

function system_service_cache_clear_all in Services 6.2

Same name and namespace in other branches
  1. 7 services/system_service/system_service.inc \system_service_cache_clear_all()

Services implementation of cache_clear_all().

See also

cache_clear_all()

1 string reference to 'system_service_cache_clear_all'
system_service_service in services/system_service/system_service.module
Implementation of hook_service().

File

services/system_service/system_service.inc, line 142
Link general system functionalities to services module.

Code

function system_service_cache_clear_all() {
  drupal_flush_all_caches();
  watchdog('system service', 'caches cleared');
}