You are here

function cpn_modules_installed in Code per Node 7

Implements hook_modules_installed().

File

./cpn.install, line 244
Installation, schema and update hook implementations.

Code

function cpn_modules_installed($modules) {

  // After installing block, add its CPN fields.
  if (in_array('block', $modules)) {
    cpn_alter_block();
  }
}