outside_in_block_alter

outside_in_block_alter(&$definitions) Implements hook_block_alter(). File core/modules/outside_in/outside_in.module, line 131 Allows configuring blocks and other configuration from the site front-end. Code function outside_in_block_alter(&$definitions) { if (!empty($definitions['system_branding_block'])) { $definitions['system_branding_block']['forms']['offcanvas'] = SystemBrandingOffCanvasForm::class; } // Since menu blocks use derivatives, check the definition ID instead

outside_in.module

Allows configuring blocks and other configuration from the site front-end. File core/modules/outside_in/outside_in.module Functions Name Description outside_in_block_alter Implements hook_block_alter(). outside_in_block_view_alter Implements hook_block_view_alter(). outside_in_contextual_links_view_alter Implements hook_contextual_links_view_alter(). outside_in_css_alter Implements hook_css_alter(). outside_in_element_info_alter Implements hook_element_info_alter().

outside-in-page-wrapper.html.twig

Default theme implementation for a page wrapper. For consistent wrapping to {{ page }} render in all themes. Available variables: children: Contains the child elements of the page. File core/modules/outside_in/templates/outside-in-page-wrapper.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

OutputStrategyInterface::renderFromHtml

public static OutputStrategyInterface::renderFromHtml($string) Transforms a given HTML string into to a context-appropriate output string. This transformation consists of performing the formatting appropriate to a given output context (e.g., plain-text email subjects, HTML attribute values). Parameters string|object $string: An HTML string or an object with a ::__toString() magic method returning HTML markup. The source HTML markup is considered ready for output into HTML fragments and thus al

OutputStrategyInterface

Provides an output strategy that formats HTML strings for a given context. Output strategies assist in transforming HTML strings into strings that are appropriate for a given context (e.g. plain-text), through performing the relevant formatting. No sanitization is applied. Hierarchy interface \Drupal\Component\Render\OutputStrategyInterface File core/lib/Drupal/Component/Render/OutputStrategyInterface.php, line 12 Namespace Drupal\Component\Render Members Name Modifiers Type Des

OutboundRouteProcessorInterface::processOutbound

public OutboundRouteProcessorInterface::processOutbound($route_name, Route $route, array &$parameters, BubbleableMetadata $bubbleable_metadata = NULL) Processes the outbound route. Parameters string $route_name: The route name. \Symfony\Component\Routing\Route $route: The outbound route to process. array $parameters: An array of parameters to be passed to the route compiler. Passed by reference. \Drupal\Core\Render\BubbleableMetadata $bubbleable_metadata: (optional) Object to collect route

OutboundRouteProcessorInterface

Defines an interface for classes that process the outbound route. Hierarchy interface \Drupal\Core\RouteProcessor\OutboundRouteProcessorInterface File core/lib/Drupal/Core/RouteProcessor/OutboundRouteProcessorInterface.php, line 11 Namespace Drupal\Core\RouteProcessor Members Name Modifiers Type Description OutboundRouteProcessorInterface::processOutbound public function Processes the outbound route.

OutboundPathProcessorInterface::processOutbound

public OutboundPathProcessorInterface::processOutbound($path, &$options = array(), Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) Processes the outbound path. Parameters string $path: The path to process, with a leading slash. array $options: (optional) An associative array of additional options, with the following elements: 'query': An array of query key/value-pairs (without any URL-encoding) to append to the URL. 'fragment': A fragment identifier (named anchor

OutboundPathProcessorInterface

Defines an interface for classes that process the outbound path. Hierarchy interface \Drupal\Core\PathProcessor\OutboundPathProcessorInterface File core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php, line 11 Namespace Drupal\Core\PathProcessor Members Name Modifiers Type Description OutboundPathProcessorInterface::processOutbound public function Processes the outbound path.

options_help

options_help($route_name, RouteMatchInterface $route_match) Implements hook_help(). File core/modules/options/options.module, line 17 Defines selection, check box and radio button widgets for text and numeric fields. Code function options_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.options': $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t('The Options module allows you to cr