You are here

maxlength.install in Maxlength 6

File

maxlength.install
View source
<?php

/**
 * @file
 * Install file for the maxlenght module
 */
require_once 'maxlength.inc';

// hook_update_N
function maxlength_update_1() {
  foreach (node_get_types() as $type => $name) {
    $code_old = 'maxlength_node_type_' . $type;
    $code_new = MAXLENGTH_NODE_TYPE . $type;
    $max_title = variable_get($code_old . '_maxlength_title', '');
    $max_body = variable_get($code_old . '_maxlength_body', '');
    variable_set($code_new . '_t', $max_title);
    variable_set($code_new . '_b', $max_body);
    variable_del($code_old . '_maxlength_title');
    variable_del($code_old . '_maxlength_body');

    // old variables, not used anymore
    variable_del($code_old . '_limit');
    variable_del($code_old . '_maxlength');
  }
  return array();
}

// hook_unistall
function maxlength_uninstall() {
  foreach (node_get_types() as $type => $name) {
    $code = MAXLENGTH_NODE_TYPE . $type;
    variable_del($code . '_t');
    variable_del($code . '_b');
  }
}