summaryrefslogtreecommitdiffstats
path: root/modules-available/main/hooks/translation.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/main/hooks/translation.inc.php')
-rw-r--r--modules-available/main/hooks/translation.inc.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/modules-available/main/hooks/translation.inc.php b/modules-available/main/hooks/translation.inc.php
new file mode 100644
index 00000000..8c0e4b51
--- /dev/null
+++ b/modules-available/main/hooks/translation.inc.php
@@ -0,0 +1,30 @@
+<?php
+
+$HANDLER = array();
+
+/**
+ * List of valid subsections
+ */
+$HANDLER['subsections'] = array(
+ 'categories'
+);
+
+/*
+ * Handlers for the subsections that will return an array of expected tags.
+ * This is optional, if you don't want to define expected tags, don't create a function.
+ */
+
+/**
+ * Configuration categories
+ */
+$HANDLER['grep_categories'] = function($module) {
+ $skip = strlen($module->getIdentifier()) + 1;
+ $want = array();
+ foreach (Module::getAll() as $module) {
+ $cat = $module->getCategory();
+ if (is_string($cat)) {
+ $want[substr($cat, $skip)] = true;
+ }
+ }
+ return $want;
+};