You are here

BackgroundImageSettingsDarkCacheContext.php in Background Image 2.0.x

File

src/Cache/Context/BackgroundImageSettingsDarkCacheContext.php
View source
<?php

namespace Drupal\background_image\Cache\Context;


/**
 * Cache context ID: 'background_image.settings.dark'.
 */
class BackgroundImageSettingsDarkCacheContext extends BackgroundImageBaseCacheContext {

  /**
   * {@inheritdoc}
   */
  public static function getLabel() {
    return t('Background Image: Dark Setting');
  }

  /**
   * {@inheritdoc}
   */
  public function getContext() {
    return $this->backgroundImage ? $this->backgroundImage
      ->getSetting('dark') : 0;
  }

}

Classes

Namesort descending Description
BackgroundImageSettingsDarkCacheContext Cache context ID: 'background_image.settings.dark'.