mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
Add and enable Entity Reference View Widget module.
This commit is contained in:
parent
54daf2f860
commit
89feb27f6b
2 changed files with 15 additions and 0 deletions
|
@ -23,6 +23,9 @@ projects[entity][version] = "1.6"
|
|||
projects[entityreference][subdir] = "contrib"
|
||||
projects[entityreference][version] = "1.1"
|
||||
|
||||
projects[entityreference_view_widget][subdir] = "contrib"
|
||||
projects[entityreference_view_widget][version] = "2.0-rc6"
|
||||
|
||||
projects[features][subdir] = "contrib"
|
||||
projects[features][version] = "2.6"
|
||||
|
||||
|
|
12
farm.install
12
farm.install
|
@ -64,6 +64,18 @@ function farm_update_7001(&$sandbox) {
|
|||
_farm_enable_modules($modules);
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable Entity Reference View Widget.
|
||||
*/
|
||||
function farm_update_7002(&$sandbox) {
|
||||
|
||||
// Enable new module dependencies.
|
||||
$modules = array(
|
||||
'entityreference_view_widget',
|
||||
);
|
||||
_farm_enable_modules($modules);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function: enable modules.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue