content_moderation.module
Same filename in other branches
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(). |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.