social_post_photo.install in Open Social 8.6
Same filename and directory in other branches
- 8.9 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.2 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.3 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.4 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.5 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.7 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 8.8 modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 10.3.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 10.0.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 10.1.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
- 10.2.x modules/social_features/social_post/modules/social_post_photo/social_post_photo.install
The Social post photo installation.
File
modules/social_features/social_post/modules/social_post_photo/social_post_photo.installView source
<?php
/**
* @file
* The Social post photo installation.
*/
/**
* Install hook for Social Post Photo.
*/
function social_post_photo_install() {
// Change post to photo.
_social_post_photo_settype('post', 'photo');
}
/**
* Uninstall hook for Social Post Photo.
*/
function social_post_photo_uninstall() {
// Change photo to post.
_social_post_photo_settype('photo', 'post');
$configs = [
'core.entity_form_display.post.photo.default',
'core.entity_form_display.post.photo.group',
'core.entity_form_display.post.photo.profile',
'core.entity_view_display.post.photo.activity',
'core.entity_view_display.post.photo.activity_comment',
'core.entity_view_display.post.photo.default',
'field.field.post.photo.field_post',
'field.field.post.photo.field_post_comments',
'field.field.post.photo.field_post_image',
'field.field.post.photo.field_recipient_group',
'field.field.post.photo.field_recipient_user',
'field.field.post.photo.field_visibility',
'field.storage.post.field_post_image',
'image.style.social_post_photo',
'social_post.post_type.photo',
];
foreach ($configs as $config) {
// Deleting config.
\Drupal::configFactory()
->getEditable($config)
->delete();
}
}
/**
* Set the number of comments on Post Teaser and Full display.
*/
function social_post_photo_update_8001() {
\Drupal::service('config.installer')
->installDefaultConfig('module', 'social_post_photo');
}
Functions
Name | Description |
---|---|
social_post_photo_install | Install hook for Social Post Photo. |
social_post_photo_uninstall | Uninstall hook for Social Post Photo. |
social_post_photo_update_8001 | Set the number of comments on Post Teaser and Full display. |