summaryrefslogtreecommitdiffstats
path: root/modules-available/main/hooks/translation.inc.php
blob: 8c0e4b5178ea22536c73c44adbf2beb65841ffd4 (plain) (blame)
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
<?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;
};