You are here

function viewfield_enable in Viewfield 6

Same name and namespace in other branches
  1. 6.2 viewfield.install \viewfield_enable()

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./viewfield.install, line 29
Installation functions.

Code

function viewfield_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'viewfield');
}