RouteProcessorManager::sortProcessors

protected RouteProcessorManager::sortProcessors() Sorts the processors according to priority. File core/lib/Drupal/Core/RouteProcessor/RouteProcessorManager.php, line 73 Class RouteProcessorManager Route processor manager. Namespace Drupal\Core\RouteProcessor Code protected function sortProcessors() { $sorted = array(); krsort($this->outboundProcessors); foreach ($this->outboundProcessors as $processors) { $sorted = array_merge($sorted, $processors); } return $sort

ImageStyleDownloadController::$logger

A logger instance. Type: \Psr\Log\LoggerInterface File core/modules/image/src/Controller/ImageStyleDownloadController.php, line 41 Class ImageStyleDownloadController Defines a controller to serve image styles. Namespace Drupal\image\Controller Code protected $logger;

Schema::fieldExists

public Schema::fieldExists($table, $column) Check if a column exists in the given table. Parameters $table: The name of the table in drupal (no prefixing). $name: The name of the column. Return value TRUE if the given column exists, otherwise FALSE. File core/lib/Drupal/Core/Database/Schema.php, line 244 Class Schema Provides a base implementation for Database Schema. Namespace Drupal\Core\Database Code public function fieldExists($table, $column) { $condition = $this->buildTabl

WordLevelDiff::__construct

public WordLevelDiff::__construct($orig_lines, $closing_lines) Constructor. Computes diff between sequences of strings. This can be used to compute things like case-insensitive diffs, or diffs which ignore changes in white-space. Parameters $from_lines array An array of strings.: (Typically these are lines from a file.) $to_lines array An array of strings.: $mapped_from_lines array This array should: have the same size number of elements as $from_lines. The elements in $mapped_from_lines and $

ConfigMapperInterface::getBaseRouteName

public ConfigMapperInterface::getBaseRouteName() Returns the name of the base route the mapper is attached to. Return value string The name of the base route the mapper is attached to. File core/modules/config_translation/src/ConfigMapperInterface.php, line 36 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getBaseRouteName();

DeleteForm::submitForm

public DeleteForm::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides FormInterface::submitForm File core/modules/forum/src/Form/DeleteForm.php, line 62 Class DeleteForm Builds the form to delete a forum term. Namespace Drupal\forum\Form Code public function submitForm(array &

HWLDFWordAccumulator::NBSP

An iso-8859-x non-breaking space. File core/lib/Drupal/Component/Diff/Engine/HWLDFWordAccumulator.php, line 21 Class HWLDFWordAccumulator @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code const NBSP = ' ';

contextual_contextual_links_view_alter

contextual_contextual_links_view_alter(&$element, $items) Implements hook_contextual_links_view_alter(). See also \Drupal\contextual\Plugin\views\field\ContextualLinks::render() File core/modules/contextual/contextual.module, line 147 Adds contextual links to perform actions related to elements on a page. Code function contextual_contextual_links_view_alter(&$element, $items) { if (isset($element['#contextual_links']['contextual'])) { $encoded_links = $element['#contextual_link

NullRouteMatch::getRawParameters

public NullRouteMatch::getRawParameters() Returns the bag of all raw route parameters. Return value \Symfony\Component\HttpFoundation\ParameterBag The parameter bag. Overrides RouteMatchInterface::getRawParameters See also \Drupal\Core\Routing\RouteMatchInterface::getParameters() File core/lib/Drupal/Core/Routing/NullRouteMatch.php, line 50 Class NullRouteMatch Stub implementation of RouteMatchInterface for when there's no matched route. Namespace Drupal\Core\Routing Code public func

HWLDFWordAccumulator::_flushGroup

protected HWLDFWordAccumulator::_flushGroup($new_tag) File core/lib/Drupal/Component/Diff/Engine/HWLDFWordAccumulator.php, line 31 Class HWLDFWordAccumulator @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code protected function _flushGroup($new_tag) { if ($this->group !== '') { if ($this->tag == 'mark') { $this->line = $this->line . '<span class="diffchange">' . $this->group . '</span>'; } else