You are here

vsf_wysiwyg.install in Visual select file 7

File

submodules/vsf_wysiwyg/vsf_wysiwyg.install
View source
<?php

/**
 * Implements hook_install().
 */
function vsf_wysiwyg_install() {

  // Note: this has nothing to do with security.
  variable_set('image_allow_insecure_derivatives', 1);
}

/**
 * Turn `vsf_wysiwyg_check_unchanged_fields` ON, because you're not new here.
 */
function vsf_wysiwyg_update_7001() {

  // If you had this module enabled before this update hook existed, you might have
  // included untracked images.
  variable_set('vsf_wysiwyg_check_unchanged_fields', 1);
}

Functions

Namesort descending Description
vsf_wysiwyg_install Implements hook_install().
vsf_wysiwyg_update_7001 Turn `vsf_wysiwyg_check_unchanged_fields` ON, because you're not new here.