function SourcePluginBase::getCache

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::getCache()
  2. 10 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::getCache()
  3. 11.x core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::getCache()

Gets the cache object.

Return value

\Drupal\Core\Cache\CacheBackendInterface The cache object.

File

core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php, line 486

Class

SourcePluginBase
The base class for source plugins.

Namespace

Drupal\migrate\Plugin\migrate\source

Code

protected function getCache() {
    if (!isset($this->cache)) {
        $this->cache = \Drupal::cache('migrate');
    }
    return $this->cache;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.