Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

content_moderation.module

File

core/modules/content_moderation/content_moderation.module

View source
<?php


/**
 * @file
 */
use Drupal\content_moderation\ContentPreprocess;

/**
 * Implements hook_preprocess_HOOK().
 */
function content_moderation_preprocess_node(&$variables) : void {
    \Drupal::service('class_resolver')->getInstanceFromDefinition(ContentPreprocess::class)
        ->preprocessNode($variables);
}

Functions

Title Deprecated Summary
content_moderation_preprocess_node Implements hook_preprocess_HOOK().
RSS feed
Powered by Drupal