You are here

social_follow_content.api.php in Open Social 8.5

Hooks provided by the Social Follow Content module.

File

modules/social_features/social_follow_content/social_follow_content.api.php
View source
<?php

/**
 * @file
 * Hooks provided by the Social Follow Content module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Provide a method to alter the automatically follow content types.
 *
 * @param array $types
 *   An array of content types.
 */
function hook_social_follow_content_types_alter(array &$types) {
  $types[] = 'topic';
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_social_follow_content_types_alter Provide a method to alter the automatically follow content types.