ContentModerationTestViewsHooks.php

Namespace

Drupal\content_moderation_test_views\Hook

File

core/modules/content_moderation/tests/modules/content_moderation_test_views/src/Hook/ContentModerationTestViewsHooks.php

View source
<?php

declare (strict_types=1);
namespace Drupal\content_moderation_test_views\Hook;

use Drupal\views\Plugin\views\query\QueryPluginBase;
use Drupal\views\ViewExecutable;
use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for content_moderation_test_views.
 */
class ContentModerationTestViewsHooks {
    
    /**
     * Implements hook_views_query_alter().
     *
     * @see \Drupal\Tests\content_moderation\Kernel\ViewsModerationStateSortTest::testSortRevisionBaseTable()
     */
    public function viewsQueryAlter(ViewExecutable $view, QueryPluginBase $query) {
        // Add a secondary sort order to ensure consistent builds when testing click
        // and table sorting.
        if ($view->id() === 'test_content_moderation_state_sort_revision_table') {
            $query->addOrderBy('node_field_revision', 'vid', 'ASC');
        }
    }
    
    /**
     * Implements hook_views_data_alter().
     *
     * @see \Drupal\Tests\content_moderation\Kernel\ViewsModerationStateFilterTest
     */
    public function viewsDataAlter(array &$data) {
        if (isset($data['users_field_data'])) {
            $data['users_field_data']['uid_revision_test'] = [
                'help' => t('Relate the content revision to the user who created it.'),
                'real field' => 'uid',
                'relationship' => [
                    'title' => t('Content revision authored'),
                    'help' => t('Relate the content revision to the user who created it. This relationship will create one record for each content revision item created by the user.'),
                    'id' => 'standard',
                    'base' => 'node_field_revision',
                    'base field' => 'uid',
                    'field' => 'uid',
                    'label' => t('node revisions'),
                ],
            ];
        }
    }

}

Classes

Title Deprecated Summary
ContentModerationTestViewsHooks Hook implementations for content_moderation_test_views.

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