You are here

semantic_panels.install in Semantic Panels 7

Same filename and directory in other branches
  1. 7.2 semantic_panels.install

Install, update, and uninstall functions for the semantic panels module.

File

semantic_panels.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for the semantic panels module.
 */

/**
 * Implements hook_enable().
 */
function semantic_panels_enable() {
  if (!_semantic_panels_can_use_fences()) {

    // Notify user of fences awesomeness.
    drupal_set_message(t('It is recommended to also install the <a href="@fences_link">Fences</a> module with Semantic Panels to access the Fences HTML element options.', array(
      '@fences_link' => url('http://drupal.org/project/fences'),
    )), 'warning', FALSE);
  }
}

Functions

Namesort descending Description
semantic_panels_enable Implements hook_enable().