UpdateRegistry::getPendingUpdateFunctions

public UpdateRegistry::getPendingUpdateFunctions() Find all update functions that haven't been executed. Return value callable[] A list of update functions. File core/lib/Drupal/Core/Update/UpdateRegistry.php, line 121 Class UpdateRegistry Provides all and missing update implementations. Namespace Drupal\Core\Update Code public function getPendingUpdateFunctions() { // We need a) the list of active modules (we get that from the config // bootstrap factory) and b) the path to the m

PublicStream::getExternalUrl

public PublicStream::getExternalUrl() Returns a web accessible URL for the resource. This function should return a URL that can be embedded in a web page and accessed from a browser. For example, the external URL of "youtube://xIpLd0WQKCY" might be "http://www.youtube.com/watch?v=xIpLd0WQKCY". Return value string Returns a string containing a web accessible URL for the resource. Overrides StreamWrapperInterface::getExternalUrl File core/lib/Drupal/Core/StreamWrapper/PublicStream.php, line 49

RegexDirectoryIterator::__construct

public RegexDirectoryIterator::__construct($path, $regex) RegexDirectoryIterator constructor. Parameters string $path: The path to scan. string $regex: The regular expression to match, including delimiters. For example, /\.yml$/ would list only files ending in .yml. File core/lib/Drupal/Component/FileSystem/RegexDirectoryIterator.php, line 26 Class RegexDirectoryIterator Iterates over files whose names match a regular expression in a directory. Namespace Drupal\Component\FileSystem Co

Connection::queryTemporary

public Connection::queryTemporary($query, array $args = array(), array $options = array()) Runs a SELECT query and stores its results in a temporary table. Use this as a substitute for ->query() when the results need to stored in a temporary table. Temporary tables exist for the duration of the page request. User-supplied arguments to the query should be passed in as separate parameters so that they can be properly escaped to avoid SQL injection attacks. Note that if you need to know how man

TourInterface::getModule

public TourInterface::getModule() Gets the module this tour belongs to. Return value string The module this tour belongs to. File core/modules/tour/src/TourInterface.php, line 58 Class TourInterface Provides an interface defining a tour entity. Namespace Drupal\tour Code public function getModule();

CacheContextInterface::getLabel

public static CacheContextInterface::getLabel() Returns the label of the cache context. Return value string The label of the cache context. File core/lib/Drupal/Core/Cache/Context/CacheContextInterface.php, line 16 Class CacheContextInterface Provides an interface for defining a cache context service. Namespace Drupal\Core\Cache\Context Code public static function getLabel();

FieldStorageDefinitionInterface::getType

public FieldStorageDefinitionInterface::getType() Returns the field type. Return value string The field type, i.e. the id of a field type plugin. For example 'text'. See also \Drupal\Core\Field\FieldTypePluginManagerInterface File core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php, line 52 Class FieldStorageDefinitionInterface Defines an interface for entity field storage definitions. Namespace Drupal\Core\Field Code public function getType();

ExecutionContext::addViolation

public ExecutionContext::addViolation($message, array $parameters = array(), $invalidValue = NULL, $plural = NULL, $code = NULL) File core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php, line 158 Class ExecutionContext Defines an execution context class. Namespace Drupal\Core\TypedData\Validation Code public function addViolation($message, array $parameters = array(), $invalidValue = NULL, $plural = NULL, $code = NULL) { // The parameters $invalidValue and following are ig

Select::forUpdate

public Select::forUpdate($set = TRUE) Add FOR UPDATE to the query. FOR UPDATE prevents the rows retrieved by the SELECT statement from being modified or deleted by other transactions until the current transaction ends. Other transactions that attempt UPDATE, DELETE, or SELECT FOR UPDATE of these rows will be blocked until the current transaction ends. Parameters $set: IF TRUE, FOR UPDATE will be added to the query, if FALSE then it won't. Return value \Drupal\Core\Database\Query\ConditionInte

ItemStorageInterface

Defines an interface for aggregator item entity storage classes. Hierarchy interface \Drupal\Core\Entity\EntityStorageInterfaceinterface \Drupal\Core\Entity\ContentEntityStorageInterfaceinterface \Drupal\aggregator\ItemStorageInterface File core/modules/aggregator/src/ItemStorageInterface.php, line 10 Namespace Drupal\aggregator Members Name Modifiers Type Description ContentEntityStorageInterface::createTranslation public function Constructs a new entity translation o