details.html.twig

Default theme implementation for a details element. Available variables attributes: A list of HTML attributes for the details element. errors: (optional) Any errors for this details element, may not be set. title: (optional) The title of the element, may not be set. description: (optional) The description of the element, may not be set. children: (optional) The children of the element, may not be set. value: (optional) The value of the element, may not be set. See also template_preproc

AccessManagerInterface

Provides an interface for attaching and running access check services. Hierarchy interface \Drupal\Core\Access\AccessManagerInterface File core/lib/Drupal/Core/Access/AccessManagerInterface.php, line 12 Namespace Drupal\Core\Access Members Name Modifiers Type Description AccessManagerInterface::check public function Checks a route against applicable access check services. AccessManagerInterface::checkNamedRoute public function Checks a named route with parameters

ViewExecutable::$sort

Stores the sort handlers which are initialized on this view. Type: \Drupal\views\Plugin\views\sort\SortPluginBase[] File core/modules/views/src/ViewExecutable.php, line 276 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $sort;

Local::createDirectoryJailed

protected Local::createDirectoryJailed($directory) Creates a directory. Parameters string $directory: The directory to be created. Overrides FileTransfer::createDirectoryJailed File core/lib/Drupal/Core/FileTransfer/Local.php, line 36 Class Local Defines the local connection class for copying files as the httpd user. Namespace Drupal\Core\FileTransfer Code protected function createDirectoryJailed($directory) { if (!is_dir($directory) && @!mkdir($directory, 0777, TRUE)) {

ShortcutAccessControlHandler::checkCreateAccess

protected ShortcutAccessControlHandler::checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) Performs create access checks. This method is supposed to be overwritten by extending classes that do their own custom access checking. Parameters \Drupal\Core\Session\AccountInterface $account: The user for which to check access. array $context: An array of key-value pairs to pass additional context when needed. string|null $entity_bundle: (optional) The bundle of the en

Views::executableFactory

public static Views::executableFactory() Returns the view executable factory service. Return value \Drupal\views\ViewExecutableFactory Returns a views executable factory. File core/modules/views/src/Views.php, line 77 Class Views Static service container wrapper for views. Namespace Drupal\views Code public static function executableFactory() { return \Drupal::service('views.executable'); }

ImageStyleEditForm::create

public static ImageStyleEditForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The servi

Select::__construct

public Select::__construct($table, $alias = NULL, Connection $connection, $options = array()) Constructs a Select object. Parameters string $table: The name of the table that is being queried. string $alias: The alias for the table. \Drupal\Core\Database\Connection $connection: Database connection object. array $options: Array of query options. Overrides Query::__construct File core/lib/Drupal/Core/Database/Query/Select.php, line 132 Class Select Query builder for SELECT statements. Nam

ConfigTranslationController::__construct

public ConfigTranslationController::__construct(ConfigMapperManagerInterface $config_mapper_manager, AccessManagerInterface $access_manager, RequestMatcherInterface $router, InboundPathProcessorInterface $path_processor, AccountInterface $account, LanguageManagerInterface $language_manager, RendererInterface $renderer) Constructs a ConfigTranslationController. Parameters \Drupal\config_translation\ConfigMapperManagerInterface $config_mapper_manager: The configuration mapper manager. \Drupal\Co

CalculatedCacheContextInterface

Provides an interface for defining a calculated cache context service. Hierarchy interface \Drupal\Core\Cache\Context\CalculatedCacheContextInterface File core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php, line 8 Namespace Drupal\Core\Cache\Context Members Name Modifiers Type Description CalculatedCacheContextInterface::getCacheableMetadata public function Gets the cacheability metadata for the context based on the parameter value. CalculatedCacheC