You are here

function social_post_install in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_post/social_post.install \social_post_install()
  2. 8 modules/social_features/social_post/social_post.install \social_post_install()
  3. 8.2 modules/social_features/social_post/social_post.install \social_post_install()
  4. 8.3 modules/social_features/social_post/social_post.install \social_post_install()
  5. 8.4 modules/social_features/social_post/social_post.install \social_post_install()
  6. 8.5 modules/social_features/social_post/social_post.install \social_post_install()
  7. 8.6 modules/social_features/social_post/social_post.install \social_post_install()
  8. 8.7 modules/social_features/social_post/social_post.install \social_post_install()
  9. 10.3.x modules/social_features/social_post/social_post.install \social_post_install()
  10. 10.0.x modules/social_features/social_post/social_post.install \social_post_install()
  11. 10.1.x modules/social_features/social_post/social_post.install \social_post_install()
  12. 10.2.x modules/social_features/social_post/social_post.install \social_post_install()

Implements hook_install().

Perform actions related to the installation of social_post.

File

modules/social_features/social_post/social_post.install, line 27
Install, update and uninstall functions for the social_post module.

Code

function social_post_install() {

  // Set some default permissions.
  _social_post_set_permissions();

  // Set the view mode for posts in activities.
  activity_creator_set_entity_view_mode('post', 'activity');
}