FilterFormatInterface::isFallbackFormat

public FilterFormatInterface::isFallbackFormat() Returns if this format is the fallback format. The fallback format can never be disabled. It must always be available. Return value bool TRUE if this format is the fallback format, FALSE otherwise. File core/modules/filter/src/FilterFormatInterface.php, line 45 Class FilterFormatInterface Provides an interface defining a filter format entity. Namespace Drupal\filter Code public function isFallbackFormat();

View::generateDisplayId

protected View::generateDisplayId($plugin_id) Generates a display ID of a certain plugin type. Parameters string $plugin_id: Which plugin should be used for the new display ID. Return value string File core/modules/views/src/Entity/View.php, line 208 Class View Defines a View configuration entity class. Namespace Drupal\views\Entity Code protected function generateDisplayId($plugin_id) { // 'default' is singular and is unique, so just go with 'default' // for it. For all others,

MaintenanceModeSubscriber::$account

The current account. Type: \Drupal\Core\Session\AccountInterface File core/modules/user/src/EventSubscriber/MaintenanceModeSubscriber.php, line 32 Class MaintenanceModeSubscriber Maintenance mode subscriber to log out users. Namespace Drupal\user\EventSubscriber Code protected $account;

drupal_check_incompatibility

drupal_check_incompatibility($v, $current_version) Checks whether a version is compatible with a given dependency. Parameters $v: A parsed dependency structure e.g. from ModuleHandler::parseDependency(). $current_version: The version to check against (like 4.2). Return value NULL if compatible, otherwise the original dependency version string that caused the incompatibility. See also \Drupal\Core\Extension\ModuleHandler::parseDependency() File core/includes/common.inc, line 1202 Common funct

DatabaseStorageExpirable::setWithExpire

DatabaseStorageExpirable::setWithExpire($key, $value, $expire) Saves a value for a given key with a time to live. Parameters string $key: The key of the data to store. mixed $value: The data to store. int $expire: The time to live for items, in seconds. Overrides KeyValueStoreExpirableInterface::setWithExpire File core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php, line 74 Class DatabaseStorageExpirable Defines a default key/value store implementation for expiring items. Na

QueueFactory::__construct

QueueFactory::__construct(Settings $settings) Constructs a queue factory. File core/lib/Drupal/Core/Queue/QueueFactory.php, line 34 Class QueueFactory Defines the queue factory. Namespace Drupal\Core\Queue Code function __construct(Settings $settings) { $this->settings = $settings; }

ImageToolkitInterface::getSource

public ImageToolkitInterface::getSource() Gets the source path of the image file. Return value string The source path of the image file, or an empty string if the source is not set. File core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php, line 70 Class ImageToolkitInterface Defines an interface for image toolkits. Namespace Drupal\Core\ImageToolkit Code public function getSource();

menu-local-tasks.html.twig

Default theme implementation to display primary and secondary local tasks. Available variables: primary: HTML list items representing primary tasks. secondary: HTML list items representing primary tasks. Each item in these variables (primary and secondary) can be individually themed in menu-local-task.html.twig. File core/modules/system/templates/menu-local-tasks.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

Update::$arguments

An array of values to update to. Type: array File core/lib/Drupal/Core/Database/Query/Update.php, line 36 Class Update General class for an abstracted UPDATE operation. Namespace Drupal\Core\Database\Query Code protected $arguments = array();

CommentLinkBuilder::$moduleHandler

Module handler service. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/comment/src/CommentLinkBuilder.php, line 43 Class CommentLinkBuilder Defines a class for building markup for comment links on a commented entity. Namespace Drupal\comment Code protected $moduleHandler;