You are here

ctm.install in Menu Settings per Content Type 6.2

Same filename and directory in other branches
  1. 5 ctm.install
  2. 6 ctm.install

File

ctm.install
View source
<?php

/*
 * UnInstall - Delete all variables for content type menu settings.
 */
function ctm_uninstall() {
  $types = node_get_types();
  foreach ($types as $type => $values) {
    variable_del($type . '_menu_settings');
  }
}

Functions

Namesort descending Description
ctm_uninstall