Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

[GOVCMSD7-190] Included Environment Indicator module. #872

Open
wants to merge 2 commits into
base: 7.x-3.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drupal-org.make
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ projects[entityreference][patch][] = "https://www.drupal.org/files/issues/url_fo
projects[entityreference][version] = "1.5"
projects[entity][patch][2307807] = "https://www.drupal.org/files/issues/2307807-entity-reset-insert-1.patch"
projects[entity][version] = "1.9"
projects[environment_indicator][version] = "2.9"
projects[escape_admin][version] = "1.2"
projects[event_log][version] = "1.4"
projects[event_log][patch][] = "https://www.drupal.org/files/issues/event-log-request-password-2365895-2.patch"
Expand Down
1 change: 1 addition & 0 deletions govcms.info
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ dependencies[] = elements
dependencies[] = entity
dependencies[] = entitycache
dependencies[] = entityreference
dependencies[] = environment_indicator
dependencies[] = escape_admin
dependencies[] = favicon
dependencies[] = features
Expand Down
9 changes: 9 additions & 0 deletions govcms.install
Original file line number Diff line number Diff line change
Expand Up @@ -1687,3 +1687,12 @@ function govcms_update_7202() {
drupal_uninstall_modules(array('govcms_register'), FALSE);
}
}

/**
* Enable Environment Indicator module.
*/
function govcms_update_7203() {
if (!module_exists('environment_indicator')) {
module_enable(array('environment_indicator'));
}
}