SearchPageRepositoryInterface::clearDefaultSearchPage

public SearchPageRepositoryInterface::clearDefaultSearchPage() Clears the default search page. File core/modules/search/src/SearchPageRepositoryInterface.php, line 55 Class SearchPageRepositoryInterface Provides the interface for a repository Search Page entities. Namespace Drupal\search Code public function clearDefaultSearchPage();

EntityController::addBundleTitle

public EntityController::addBundleTitle(RouteMatchInterface $route_match, $entity_type_id, $bundle_parameter) Provides a generic add title callback for entities with bundles. Parameters \Drupal\Core\Routing\RouteMatchInterface $route_match: The route match. string $entity_type_id: The entity type ID. string $bundle_parameter: The name of the route parameter that holds the bundle. Return value string The title for the entity add page, if the bundle was found. File core/lib/Drupal/Core/Entity/C

EntityRepository

Provides several mechanisms for retrieving entities. Hierarchy class \Drupal\Core\Entity\EntityRepository implements EntityRepositoryInterface File core/lib/Drupal/Core/Entity/EntityRepository.php, line 13 Namespace Drupal\Core\Entity Members Name Modifiers Type Description EntityRepository::$entityTypeManager protected property The entity type manager. EntityRepository::$languageManager protected property The language manager. EntityRepository::getTranslationF

ConfigImporter::processConfigurations

protected ConfigImporter::processConfigurations(&$context) Processes configuration as a batch operation. Parameters array|\ArrayAccess $context.: The batch context. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 568 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function processConfigurations(&$context) { // The first time this is called we need to calculate the total to process. // This involves recalculating

ArgumentsResolver::$wildcards

An array object candidates tried on every parameter regardless of name. Type: array File core/lib/Drupal/Component/Utility/ArgumentsResolver.php, line 29 Class ArgumentsResolver Resolves the arguments to pass to a callable. Namespace Drupal\Component\Utility Code protected $wildcards;

PathProcessorAlias::__construct

public PathProcessorAlias::__construct(AliasManagerInterface $alias_manager) Constructs a PathProcessorAlias object. Parameters \Drupal\Core\Path\AliasManagerInterface $alias_manager: An alias manager for looking up the system path. File core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php, line 27 Class PathProcessorAlias Processes the inbound path using path alias lookups. Namespace Drupal\Core\PathProcessor Code public function __construct(AliasManagerInterface $alias_manager)

FileTranslation

File based string translation. Translates a string when some systems are not available. Used during the install process, when database, theme, and localization system is possibly not yet available. Hierarchy class \Drupal\Core\StringTranslation\Translator\StaticTranslation implements TranslatorInterfaceclass \Drupal\Core\StringTranslation\Translator\FileTranslation File core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php, line 16 Namespace Drupal\Core\StringTranslation

Drupal::translation

public static Drupal::translation() Returns the string translation service. Return value \Drupal\Core\StringTranslation\TranslationManager The string translation manager. File core/lib/Drupal.php, line 591 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function translation() { return static::getContainer()->get('string_translation'); }

ConfigBase::castSafeStrings

protected ConfigBase::castSafeStrings($data) Casts any objects that implement MarkupInterface to string. Parameters mixed $data: The configuration data. Return value mixed The data with any safe strings cast to string. File core/lib/Drupal/Core/Config/ConfigBase.php, line 284 Class ConfigBase Provides a base class for configuration objects with get/set support. Namespace Drupal\Core\Config Code protected function castSafeStrings($data) { if ($data instanceof MarkupInterface) {

ConfigInstaller::$eventDispatcher

The event dispatcher. Type: \Symfony\Component\EventDispatcher\EventDispatcherInterface File core/lib/Drupal/Core/Config/ConfigInstaller.php, line 47 Class ConfigInstaller Namespace Drupal\Core\Config Code protected $eventDispatcher;