You are here

function cpn_install in Code per Node 7

Same name and namespace in other branches
  1. 6 cpn.install \cpn_install()

Implements hook_install().

File

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

Code

function cpn_install() {
  drupal_set_message(t('', array(
    '@url' => '',
  )));

  // If block table exists, add CPN fields.
  if (db_table_exists('block')) {
    cpn_alter_block();
  }
}