Skip to content
Snippets Groups Projects
Verified Commit 51599c2d authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3420570 by quietone, shalini_jha, lavanyatalwar, smustgrave, longwave:...

Issue #3420570 by quietone, shalini_jha, lavanyatalwar, smustgrave, longwave: Misspellings in words used in schema files and elsewhere
parent 4dcbb647
No related branches found
No related tags found
1 merge request!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes
Pipeline #440566 passed with warnings
Pipeline: drupal

#440579

    Pipeline: drupal

    #440574

      Pipeline: drupal

      #440569

        Showing
        with 34 additions and 29 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:
        ......
        ......@@ -95,7 +95,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
        avif
        ......@@ -123,7 +121,6 @@ csslintrc
        csstools
        cweagans
        datelist
        daterange
        datestamp
        datetimeiso
        dburl
        ......@@ -187,7 +184,6 @@ favstar
        fcgi
        fdiv
        fieldapi
        fieldblock
        fieldgroup
        fieldgroups
        fieldnames
        ......@@ -209,7 +205,6 @@ français
        fraîche
        frontpage
        fudgy
        fulldate
        fulltext
        gabilondo
        gids
        ......@@ -217,8 +212,6 @@ gloop
        greeking
        gripsmall
        groupable
        groupby
        groupwise
        guzzlehttp
        hande
        hateoas
        ......@@ -248,7 +241,6 @@ introspectable
        invalidators
        invokable
        isam
        itok
        javascripts
        jessebeach
        jqueryui
        ......@@ -388,10 +380,8 @@ prepopulate
        prepopulates
        prepopulating
        prepopulation
        prerender
        prerendered
        presave
        pretransaction
        preuninstall
        prophesize
        protossl
        ......@@ -447,7 +437,6 @@ shorterthan
        shortlink
        singlebyte
        sirbrillig
        sitename
        sitewide
        slatkin
        smacss
        ......@@ -564,7 +553,6 @@ unindexed
        uninstallations
        unminified
        unmoderated
        unpromote
        unpublishing
        unrouted
        unsanitized
        ......@@ -573,7 +561,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
        ......
        # 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',
        ];
        ......
        ......@@ -4,6 +4,8 @@
        use Drupal\views\EntityViewsData;
        // cspell:ignore fulldate
        /**
        * Provides the views data for the node entity type.
        */
        ......
        ......@@ -28,7 +28,7 @@ class Node extends FieldPluginBase {
        public function init(ViewExecutable $view, DisplayPluginBase $display, ?array &$options = NULL) {
        parent::init($view, $display, $options);
        // Don't add the additional fields to groupby
        // Don't add the additional fields to group by.
        if (!empty($this->options['link_to_node'])) {
        $this->additional_fields['nid'] = ['table' => 'node_field_data', 'field' => 'nid'];
        }
        ......
        # Schema for the views plugins of the Taxonomy module.
        # cspell:ignore anyall
        views.argument.taxonomy_index_tid:
        type: views.argument.many_to_one
        ......
        ......@@ -14,6 +14,8 @@
        use Symfony\Component\DependencyInjection\ContainerInterface;
        use Drupal\taxonomy\VocabularyStorageInterface;
        // cspell:ignore anyall
        /**
        * Taxonomy tid default argument.
        */
        ......
        ......@@ -4,6 +4,8 @@
        use Drupal\views\EntityViewsData;
        // cspell:ignore fulldate
        /**
        * Provides the views data for the taxonomy entity type.
        */
        ......
        # cspell:ignore anyall
        langcode: en
        status: true
        dependencies:
        ......
        ......@@ -4,6 +4,8 @@
        use Drupal\views\EntityViewsData;
        // cspell:ignore fulldate
        /**
        * Provides the views data for the user entity type.
        */
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment