QueryBase::conditionAggregate

public QueryBase::conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL) File core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 397 Class QueryBase The base entity query class. Namespace Drupal\Core\Entity\Query Code public function conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL) { $this->aggregate($field, $function, $langcode); $this->conditionAggregate->condition($field, $function,

StorageComparerInterface::moveRenameToUpdate

public StorageComparerInterface::moveRenameToUpdate($rename, $collection = StorageInterface::DEFAULT_COLLECTION) Moves a rename operation to an update. Parameters string $rename: The rename name, as provided by ConfigImporter::createRenameName(). string $collection: (optional) The collection where the configuration is stored. Defaults to the default collection. See also \Drupal\Core\Config\ConfigImporter::createRenameName() File core/lib/Drupal/Core/Config/StorageComparerInterface.php, line 9

Tasks::name

public Tasks::name() Return the human-readable name of the driver. Overrides Tasks::name File core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php, line 23 Class Tasks Specifies installation tasks for SQLite databases. Namespace Drupal\Core\Database\Driver\sqlite\Install Code public function name() { return t('SQLite'); }

ConfigBase::setName

public ConfigBase::setName($name) Sets the name of this configuration object. Parameters string $name: The name of the configuration object. Return value $this The configuration object. File core/lib/Drupal/Core/Config/ConfigBase.php, line 79 Class ConfigBase Provides a base class for configuration objects with get/set support. Namespace Drupal\Core\Config Code public function setName($name) { $this->name = $name; return $this; }

FeedInterface::refreshItems

public FeedInterface::refreshItems() Updates the feed items by triggering the import process. This will also update the last checked time of the feed and save it. Return value bool TRUE if there is new content for the feed FALSE otherwise. See also \Drupal\aggregator\ItemsImporterInterface::refresh() File core/modules/aggregator/src/FeedInterface.php, line 237 Class FeedInterface Provides an interface defining an aggregator feed entity. Namespace Drupal\aggregator Code public functio

Tasks::name

public Tasks::name() Return the human-readable name of the driver. Overrides Tasks::name File core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php, line 45 Class Tasks Specifies installation tasks for MySQL and equivalent databases. Namespace Drupal\Core\Database\Driver\mysql\Install Code public function name() { return t('MySQL, MariaDB, Percona Server, or equivalent'); }

EntityStorageBase::getEntityTypeId

public EntityStorageBase::getEntityTypeId() Gets the entity type ID. Return value string The entity type ID. Overrides EntityStorageInterface::getEntityTypeId File core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 93 Class EntityStorageBase A base entity storage class. Namespace Drupal\Core\Entity Code public function getEntityTypeId() { return $this->entityTypeId; }

CustomStrings::getLanguage

protected CustomStrings::getLanguage($langcode) Retrieves translations for a given language. Parameters string $langcode: The langcode of the language. Return value array A multidimensional array of translations, indexed by the context the source string belongs to. The second level is using original strings as keys. An empty array will be returned when no translations are available. Overrides StaticTranslation::getLanguage File core/lib/Drupal/Core/StringTranslation/Translator/CustomStrings.p

PagerSelectExtender::limit

public PagerSelectExtender::limit($limit = 10) Specify the maximum number of elements per page for this query. The default if not specified is 10 items per page. Parameters int|false $limit: An integer specifying the number of elements per page. If passed a false value (FALSE, 0, NULL), the pager is disabled. File core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php, line 138 Class PagerSelectExtender Query extender for pager queries. Namespace Drupal\Core\Database\Query Code p

EntityTypeManager::getListBuilder

public EntityTypeManager::getListBuilder($entity_type) Creates a new entity list builder. Parameters string $entity_type: The entity type for this list builder. Return value \Drupal\Core\Entity\EntityListBuilderInterface An entity list builder instance. Overrides EntityTypeManagerInterface::getListBuilder File core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 175 Class EntityTypeManager Manages entity type plugin definitions. Namespace Drupal\Core\Entity Code public function ge