Connection::queryRange

abstract public Connection::queryRange($query, $from, $count, array $args = array(), array $options = array()) Runs a limited-range query on this database object. Use this as a substitute for ->query() when a subset of the query is to be returned. 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. Parameters string $query: A string containing an SQL query. int $from: The first result row to ret

ImageEffect::$id

The plugin ID. Type: string File core/modules/image/src/Annotation/ImageEffect.php, line 33 Class ImageEffect Defines an image effect annotation object. Namespace Drupal\image\Annotation Code public $id;

AccessManager::$routeProvider

The route provider. Type: \Drupal\Core\Routing\RouteProviderInterface File core/lib/Drupal/Core/Access/AccessManager.php, line 27 Class AccessManager Attaches access check services to routes and runs them on request. Namespace Drupal\Core\Access Code protected $routeProvider;

Fast404ExceptionHtmlSubscriber::$httpKernel

The HTTP kernel. Type: \Symfony\Component\HttpKernel\HttpKernelInterface File core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php, line 24 Class Fast404ExceptionHtmlSubscriber High-performance 404 exception subscriber. Namespace Drupal\Core\EventSubscriber Code protected $httpKernel;

AssetCollectionOptimizerInterface::optimize

public AssetCollectionOptimizerInterface::optimize(array $assets) Optimizes a collection of assets. Parameters array $assets: An asset collection. Return value array An optimized asset collection. File core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php, line 19 Class AssetCollectionOptimizerInterface Interface defining a service that optimizes a collection of assets. Namespace Drupal\Core\Asset Code public function optimize(array $assets);

SearchQuery

Search query extender and helper functions. Performs a query on the full-text search index for a word or words. This query is used by search plugins that use the search index (not all search plugins do, as some use a different searching mechanism). It assumes you have set up a query on the {search_index} table with alias 'i', and will only work if the user is searching for at least one "positive" keyword or phrase. For efficiency, users of this query can run the prepareAndNormalize() method to

FieldConfigBase::getTargetEntityTypeId

public FieldConfigBase::getTargetEntityTypeId() Returns the ID of the entity type the field is attached to. This method should not be confused with EntityInterface::getEntityTypeId() (configurable fields are config entities, and thus implement both interfaces): FieldDefinitionInterface::getTargetEntityTypeId() answers "as a field, which entity type are you attached to?". EntityInterface::getEntityTypeId() answers "as a (config) entity, what is your own entity type?". Return value string The

FieldConfig::__construct

public FieldConfig::__construct(array $values, $entity_type = 'field_config') Constructs a FieldConfig object. In most cases, Field entities are created via FieldConfig::create($values), where $values is the same parameter as in this constructor. Parameters array $values: An array of field properties, keyed by property name. The storage associated with the field can be specified either with: field_storage: the FieldStorageConfigInterface object, or by referring to an existing field storage

Tables::$sqlQuery

Type: \Drupal\Core\Database\Query\SelectInterface File core/lib/Drupal/Core/Entity/Query/Sql/Tables.php, line 18 Class Tables Adds tables and fields to the SQL entity query. Namespace Drupal\Core\Entity\Query\Sql Code protected $sqlQuery;

ReadOnlyException

Exception thrown when trying to write or set ready-only data. Hierarchy class \Drupal\Core\TypedData\Exception\ReadOnlyException extends \Exception File core/lib/Drupal/Core/TypedData/Exception/ReadOnlyException.php, line 8 Namespace Drupal\Core\TypedData\Exception Members