
Apply the security fixes including: - Drupal Core - Moderately Critical - Multiple Vulnerabilities - SA-CORE-2015-001 - SA-CONTRIB-2015-079 - Chaos tool suite (ctools) - Multiple vulnerabilities The following patches were applied to 7.x-3.23 commons modules: - patches/0001-utility-links-block-install-theme.patch - patches/0002-events-page-refactor-to-pages-module.patch Installation profile got a refactor of module installation, as groups_ modules and l10n_updates deployed from an installation task to avoid memory exhausted errors of the installation process. Change-Id: I48481657124fdbbee84e1cbfec3a3a2b5f475c2c
38 lines
767 B
PHP
38 lines
767 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_documents.features.field_base.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_field_default_field_bases().
|
|
*/
|
|
function commons_documents_field_default_field_bases() {
|
|
$field_bases = array();
|
|
|
|
// Exported field_base: 'field_document_file'
|
|
$field_bases['field_document_file'] = array(
|
|
'active' => 1,
|
|
'cardinality' => -1,
|
|
'deleted' => 0,
|
|
'entity_types' => array(),
|
|
'field_name' => 'field_document_file',
|
|
'indexes' => array(
|
|
'fid' => array(
|
|
0 => 'fid',
|
|
),
|
|
),
|
|
'locked' => 0,
|
|
'module' => 'file',
|
|
'settings' => array(
|
|
'display_default' => 1,
|
|
'display_field' => 0,
|
|
'uri_scheme' => 'public',
|
|
),
|
|
'translatable' => 0,
|
|
'type' => 'file',
|
|
);
|
|
|
|
return $field_bases;
|
|
}
|