CompiledRoute::getOptions

public CompiledRoute::getOptions() Returns the options. Return value array The options. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 116 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getOptions() { return $this->route->getOptions(); }

FilterFormatAddForm::form

public FilterFormatAddForm::form(array $form, FormStateInterface $form_state) Gets the actual form array to be built. Overrides FilterFormatFormBase::form See also \Drupal\Core\Entity\EntityForm::processForm() \Drupal\Core\Entity\EntityForm::afterBuild() File core/modules/filter/src/FilterFormatAddForm.php, line 15 Class FilterFormatAddForm Provides a form for adding a filter format. Namespace Drupal\filter Code public function form(array $form, FormStateInterface $form_state) { ret

Drupal::moduleHandler

public static Drupal::moduleHandler() Returns the module handler. Return value \Drupal\Core\Extension\ModuleHandlerInterface File core/lib/Drupal.php, line 470 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function moduleHandler() { return static::getContainer()->get('module_handler'); }

TypeLinkManager

Hierarchy class \Drupal\rest\LinkManager\LinkManagerBaseclass \Drupal\rest\LinkManager\TypeLinkManager implements TypeLinkManagerInterface File core/modules/rest/src/LinkManager/TypeLinkManager.php, line 12 Namespace Drupal\rest\LinkManager Members Name Modifiers Type Description LinkManagerBase::$configFactory protected property Config factory service. LinkManagerBase::$linkDomain protected property Link domain used for type links URIs. LinkManagerBase::$requ

BookExport::$nodeStorage

The node storage. Type: \Drupal\Core\Entity\EntityStorageInterface File core/modules/book/src/BookExport.php, line 20 Class BookExport Provides methods for exporting book to different formats. Namespace Drupal\book Code protected $nodeStorage;

ViewUI::$isUninstalling

Whether the config is being deleted through the uninstall process. Type: bool File core/modules/views_ui/src/ViewUI.php, line 136 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code private $isUninstalling = FALSE;

ViewsCache::$title

The plugin title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsCache.php, line 30 Class ViewsCache Defines a Plugin annotation object for views cache plugins. Namespace Drupal\views\Annotation Code public $title = '';

ConfigFactoryInterface::listAll

public ConfigFactoryInterface::listAll($prefix = '') Gets configuration object names starting with a given prefix. Parameters string $prefix: (optional) The prefix to search for. If omitted, all configuration object names that exist are returned. Return value array An array containing matching configuration object names. See also \Drupal\Core\Config\StorageInterface::listAll() File core/lib/Drupal/Core/Config/ConfigFactoryInterface.php, line 109 Class ConfigFactoryInterface Defines the

Apcu4Backend::getIterator

protected Apcu4Backend::getIterator($search = NULL, $format = APC_ITER_ALL, $chunk_size = 100, $list = APC_LIST_ACTIVE) Return value \APCIterator Overrides ApcuBackend::getIterator File core/lib/Drupal/Core/Cache/Apcu4Backend.php, line 17 Class Apcu4Backend Stores cache items in the Alternative PHP Cache User Cache (APCu). Namespace Drupal\Core\Cache Code protected function getIterator($search = NULL, $format = APC_ITER_ALL, $chunk_size = 100, $list = APC_LIST_ACTIVE) { return new \

FieldItemInterface::postSave

public FieldItemInterface::postSave($update) Defines custom post-save behavior for field values. This method is called during the process of saving an entity, just after values are written into storage. This is useful mostly when the business logic to be implemented always requires the entity identifier, even when storing a new entity. For instance, when implementing circular entity references, the referenced entity will be created on pre-save with a dummy value for the referring entity identif