You are here

function shouts_install in Heartbeat 6.3

Same name and namespace in other branches
  1. 6.4 modules/shouts/shouts.install \shouts_install()

Implementation of hook_install().

File

modules/shouts/shouts.install, line 7

Code

function shouts_install() {
  drupal_install_schema('shouts');
  $types = variable_get('message_types', array());
  $types[] = 'shout';
  variable_set('message_types', $types);
}