Skip to content
Snippets Groups Projects
Commit 6657024f authored by quietone's avatar quietone
Browse files

Merge branch '3420570-misspellings-in-schema' into '11.x'

Resolve #3420570 "Misspellings in schema"

See merge request !6534
parents efc9e257 956ad0bf
No related branches found
No related tags found
No related merge requests found
Pipeline #413148 failed
Pipeline: drupal

#413158

    Showing
    with 34 additions and 28 deletions
    ......@@ -140,7 +140,7 @@ public function sortAggregate($field, $function, $direction = 'ASC', $langcode =
    * $result = $query
    * ->aggregate('nid', 'count')
    * ->condition('status', 1)
    * ->groupby('type')
    * ->groupBy('type')
    * ->execute();
    * @endcode
    * Will return:
    ......
    ......@@ -94,7 +94,7 @@ protected function compileAggregate() {
    }
    /**
    * Adds the groupby values to the actual query.
    * Adds the group by values to the actual query.
    *
    * @return $this
    * Returns the called object.
    ......
    ......@@ -11,7 +11,6 @@ ajaxing
    allwords
    alphadecimal
    ampm
    anyall
    archiver
    archivers
    arrowrefresh
    ......@@ -31,7 +30,6 @@ autoloaders
    autoloading
    autop
    autoplace
    autoplay
    autoreply
    autosubmit
    backlink
    ......@@ -122,7 +120,6 @@ csslintrc
    csstools
    cweagans
    datelist
    daterange
    datestamp
    datetimeiso
    dburl
    ......@@ -186,7 +183,6 @@ favstar
    fcgi
    fdiv
    fieldapi
    fieldblock
    fieldgroup
    fieldgroups
    fieldnames
    ......@@ -208,7 +204,6 @@ français
    fraîche
    frontpage
    fudgy
    fulldate
    fulltext
    gabilondo
    gids
    ......@@ -216,8 +211,6 @@ gloop
    greeking
    gripsmall
    groupable
    groupby
    groupwise
    guzzlehttp
    hande
    hateoas
    ......@@ -246,7 +239,6 @@ introspectable
    invalidators
    invokable
    isam
    itok
    javascripts
    jessebeach
    jqueryui
    ......@@ -386,10 +378,8 @@ prepopulate
    prepopulates
    prepopulating
    prepopulation
    prerender
    prerendered
    presave
    pretransaction
    preuninstall
    prophesize
    protossl
    ......@@ -445,7 +435,6 @@ shorterthan
    shortlink
    singlebyte
    sirbrillig
    sitename
    sitewide
    slatkin
    smacss
    ......@@ -562,7 +551,6 @@ unindexed
    uninstallations
    unminified
    unmoderated
    unpromote
    unpublishing
    unrouted
    unsanitized
    ......@@ -571,7 +559,6 @@ unserialized
    unserializes
    unserializing
    unsets
    unsticky
    untabbable
    upcasted
    upcasting
    ......
    bartik
    bubbleable
    buytaert
    daterange
    dbtng
    dependee
    dependee's
    ......@@ -17,6 +18,8 @@ druplicon
    drush
    fapi
    fieldable
    groupwise
    itok
    jswebassert
    keyvalue
    langcode
    ......@@ -26,10 +29,14 @@ mulrev
    mulrevpub
    olivero
    olivero's
    prerender
    renderable
    revlog
    revpub
    simpletest
    sitename
    tempstore
    umami
    unpromote
    unsticky
    validatable
    ......@@ -5,7 +5,7 @@
    use Drupal\Core\Entity\ContentEntityInterface;
    use Drupal\views\EntityViewsData;
    // cspell:ignore fulldata
    // cspell:ignore fulldate
    /**
    * Provides views data for the comment entity type.
    ......@@ -39,7 +39,7 @@ public function getViewsData() {
    $data['comment_field_data']['created']['title'] = $this->t('Post date');
    $data['comment_field_data']['created']['help'] = $this->t('Date and time of when the comment was created.');
    $data['comment_field_data']['created_fulldata'] = [
    $data['comment_field_data']['created_fulldate'] = [
    'title' => $this->t('Created date'),
    'help' => $this->t('Date in the form of CCYYMMDD.'),
    'argument' => [
    ......@@ -96,7 +96,7 @@ public function getViewsData() {
    $data['comment_field_data']['changed']['title'] = $this->t('Updated date');
    $data['comment_field_data']['changed']['help'] = $this->t('Date and time of when the comment was last updated.');
    $data['comment_field_data']['changed_fulldata'] = [
    $data['comment_field_data']['changed_fulldate'] = [
    'title' => $this->t('Changed date'),
    'help' => $this->t('Date in the form of CCYYMMDD.'),
    'argument' => [
    ......
    # Schema for the configuration files of the File module.
    # cspell:ignore autoplay
    file.settings:
    type: config_object
    ......
    # cspell:ignore itok
    preview_image: core/modules/image/sample.png
    allow_insecure_derivatives: false
    suppress_itok_output: false
    # Schema for configuration files of the Image module.
    # cspell:ignore itok
    image.style.*:
    type: config_entity
    ......
    ......@@ -6,6 +6,8 @@
    use Drupal\image\Entity\ImageStyle;
    // cspell:ignore itok
    /**
    * The name of the query parameter for image derivative tokens.
    */
    ......
    # cspell:ignore itok
    id: d7_image_settings
    label: Image configuration
    migration_tags:
    ......
    ......@@ -31,6 +31,8 @@
    use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
    use Drupal\Core\Entity\Entity\EntityViewDisplay;
    // cspell:ignore itok
    /**
    * Defines an image style configuration entity.
    */
    ......
    ......@@ -10,6 +10,8 @@
    use Drupal\image\Entity\ImageStyle;
    use Drupal\Tests\BrowserTestBase;
    // cspell:ignore itok
    /**
    * Tests access control for downloading image styles.
    *
    ......
    ......@@ -12,6 +12,8 @@
    use Drupal\Tests\BrowserTestBase;
    use Drupal\Tests\TestFileCreationTrait;
    // cspell:ignore itok
    /**
    * Tests the functions for generating paths and URLs for image styles.
    *
    ......
    # See \Drupal\layout_builder_fieldblock_test\Plugin\Block\FieldBlock.
    # See \Drupal\layout_builder_field_block_test\Plugin\Block\FieldBlock.
    block.settings.field_block_test:*:*:*:
    type: block.settings.field_block:*:*:*
    services:
    layout_builder_field_block_test.fake_view_mode_context:
    class: Drupal\layout_builder_field_block_test\ContextProvider\FakeViewModeContext
    tags:
    - { name: 'context_provider' }
    ......@@ -2,7 +2,7 @@
    declare(strict_types=1);
    namespace Drupal\layout_builder_fieldblock_test\ContextProvider;
    namespace Drupal\layout_builder_field_block_test\ContextProvider;
    use Drupal\Core\Plugin\Context\Context;
    use Drupal\Core\Plugin\Context\ContextDefinition;
    ......
    ......@@ -2,7 +2,7 @@
    declare(strict_types=1);
    namespace Drupal\layout_builder_fieldblock_test\Plugin\Block;
    namespace Drupal\layout_builder_field_block_test\Plugin\Block;
    use Drupal\Core\Block\Attribute\Block;
    use Drupal\layout_builder\Plugin\Block\FieldBlock as LayoutBuilderFieldBlock;
    ......
    services:
    layout_builder_fieldblock_test.fake_view_mode_context:
    class: Drupal\layout_builder_fieldblock_test\ContextProvider\FakeViewModeContext
    tags:
    - { name: 'context_provider' }
    ......@@ -26,8 +26,8 @@ class FieldBlockTest extends WebDriverTestBase {
    'datetime',
    'layout_builder',
    'user',
    // See \Drupal\layout_builder_fieldblock_test\Plugin\Block\FieldBlock.
    'layout_builder_fieldblock_test',
    // See \Drupal\layout_builder_field_block_test\Plugin\Block\FieldBlock.
    'layout_builder_field_block_test',
    'layout_builder_expose_all_field_blocks',
    ];
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment