module_test_procedural_preprocess.module
File
-
core/
modules/ system/ tests/ modules/ module_test_procedural_preprocess/ module_test_procedural_preprocess.module
View source
<?php
/**
* @file
* Test module.
*/
declare (strict_types=1);
function template_preprocess_test($arg) : mixed {
return $arg;
}
function module_test_procedural_preprocess_preprocess($arg) : mixed {
return $arg;
}
function module_test_procedural_preprocess_preprocess_test($arg) : mixed {
return $arg;
}
Functions
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.