forked from os2loop/profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop.callbacks.inc
61 lines (55 loc) · 1.65 KB
/
loop.callbacks.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @file
* Batch job callbacks used in the installation profile.
*/
/**
* Enables an module.
*
* @param string $module
* The modules machine name.
* @param string $module_name
* The modules human name.
* @param array $context
* The context of the batch job.
*/
function _loop_enable_module($module, $module_name, &$context) {
module_enable(array($module));
$context['message'] = st('Installed %module module.', array('%module' => $module_name));
}
/**
* Import translation into the database.
*
* @param string $type
* Type of translation.
* @param string $translation_file
* File with translation.
* @param array $context
* The context of the batch job.
*/
function _loop_insert_translation($type, $translation_file, &$context) {
$file = new stdClass();
$file->uri = DRUPAL_ROOT . $translation_file;
$file->filename = basename($file->uri);
_locale_import_po($file, 'da', LOCALE_IMPORT_OVERWRITE, $type);
$context['message'] = st('Installed %type translation.', array('%type' => $type));
}
/**
* Reverts a given feature module.
*
* @param string $feature
* Name of the module to revert.
*/
function _loop_features_revert($feature) {
// Load the feature.
if (($feature = features_load_feature($feature, TRUE)) && module_exists($feature)) {
// Get all components of the feature.
foreach (array_keys($feature->info['features']) as $component) {
if (features_hook($component, 'features_revert')) {
// Revert each component (force).
features_revert(array($feature => array($component)));
}
}
}
$context['message'] = st('Reverted %feature.', array('%feature' => $feature));
}