You are here

function viewfield_disable in Viewfield 6.2

Same name and namespace in other branches
  1. 6 viewfield.install \viewfield_disable()

Implementation of hook_disable().

Notify content module when this module is disabled.

File

./viewfield.install, line 39
Installation functions.

Code

function viewfield_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'viewfield');
}