ModuleInstaller::uninstall

public ModuleInstaller::uninstall(array $module_list, $uninstall_dependents = TRUE) Uninstalls a given list of modules. Parameters string[] $module_list: The modules to uninstall. bool $uninstall_dependents: (optional) If TRUE, dependent modules will automatically be uninstalled in the correct order. This incurs a significant performance cost, so use FALSE if you know $module_list is already complete. Return value bool FALSE if one or more dependencies are missing, TRUE otherwise. Overrides M

ManyToOneHelper::getJoin

public ManyToOneHelper::getJoin() File core/modules/views/src/ManyToOneHelper.php, line 109 Class ManyToOneHelper This many to one helper object is used on both arguments and filters. Namespace Drupal\views Code public function getJoin() { return $this->handler->getJoin(); }

ImageToolkitOperationManagerInterface::getToolkitOperation

public ImageToolkitOperationManagerInterface::getToolkitOperation(ImageToolkitInterface $toolkit, $operation) Returns a toolkit operation plugin instance. Parameters \Drupal\Core\ImageToolkit\ImageToolkitInterface $toolkit: The toolkit instance. string $operation: The operation (e.g. "crop"). Return value \Drupal\Core\ImageToolkit\ImageToolkitOperationInterface An instance of the requested toolkit operation plugin. Throws \Drupal\Component\Plugin\Exception\PluginNotFoundException When no plu

EntityTypeInterface::getConstraints

public EntityTypeInterface::getConstraints() Gets an array of validation constraints. See \Drupal\Core\TypedData\DataDefinitionInterface::getConstraints() for details on how constraints are defined. Return value array[] An array of validation constraint definitions, keyed by constraint name. Each constraint definition can be used for instantiating \Symfony\Component\Validator\Constraint objects. See also \Symfony\Component\Validator\Constraint File core/lib/Drupal/Core/Entity/EntityTypeInterf

ConditionBase::condition

public ConditionBase::condition($field, $value = NULL, $operator = NULL, $langcode = NULL) Adds a condition. Parameters string|\Drupal\Core\Entity\Query\ConditionInterface $field: mixed $value: string $operator: string $langcode: Return value ConditionInterface Overrides ConditionInterface::condition See also \Drupal\Core\Entity\Query\QueryInterface::condition() File core/lib/Drupal/Core/Entity/Query/ConditionBase.php, line 13 Class ConditionBase Defines a common base class for all enti

ActiveLinkResponseFilter::setLinkActiveClass

public static ActiveLinkResponseFilter::setLinkActiveClass($html_markup, $current_path, $is_front, $url_language, array $query) Sets the "is-active" class on relevant links. This is a PHP implementation of the drupal.active-link JavaScript library. @todo Once a future version of PHP supports parsing HTML5 properly (i.e. doesn't fail on https://www.drupal.org/comment/7938201#comment-7938201) then we can get rid of this manual parsing and use DOMDocument instead. Parameters string $html_markup.:

BlockLibraryController::$routeMatch

The route match. Type: \Drupal\Core\Routing\RouteMatchInterface File core/modules/block/src/Controller/BlockLibraryController.php, line 40 Class BlockLibraryController Provides a list of block plugins to be added to the layout. Namespace Drupal\block\Controller Code protected $routeMatch;

EntityType::isSubclassOf

public EntityType::isSubclassOf($class) Indicates if the entity type is a subclass of the given class or interface. Parameters string $class: The class or interface to check. Return value bool TRUE if the entity type is a subclass of the class or interface. Overrides EntityTypeInterface::isSubclassOf File core/lib/Drupal/Core/Entity/EntityType.php, line 428 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public functio

SessionConfiguration::getName

protected SessionConfiguration::getName(Request $request) Returns the session cookie name. Parameters \Symfony\Component\HttpFoundation\Request $request: The request. Return value string The name of the session cookie. File core/lib/Drupal/Core/Session/SessionConfiguration.php, line 65 Class SessionConfiguration Defines the default session configuration generator. Namespace Drupal\Core\Session Code protected function getName(Request $request) { // To prevent session cookies from be

PasswordInterface::PASSWORD_MAX_LENGTH

Maximum password length. File core/lib/Drupal/Core/Password/PasswordInterface.php, line 13 Class PasswordInterface Secure password hashing functions for user authentication. Namespace Drupal\Core\Password Code const PASSWORD_MAX_LENGTH = 512;