You are here

ckeditor_tabber.install in CKEditor Tabber 7

File

ckeditor_tabber.install
View source
<?php

/**
 * Add a variable to allow old dl tags without classes to be rendered
 * with semantic tabs.
 */
function ckeditor_tabber_update_7001() {
  variable_set('ckeditor_tabber_semantic_tabs_elements', 'dl, dl.ckeditor-tabber');
}

/**
 * Implements hook_uninstall().
 */
function ckeditor_tabber_uninstall() {
  variable_del('ckeditor_tabber_semantic_tabs_elements');
}

Functions

Namesort descending Description
ckeditor_tabber_uninstall Implements hook_uninstall().
ckeditor_tabber_update_7001 Add a variable to allow old dl tags without classes to be rendered with semantic tabs.