You are here

function semantic_panels_enable in Semantic Panels 7.2

Same name and namespace in other branches
  1. 7 semantic_panels.install \semantic_panels_enable()

File

./semantic_panels.install, line 3

Code

function semantic_panels_enable() {
  if (!_semantic_panels_can_use_fences()) {

    // Notify user of fences awesomenss.
    drupal_set_message(t('Install the <a href="@fences_link">Fences</a> module to access all HTML elements that Fences provides, also in Semantic Panels.', array(
      '@fences_link' => url('http://drupal.org/project/fences'),
    )), 'warning', FALSE);
  }
}