You are here

function media_wysiwyg_install in D7 Media 7.4

Same name and namespace in other branches
  1. 7.2 modules/media_wysiwyg/media_wysiwyg.install \media_wysiwyg_install()
  2. 7.3 modules/media_wysiwyg/media_wysiwyg.install \media_wysiwyg_install()

Implements hook_install().

File

modules/media_wysiwyg/media_wysiwyg.install, line 57
Install, update and uninstall functions for the Media WYSIWYG module.

Code

function media_wysiwyg_install() {
  media_wysiwyg_update_7204();

  // Start off with the alignment feature enabled.
  variable_set('media_wysiwyg_alignment', TRUE);

  // Set token version in use.
  variable_set('media_wysiwyg_token_version', MEDIA_WYSIWYG_TOKEN_VERSION);
}