ArgumentsResolver::getReflector

protected ArgumentsResolver::getReflector(callable $callable) Gets a reflector for the access check callable. The access checker may be either a procedural function (in which case the callable is the function name) or a method (in which case the callable is an array of the object and method name). Parameters callable $callable: The callable (either a function or a method). Return value \ReflectionFunctionAbstract The ReflectionMethod or ReflectionFunction to introspect the callable. File core

MenuTreeStorage::loadByProperties

public MenuTreeStorage::loadByProperties(array $properties) Loads multiple plugin definitions from the storage based on properties. Parameters array $properties: The properties to filter by. Return value array An array of menu link definition arrays. Throws \InvalidArgumentException Thrown if an invalid property name is specified in $properties. Overrides MenuTreeStorageInterface::loadByProperties File core/lib/Drupal/Core/Menu/MenuTreeStorage.php, line 643 Class MenuTreeStorage Provide

QueryConditionTrait::compiled

public QueryConditionTrait::compiled() Check whether a condition has been previously compiled. Return value TRUE if the condition has been previously compiled. Overrides ConditionInterface::compiled File core/lib/Drupal/Core/Database/Query/QueryConditionTrait.php, line 95 Class QueryConditionTrait Provides an implementation of ConditionInterface. Namespace Drupal\Core\Database\Query Code public function compiled() { return $this->condition->compiled(); }

InaccessibleMenuLink::getCacheTags

public InaccessibleMenuLink::getCacheTags() The cache tags associated with this object. When this object is modified, these cache tags will be invalidated. Return value string[] A set of cache tags. Overrides MenuLinkBase::getCacheTags File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 61 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function getCacheTags() { return $this->w

Select::orderBy

public Select::orderBy($field, $direction = 'ASC') Orders the result set by a given field. If called multiple times, the query will order by each specified field in the order this method is called. If the query uses DISTINCT or GROUP BY conditions, fields or expressions that are used for the order must be selected to be compatible with some databases like PostgreSQL. The PostgreSQL driver can handle simple cases automatically but it is suggested to explicitly specify them. Additionally, when or

Block::$visibilityCollection

The visibility collection. Type: \Drupal\Core\Condition\ConditionPluginCollection File core/modules/block/src/Entity/Block.php, line 115 Class Block Defines a Block configuration entity class. Namespace Drupal\block\Entity Code protected $visibilityCollection;

UrlGenerator::__construct

public UrlGenerator::__construct(RouteProviderInterface $provider, OutboundPathProcessorInterface $path_processor, OutboundRouteProcessorInterface $route_processor, RequestStack $request_stack, array $filter_protocols = ['http', 'https']) Constructs a new generator object. Parameters \Drupal\Core\Routing\RouteProviderInterface $provider: The route provider to be searched for routes. \Drupal\Core\PathProcessor\OutboundPathProcessorInterface $path_processor: The path processor to convert the sys

TermDeleteForm::getCancelUrl

public TermDeleteForm::getCancelUrl() Returns the route to go to if the user cancels the action. Return value \Drupal\Core\Url A URL object. Overrides ContentEntityDeleteForm::getCancelUrl File core/modules/taxonomy/src/Form/TermDeleteForm.php, line 17 Class TermDeleteForm Provides a deletion confirmation form for taxonomy term. Namespace Drupal\taxonomy\Form Code public function getCancelUrl() { // The cancel URL is the vocabulary collection, terms have no global // list page.

LocaleSettingsForm::submitForm

public LocaleSettingsForm::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides ConfigFormBase::submitForm File core/modules/locale/src/Form/LocaleSettingsForm.php, line 101 Class LocaleSettingsForm Configure locale settings for this site. Namespace Drupal\locale\Form Code public f

ImageEffectInterface::transformDimensions

public ImageEffectInterface::transformDimensions(array &$dimensions, $uri) Determines the dimensions of the styled image. Parameters array &$dimensions: Dimensions to be modified - an array with the following keys: width: the width in pixels, or NULL if unknown height: the height in pixels, or NULL if unknown When either of the dimensions are NULL, the corresponding HTML attribute will be omitted when an image style using this image effect is used. string $uri: Original image file