PathMatcher::$frontPage

The default front page. Type: string File core/lib/Drupal/Core/Path/PathMatcher.php, line 26 Class PathMatcher Provides a path matcher. Namespace Drupal\Core\Path Code protected $frontPage;

DatabaseLockBackend::TABLE_NAME

The database table name. File core/lib/Drupal/Core/Lock/DatabaseLockBackend.php, line 19 Class DatabaseLockBackend Defines the database lock backend. This is the default backend in Drupal. Namespace Drupal\Core\Lock Code const TABLE_NAME = 'semaphore';

radios.html.twig

Default theme implementation for a 'radios' #type form element. Available variables attributes: A list of HTML attributes for the wrapper element. children: The rendered radios. See also template_preprocess_radios() File core/modules/system/templates/radios.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

views_ui_view_preview_section_display_category_links

views_ui_view_preview_section_display_category_links(ViewExecutable $view, $type, $title) Returns a link to editing a certain display setting. File core/modules/views_ui/views_ui.module, line 186 Provide structure for the administrative interface to Views. Code function views_ui_view_preview_section_display_category_links(ViewExecutable $view, $type, $title) { $display = $view->display_handler->display; $links = array( $type . '-edit' => array( 'title' => t('Edit @se

ThemeInitialization::$root

The app root. Type: string File core/lib/Drupal/Core/Theme/ThemeInitialization.php, line 34 Class ThemeInitialization Provides the theme initialization logic. Namespace Drupal\Core\Theme Code protected $root;

FieldDefinitionInterface::getConfig

public FieldDefinitionInterface::getConfig($bundle) Gets an object that can be saved in configuration. Base fields are defined in code. In order to configure field definition properties per bundle use this method to create an override that can be saved in configuration. Parameters string $bundle: The bundle to get the configurable field for. Return value \Drupal\Core\Field\FieldConfigInterface See also \Drupal\Core\Field\Entity\BaseFieldBundleOverride File core/lib/Drupal/Core/Field/FieldDef

HtmlResponseAttachmentsProcessor::processHtmlHead

protected HtmlResponseAttachmentsProcessor::processHtmlHead(array $html_head) Ensure proper key/data order and defaults for renderable head items. Parameters array $html_head: The ['#attached']['html_head'] portion of a render array. Return value array The ['#attached']['html_head'] portion of a render array with #type of html_tag added for items without a #type. File core/lib/Drupal/Core/Render/HtmlResponseAttachmentsProcessor.php, line 372 Class HtmlResponseAttachmentsProcessor Process

EntityDisplayBase::$displayContext

Context in which this entity will be used (e.g. 'display', 'form'). Type: string File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 101 Class EntityDisplayBase Provides a common base class for entity view and form displays. Namespace Drupal\Core\Entity Code protected $displayContext;

rdf_comment_storage_load

rdf_comment_storage_load($comments) Implements hook_ENTITY_TYPE_storage_load() for comment entities. File core/modules/rdf/rdf.module, line 229 Enables semantically enriched output for Drupal sites in the form of RDFa. Code function rdf_comment_storage_load($comments) { foreach ($comments as $comment) { // Pages with many comments can show poor performance. This information // isn't needed until rdf_preprocess_comment() is called, but set it here // to optimize performance for w

menu_link_content_path_insert

menu_link_content_path_insert($path) Implements hook_path_insert(). File core/modules/menu_link_content/menu_link_content.module, line 43 Allows administrators to create custom menu links. Code function menu_link_content_path_insert($path) { _menu_link_content_update_path_alias($path['alias']); }