You are here

paragraphs_ee.install in Paragraphs Editor Enhancements 8

Installation hooks for paragraphs_ee module.

File

paragraphs_ee.install
View 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

Namesort descending Description
paragraphs_ee_install Implements hook_install().
paragraphs_ee_update_8001 Set module weight.