paragraphs_ee.install in Paragraphs Editor Enhancements 8
Installation hooks for paragraphs_ee module.
File
paragraphs_ee.installView source
<?php
/**
* @file
* Installation hooks for paragraphs_ee module.
*/
/**
* Implements hook_install().
*/
function paragraphs_ee_install() {
// Assign a weight higher than paragraphs.
module_set_weight('paragraphs_ee', 15);
}
/**
* Set module weight.
*/
function paragraphs_ee_update_8001() {
// Assign a weight higher than paragraphs.
module_set_weight('paragraphs_ee', 15);
}
Functions
Name | Description |
---|---|
paragraphs_ee_install | Implements hook_install(). |
paragraphs_ee_update_8001 | Set module weight. |