You are here

interface CacheflushUIConstantsInterface in CacheFlush 8

Interface CacheflushUIConstantsInterface.

@package Drupal\cacheflush_ui

Hierarchy

Expanded class hierarchy of CacheflushUIConstantsInterface

All classes that implement CacheflushUIConstantsInterface

5 files declare their use of CacheflushUIConstantsInterface
AddMenuCacheflush.php in modules/cacheflush_ui/src/Plugin/Action/AddMenuCacheflush.php
cacheflush_ui.module in modules/cacheflush_ui/cacheflush_ui.module
Cacheflush User Interface.
PublishCacheflush.php in modules/cacheflush_ui/src/Plugin/Action/PublishCacheflush.php
RemoveMenuCacheflush.php in modules/cacheflush_ui/src/Plugin/Action/RemoveMenuCacheflush.php
UnpublishCacheflush.php in modules/cacheflush_ui/src/Plugin/Action/UnpublishCacheflush.php

File

modules/cacheflush_ui/src/CacheflushUIConstantsInterface.php, line 10

Namespace

Drupal\cacheflush_ui
View source
interface CacheflushUIConstantsInterface {

  /**
   * Denotes that the cacheflush is not published.
   */
  const CACHEFLUSH_NOT_PUBLISHED = 0;

  /**
   * Denotes that the cacheflush is published.
   */
  const CACHEFLUSH_PUBLISHED = 1;

  /**
   * Denotes that the cacheflush entity has no menu entry.
   */
  const CACHEFLUSH_NO_MENU = 0;

  /**
   * Denotes that the cacheflush entity has menu entry.
   */
  const CACHEFLUSH_MENU = 1;

  /**
   * Denotes that the cacheflush entity has cron entry.
   */
  const CACHEFLUSH_CRON = 1;

}

Members

Namesort descending Modifiers Type Description Overrides
CacheflushUIConstantsInterface::CACHEFLUSH_CRON constant Denotes that the cacheflush entity has cron entry.
CacheflushUIConstantsInterface::CACHEFLUSH_MENU constant Denotes that the cacheflush entity has menu entry.
CacheflushUIConstantsInterface::CACHEFLUSH_NOT_PUBLISHED constant Denotes that the cacheflush is not published.
CacheflushUIConstantsInterface::CACHEFLUSH_NO_MENU constant Denotes that the cacheflush entity has no menu entry.
CacheflushUIConstantsInterface::CACHEFLUSH_PUBLISHED constant Denotes that the cacheflush is published.