Search for all

  1. Search 7.x for all
  2. Search 8.9.x for all
  3. Search 10.3.x for all
  4. Search 11.x for all
  5. Search main for all
  6. Other projects
Title Object type File name Summary
forum_uri function core/modules/forum/forum.module Entity URI callback used in forum_entity_bundle_info_alter().
forum_views_data function core/modules/forum/forum.views.inc Implements hook_views_data().
fourcol_section.css file core/themes/stable9/layouts/layout_builder/fourcol_section/fourcol_section.css /*
* @file
* Provides the layout styles for four-column layout section.
*/

.layout--fourcol-section {
display: flex;
flex-wrap: wrap;
}

.layout--fourcol-section > .layout__region {
flex: 0 1 100%;
}

@media screen and (min-width: 40em)…
fourcol_section.css file core/themes/stable/layouts/fourcol_section/fourcol_section.css /*
* @file
* Provides the layout styles for four-column layout section.
*/

.layout--fourcol-section {
display: flex;
flex-wrap: wrap;
}

.layout--fourcol-section > .layout__region {
flex: 0 1 100%;
}

@media screen and (min-width: 40em)…
fourcol_section.css file core/profiles/demo_umami/themes/umami/layouts/fourcol_section/fourcol_section.css /*
* @file
* Provides the layout styles for four-column layout section.
*/

.layout--fourcol-section {
display: flex;
flex-wrap: wrap;
}

.layout--fourcol-section > .layout__region {
flex: 0 1 100%;
}
/* Medium */
@media screen and…
fourcol_section.css file core/modules/layout_builder/layouts/fourcol_section/fourcol_section.css /*
* @file
* Provides the layout styles for four-column layout section.
*/

.layout--fourcol-section {
display: flex;
flex-wrap: wrap;
}

.layout--fourcol-section > .layout__region {
flex: 0 1 100%;
}

@media screen and (min-width: 40em)…
FrameworkTest class core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Performs tests on AJAX framework functions.
FrameworkTest class core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php Tests the off-canvas dialog functionality.
FrameworkTest.php file core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php
FrameworkTest.php file core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php
FrameworkTest::$defaultTheme property core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php The theme to install as the default for testing.
FrameworkTest::$defaultTheme property core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php The theme to install as the default for testing.
FrameworkTest::$modules property core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php Modules to enable.
FrameworkTest::$modules property core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Modules to enable.
FrameworkTest::assertCommand function core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Asserts the array of Ajax commands contains the searched command.
FrameworkTest::drupalGetAjax function core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Requests a path or URL in drupal_ajax format and JSON-decodes the response.
FrameworkTest::testAJAXRender function core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Verifies the Ajax rendering of a command in the settings.
FrameworkTest::testAJAXRenderError function core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Tests the behavior of an error alert command.
FrameworkTest::testCurrentPathChange function core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php Tests that drupalSettings.currentPath is not updated on AJAX requests.
FrameworkTest::testLazyLoad function core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php Tests that new JavaScript and CSS files are lazy-loaded on an AJAX request.
FrameworkTest::testLazyLoadOverriddenCSS function core/modules/system/tests/src/FunctionalJavascript/FrameworkTest.php Tests that overridden CSS files are not added during lazy load.
FrameworkTest::testOrder function core/modules/system/tests/src/Functional/Ajax/FrameworkTest.php Tests AjaxResponse::prepare() AJAX commands ordering.
FrontMatter class core/lib/Drupal/Component/FrontMatter/FrontMatter.php Component for parsing front matter from a source.
FrontMatter.php file core/lib/Drupal/Component/FrontMatter/FrontMatter.php
FrontMatter::$parsed property core/lib/Drupal/Component/FrontMatter/FrontMatter.php The parsed source.
FrontMatter::$serializer property core/lib/Drupal/Component/FrontMatter/FrontMatter.php A serializer.
FrontMatter::$source property core/lib/Drupal/Component/FrontMatter/FrontMatter.php The source.
FrontMatter::create function core/lib/Drupal/Component/FrontMatter/FrontMatter.php Creates a new FrontMatter instance.
FrontMatter::getContent function core/lib/Drupal/Component/FrontMatter/FrontMatter.php Retrieves the extracted source content.
FrontMatter::getData function core/lib/Drupal/Component/FrontMatter/FrontMatter.php Retrieves the extracted front matter data.
FrontMatter::getLine function core/lib/Drupal/Component/FrontMatter/FrontMatter.php Retrieves the line where the source content starts, after any data.
FrontMatter::parse function core/lib/Drupal/Component/FrontMatter/FrontMatter.php Parses the source.
FrontMatter::REGEXP constant core/lib/Drupal/Component/FrontMatter/FrontMatter.php The regular expression used to extract the YAML front matter content.
FrontMatter::SEPARATOR constant core/lib/Drupal/Component/FrontMatter/FrontMatter.php The separator used to indicate front matter data.
FrontMatter::__construct function core/lib/Drupal/Component/FrontMatter/FrontMatter.php FrontMatter constructor.
FrontMatterParseException class core/lib/Drupal/Component/FrontMatter/Exception/FrontMatterParseException.php Defines a class for front matter parsing exceptions.
FrontMatterParseException.php file core/lib/Drupal/Component/FrontMatter/Exception/FrontMatterParseException.php
FrontMatterParseException::$sourceLine property core/lib/Drupal/Component/FrontMatter/Exception/FrontMatterParseException.php The line number of where the parse error occurred.
FrontMatterParseException::getSourceLine function core/lib/Drupal/Component/FrontMatter/Exception/FrontMatterParseException.php Retrieves the line number where the parse error occurred.
FrontMatterParseException::__construct function core/lib/Drupal/Component/FrontMatter/Exception/FrontMatterParseException.php Constructs a new FrontMatterParseException instance.
FrontMatterTest class core/tests/Drupal/Tests/Component/FrontMatter/FrontMatterTest.php Tests front matter parsing helper methods.
FrontMatterTest class core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php Tests Twig front matter support.
FrontMatterTest.php file core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php
FrontMatterTest.php file core/tests/Drupal/Tests/Component/FrontMatter/FrontMatterTest.php
FrontMatterTest::$twig property core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php Twig service.
FrontMatterTest::BROKEN_SOURCE constant core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php A broken source.
FrontMatterTest::createFrontMatterSource function core/tests/Drupal/Tests/Component/FrontMatter/FrontMatterTest.php Creates a front matter source string.
FrontMatterTest::createTwigTemplate function core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php Creates a new temporary Twig file.
FrontMatterTest::providerFrontMatterData function core/tests/Drupal/Tests/Component/FrontMatter/FrontMatterTest.php Provides the front matter data to test.
FrontMatterTest::register function core/tests/Drupal/KernelTests/Core/Theme/FrontMatterTest.php Registers test-specific services.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.