FieldConfigInterface::isDeleted

public FieldConfigInterface::isDeleted() Gets the deleted flag of the field. Return value bool Returns TRUE if the field is deleted. File core/modules/field/src/FieldConfigInterface.php, line 19 Class FieldConfigInterface Provides an interface defining a field entity. Namespace Drupal\field Code public function isDeleted();

MetadataBubblingUrlGenerator::getPathFromRoute

public MetadataBubblingUrlGenerator::getPathFromRoute($name, $parameters = array()) Gets the internal path (system path) for a route. Parameters string|\Symfony\Component\Routing\Route $name: The route name or a route object. array $parameters: An array of parameters as passed to \Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). Return value string The internal Drupal path corresponding to the route. Overrides UrlGeneratorInterface::getPathFromRoute File core/lib/Drupal/

ConfigNamesMapper::getDeleteRouteName

public ConfigNamesMapper::getDeleteRouteName() Returns route name for the translation deletion route. Return value string Route name for the mapper. Overrides ConfigMapperInterface::getDeleteRouteName File core/modules/config_translation/src/ConfigNamesMapper.php, line 318 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getDeleteRouteName() { return 'config_translation.item.delete.' . $this->getBaseRouteNa

DatabaseBackendFactory::__construct

DatabaseBackendFactory::__construct(Connection $connection, CacheTagsChecksumInterface $checksum_provider) Constructs the DatabaseBackendFactory object. Parameters \Drupal\Core\Database\Connection $connection: Database connection \Drupal\Core\Cache\CacheTagsChecksumInterface $checksum_provider: The cache tags checksum provider. File core/lib/Drupal/Core/Cache/DatabaseBackendFactory.php, line 31 Class DatabaseBackendFactory Namespace Drupal\Core\Cache Code function __construct(Connect

FILE_CREATE_DIRECTORY

Flag used by file_prepare_directory() -- create directory if not present. Related topics File interface Common file handling functions. File core/includes/file.inc, line 43 API for handling file uploads and server file management. Code const FILE_CREATE_DIRECTORY = 1;

MenuRouterRebuildSubscriber::__construct

public MenuRouterRebuildSubscriber::__construct(LockBackendInterface $lock, MenuLinkManagerInterface $menu_link_manager) Constructs the MenuRouterRebuildSubscriber object. Parameters \Drupal\Core\Lock\LockBackendInterface $lock: The lock backend. \Drupal\Core\Menu\MenuLinkManagerInterface $menu_link_manager: The menu link plugin manager. File core/lib/Drupal/Core/EventSubscriber/MenuRouterRebuildSubscriber.php, line 37 Class MenuRouterRebuildSubscriber Rebuilds the default menu links and

UpdaterInterface::canUpdateDirectory

public static UpdaterInterface::canUpdateDirectory($directory) Determines if the Updater can handle the project provided in $directory. Parameters string $directory: Return value bool TRUE if the project is installed, FALSE if not. File core/lib/Drupal/Core/Updater/UpdaterInterface.php, line 56 Class UpdaterInterface Defines an interface for a class which can update a Drupal project. Namespace Drupal\Core\Updater Code public static function canUpdateDirectory($directory);

Html::$seenIdsInit

An array of the initial IDs used in one request. Type: array File core/lib/Drupal/Component/Utility/Html.php, line 24 Class Html Provides DOMDocument helpers for parsing and serializing HTML strings. Namespace Drupal\Component\Utility Code protected static $seenIdsInit;

EntityType::getLinkTemplates

public EntityType::getLinkTemplates() Gets the link templates using the URI template syntax. Links are an array of standard link relations to the URI template that should be used for them. Where possible, link relationships should use established IANA relationships rather than custom relationships. Every entity type should, at minimum, define "canonical", which is the pattern for URIs to that entity. Even if the entity will have no HTML page exposed to users it should still have a canonical URI

DenyNodePreview

Cache policy for node preview page. This policy rule denies caching of responses generated by the entity.node.preview route. Hierarchy class \Drupal\node\PageCache\DenyNodePreview implements ResponsePolicyInterface File core/modules/node/src/PageCache/DenyNodePreview.php, line 16 Namespace Drupal\node\PageCache Members Name Modifiers Type Description DenyNodePreview::$routeMatch protected property The current route match. DenyNodePreview::check public function De