Skip to content
Snippets Groups Projects
Commit 5bcf197e authored by Jeroen Tubex's avatar Jeroen Tubex
Browse files

Issue #3421959: Module weight must be higher than token module weight

parent 3a478010
No related branches found
No related tags found
1 merge request!12Add new file
Pipeline #280010 passed with warnings
<?php
/**
* @file
* Installation hooks for paragraphs_summary_token module.
*/
/**
* Implements hook_install().
*/
function paragraphs_summary_token_install() {
// Assign a weight higher than the token module.
module_set_weight('paragraphs_summary_token', 1);
}
/**
* Set module weight.
*/
function paragraphs_summary_token_update_8001() {
// Assign a weight higher than the token module.
module_set_weight('paragraphs_summary_token', 1);
}
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