mirror of
https://github.com/silverstripe/silverstripe-versionfeed
synced 2024-10-22 11:05:31 +02:00
ENH Use class name instead of self
This commit is contained in:
parent
fe86df7b6f
commit
b2dd034d1b
@ -23,7 +23,7 @@ class CachedContentFilter extends ContentFilter
|
||||
$cache = $this->getCache();
|
||||
|
||||
// Return cached value if available
|
||||
$cacheEnabled = Config::inst()->get(self::class, 'cache_enabled');
|
||||
$cacheEnabled = Config::inst()->get(CachedContentFilter::class, 'cache_enabled');
|
||||
$result = (isset($_GET['flush']) || !$cacheEnabled)
|
||||
? null
|
||||
: $cache->get($key);
|
||||
|
@ -64,7 +64,7 @@ class RateLimitFilter extends ContentFilter
|
||||
*/
|
||||
protected function getCacheKey($itemkey)
|
||||
{
|
||||
$key = self::CACHE_PREFIX;
|
||||
$key = RateLimitFilter::CACHE_PREFIX;
|
||||
|
||||
// Add global identifier
|
||||
if ($this->config()->get('lock_bypage')) {
|
||||
|
@ -206,7 +206,7 @@ class VersionFeed extends SiteTreeExtension
|
||||
|
||||
public function getSiteRSSLink()
|
||||
{
|
||||
if (Config::inst()->get(self::class, 'allchanges_enabled')
|
||||
if (Config::inst()->get(VersionFeed::class, 'allchanges_enabled')
|
||||
&& SiteConfig::current_site_config()->AllChangesEnabled
|
||||
) {
|
||||
return $this->owner->Link('allchanges');
|
||||
@ -215,7 +215,7 @@ class VersionFeed extends SiteTreeExtension
|
||||
|
||||
public function getDefaultRSSLink()
|
||||
{
|
||||
if (Config::inst()->get(self::class, 'changes_enabled') && $this->owner->PublicHistory) {
|
||||
if (Config::inst()->get(VersionFeed::class, 'changes_enabled') && $this->owner->PublicHistory) {
|
||||
return $this->owner->Link('changes');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user