class SimplenewsSourceCacheNone in Simplenews 7.2
Same name and namespace in other branches
- 7 includes/simplenews.source.inc \SimplenewsSourceCacheNone
Cache implementation that does not cache anything at all.
Hierarchy
- class \SimplenewsSourceCacheStatic implements SimplenewsSourceCacheInterface
- class \SimplenewsSourceCacheNone
Expanded class hierarchy of SimplenewsSourceCacheNone
Related topics
1 string reference to 'SimplenewsSourceCacheNone'
- SimplenewsSourceTestCase::testSendNoCaching in tests/
simplenews.test - Test with disabled caching.
File
- includes/
simplenews.source.inc, line 983 - Contains SimplenewsSource interface and implementations.
View source
class SimplenewsSourceCacheNone extends SimplenewsSourceCacheStatic {
/**
* Implements SimplenewsSourceCacheStatic::set().
*/
public function isCacheable($group, $key) {
return FALSE;
}
}