interface CacheflushUIConstantsInterface in CacheFlush 8
Interface CacheflushUIConstantsInterface.
@package Drupal\cacheflush_ui
Hierarchy
- interface \Drupal\cacheflush_ui\CacheflushUIConstantsInterface
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_uiView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheflushUIConstantsInterface:: |
constant | Denotes that the cacheflush entity has cron entry. | ||
CacheflushUIConstantsInterface:: |
constant | Denotes that the cacheflush entity has menu entry. | ||
CacheflushUIConstantsInterface:: |
constant | Denotes that the cacheflush is not published. | ||
CacheflushUIConstantsInterface:: |
constant | Denotes that the cacheflush entity has no menu entry. | ||
CacheflushUIConstantsInterface:: |
constant | Denotes that the cacheflush is published. |