You are here

content_permissions.install in Content Construction Kit (CCK) 6.2

Implementation of hook_install().

File

modules/content_permissions/content_permissions.install
View source
<?php

/**
 * @file
 * Implementation of hook_install().
 */
function content_permissions_install() {
  drupal_set_message(t('Please <a href="!url">configure your field permissions</a> immediately. All fields are inaccessible by default.', array(
    '!url' => url('admin/user/permissions', array(
      'fragment' => 'content_permissions',
    )),
  )));
}

Functions

Namesort descending Description
content_permissions_install @file Implementation of hook_install().