PrimitiveInterface::getCastedValue

public PrimitiveInterface::getCastedValue() Gets the primitive data value casted to the correct PHP type. Return value mixed File core/lib/Drupal/Core/TypedData/PrimitiveInterface.php, line 33 Class PrimitiveInterface Interface for primitive data. Namespace Drupal\Core\TypedData Code public function getCastedValue();

PrimitiveInterface

Interface for primitive data. Hierarchy interface \Drupal\Core\TypedData\PrimitiveInterface Related topics Typed Data API API for describing data based on a set of available data types. File core/lib/Drupal/Core/TypedData/PrimitiveInterface.php, line 10 Namespace Drupal\Core\TypedData Members Name Modifiers Type Description PrimitiveInterface::getCastedValue public function Gets the primitive data value casted to the correct PHP type. PrimitiveInterface::getValue p

PrependCommand::render

public PrependCommand::render() Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides InsertCommand::render File core/lib/Drupal/Core/Ajax/PrependCommand.php, line 24 Class PrependCommand AJAX command for calling the jQuery insert() method. Namespace Drupal\Core\Ajax Code public function render() { return array( 'command' => 'insert', 'method' => 'prepend', 'selector' => $this->selector, 'data' => $this->getRenderedContent(), 'setting

PrependCommand

AJAX command for calling the jQuery insert() method. The 'insert/prepend' command instructs the client to use jQuery's prepend() method to prepend the given HTML content to the inside each element matched by the given selector. This command is implemented by Drupal.AjaxCommands.prototype.insert() defined in misc/ajax.js. Hierarchy class \Drupal\Core\Ajax\InsertCommand implements CommandInterface, CommandWithAttachedAssetsInterface uses CommandWithAttachedAssetsTraitclass \Drupal\Core\Ajax\Prepe

PreloadableRouteProviderInterface::preLoadRoutes

public PreloadableRouteProviderInterface::preLoadRoutes($names) Pre-load routes by their names using the provided list of names. This method exists in order to allow performance optimizations. It allows pre-loading serialized routes that may latter be retrieved using ::getRoutesByName() Parameters string[] $names: Array of route names to load. File core/lib/Drupal/Core/Routing/PreloadableRouteProviderInterface.php, line 20 Class PreloadableRouteProviderInterface Extends the router provide

PreloadableRouteProviderInterface

Extends the router provider interface to pre-load routes. Hierarchy interface \Symfony\Cmf\Component\Routing\RouteProviderInterfaceinterface \Drupal\Core\Routing\RouteProviderInterfaceinterface \Drupal\Core\Routing\PreloadableRouteProviderInterface File core/lib/Drupal/Core/Routing/PreloadableRouteProviderInterface.php, line 8 Namespace Drupal\Core\Routing Members Name Modifiers Type Description PreloadableRouteProviderInterface::preLoadRoutes public function Pre-load

PREG_CLASS_PUNCTUATION

Matches all 'P' Unicode character classes (punctuation) File core/modules/search/search.module, line 31 Enables site-wide keyword searching. Code define('PREG_CLASS_PUNCTUATION', '\x{21}-\x{23}\x{25}-\x{2a}\x{2c}-\x{2f}\x{3a}\x{3b}\x{3f}\x{40}\x{5b}-\x{5d}' . '\x{5f}\x{7b}\x{7d}\x{a1}\x{ab}\x{b7}\x{bb}\x{bf}\x{37e}\x{387}\x{55a}-\x{55f}' . '\x{589}\x{58a}\x{5be}\x{5c0}\x{5c3}\x{5f3}\x{5f4}\x{60c}\x{60d}\x{61b}\x{61f}' . '\x{66a}-\x{66d}\x{6d4}\x{700}-\x{70d}\x{964}\x{965}\x{970}\x{df4}

PREG_CLASS_NUMBERS

Matches all 'N' Unicode character classes (numbers) File core/modules/search/search.module, line 17 Enables site-wide keyword searching. Code define('PREG_CLASS_NUMBERS', '\x{30}-\x{39}\x{b2}\x{b3}\x{b9}\x{bc}-\x{be}\x{660}-\x{669}\x{6f0}-\x{6f9}' . '\x{966}-\x{96f}\x{9e6}-\x{9ef}\x{9f4}-\x{9f9}\x{a66}-\x{a6f}\x{ae6}-\x{aef}' . '\x{b66}-\x{b6f}\x{be7}-\x{bf2}\x{c66}-\x{c6f}\x{ce6}-\x{cef}\x{d66}-\x{d6f}' . '\x{e50}-\x{e59}\x{ed0}-\x{ed9}\x{f20}-\x{f33}\x{1040}-\x{1049}\x{1369}-' . '\

PREG_CLASS_CJK

Matches CJK (Chinese, Japanese, Korean) letter-like characters. This list is derived from the "East Asian Scripts" section of http://www.unicode.org/charts/index.html, as well as a comment on http://unicode.org/reports/tr11/tr11-11.html listing some character ranges that are reserved for additional CJK ideographs. The character ranges do not include numbers, punctuation, or symbols, since these are handled separately in search. Note that radicals and strokes are considered symbols. (See http://

PreExistingConfigException::getExtension

public PreExistingConfigException::getExtension() Gets the name of the extension that is being installed. Return value string The name of the extension that is being installed. File core/lib/Drupal/Core/Config/PreExistingConfigException.php, line 43 Class PreExistingConfigException An exception thrown if configuration with the same name already exists. Namespace Drupal\Core\Config Code public function getExtension() { return $this->extension; }