CronInterface::run

public CronInterface::run() Executes a cron run. Do not call this function from a test. Use $this->cronRun() instead. Return value bool TRUE upon success, FALSE otherwise. File core/lib/Drupal/Core/CronInterface.php, line 20 Class CronInterface An interface for running cron tasks. Namespace Drupal\Core Code public function run();

Url::$internalPath

Stores the internal path, if already requested by getInternalPath(). Type: string File core/lib/Drupal/Core/Url.php, line 92 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code protected $internalPath;

EntityOperations::__construct

public EntityOperations::__construct(ModerationInformationInterface $moderation_info, EntityTypeManagerInterface $entity_type_manager, FormBuilderInterface $form_builder, RevisionTrackerInterface $tracker) Constructs a new EntityOperations object. Parameters \Drupal\content_moderation\ModerationInformationInterface $moderation_info: Moderation information service. \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity type manager service. \Drupal\Core\Form\FormBuilderInte

EntityDisplayModeListBuilder::createInstance

public static EntityDisplayModeListBuilder::createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) Instantiates a new instance of this entity handler. This is a factory method that returns a new instance of this object. The factory should pass any needed dependencies into the constructor of this object, but not the container itself. Every call to this method must return a new instance of this object; that is, it may not implement a singleton. Parameters \Symfony\Compon

LocaleLookup::$stringStorage

The locale storage. Type: \Drupal\locale\StringStorageInterface File core/modules/locale/src/LocaleLookup.php, line 36 Class LocaleLookup A cache collector to allow for dynamic building of the locale cache. Namespace Drupal\locale Code protected $stringStorage;

AjaxResponseAttachmentsProcessor::$config

A config object for the system performance configuration. Type: \Drupal\Core\Config\Config File core/lib/Drupal/Core/Ajax/AjaxResponseAttachmentsProcessor.php, line 36 Class AjaxResponseAttachmentsProcessor Processes attachments of AJAX responses. Namespace Drupal\Core\Ajax Code protected $config;

AnnotationBase::$provider

The provider of the annotated class. Type: string File core/lib/Drupal/Component/Annotation/AnnotationBase.php, line 29 Class AnnotationBase Provides a base class for classed annotations. Namespace Drupal\Component\Annotation Code protected $provider;

ViewsData::$baseCid

The base cache ID to use. Type: string File core/modules/views/src/ViewsData.php, line 27 Class ViewsData Class to manage and lazy load cached views data. Namespace Drupal\views Code protected $baseCid = 'views_data';

FormBuilder::setInvalidTokenError

public FormBuilder::setInvalidTokenError(FormStateInterface $form_state) Sets a form_token error on the given form state. Parameters \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value $this Overrides FormValidatorInterface::setInvalidTokenError File core/lib/Drupal/Core/Form/FormBuilder.php, line 850 Class FormBuilder Provides form building and processing. Namespace Drupal\Core\Form Code public function setInvalidTokenError(FormStateInterfac

WidgetBase::getWidgetStateParents

protected static WidgetBase::getWidgetStateParents(array $parents, $field_name) Returns the location of processing information within $form_state. Parameters array $parents: The array of #parents where the widget lives in the form. string $field_name: The field name. Return value array The location of processing information within $form_state. File core/lib/Drupal/Core/Field/WidgetBase.php, line 474 Class WidgetBase Base class for 'Field widget' plugin implementations. Namespace Drupa