You are here

function flagactivity_install in Activity 5.4

Same name and namespace in other branches
  1. 6 contrib/flagactivity/flagactivity.install \flagactivity_install()

Implementation of hook_install().

File

contrib/flagactivity/flagactivity.install, line 6

Code

function flagactivity_install() {
  if (!module_exists('activity')) {
    require_once drupal_get_path('module', 'activity') . '/activity.module';
  }
  activity_install_activity_defaults('flagactivity');
  drupal_set_message(t('Activity integration with Flag module installed. Go to <a href="@settings">Flag Activity settings</a> to customize ', array(
    '@settings' => url('admin/settings/activity/flagactivity'),
  )));
}