function ogactivity_install in Activity 6
Same name and namespace in other branches
- 5.4 contrib/ogactivity/ogactivity.install \ogactivity_install()
Implementation of hook_install().
File
- contrib/
ogactivity/ ogactivity.install, line 6
Code
function ogactivity_install() {
if (!module_exists('activity')) {
module_load_include('module', 'activity');
}
activity_install_activity_defaults('ogactivity');
drupal_set_message(t('Activity integration with Organic Groups installed. Go to <a href="@settings">Organic Groups Activity settings</a> to customize ', array(
'@settings' => url('admin/settings/activity/ogactivity'),
)));
}