
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
31 lines
765 B
PHP
31 lines
765 B
PHP
<?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;
|
|
}
|