You are here

commons_content_moderation.strongarm.inc in Drupal Commons 7.3

File

modules/commons/commons_content_moderation/commons_content_moderation.strongarm.inc
View source
<?php

/**
 * @file
 * commons_content_moderation.strongarm.inc
 */

/**
 * Implements hook_strongarm().
 */
function commons_content_moderation_strongarm() {
  $export = array();
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'flag_abuse_flags';
  $strongarm->value = array(
    'inappropriate_node' => 'inappropriate_node',
    'inappropriate_comment' => 'inappropriate_comment',
    'commons_follow_user' => 0,
    'commons_follow_term' => 0,
    'commons_follow_group' => 0,
    'commons_follow_node' => 0,
    'bookmarks' => 0,
    'abuse_user' => 0,
  );
  $export['flag_abuse_flags'] = $strongarm;
  return $export;
}

Functions

Namesort descending Description
commons_content_moderation_strongarm Implements hook_strongarm().