aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_module.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-07-01 18:46:14 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-07-01 18:46:14 +0000
commit85b99b642f547a13a3d9fbdcbf3e773bb1745dde (patch)
tree0bccd54f788be0e770527ed8ad060247929c95f9 /phpBB/includes/functions_module.php
parent6ca11b2d2b7a9e6420eec3b21e1531c1586c15c2 (diff)
downloadforums-85b99b642f547a13a3d9fbdcbf3e773bb1745dde.tar
forums-85b99b642f547a13a3d9fbdcbf3e773bb1745dde.tar.gz
forums-85b99b642f547a13a3d9fbdcbf3e773bb1745dde.tar.bz2
forums-85b99b642f547a13a3d9fbdcbf3e773bb1745dde.tar.xz
forums-85b99b642f547a13a3d9fbdcbf3e773bb1745dde.zip
allow mod authors to plug in info_ language files for population within the menu.
git-svn-id: file:///svn/phpbb/trunk@7819 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_module.php')
-rw-r--r--phpBB/includes/functions_module.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php
index bbb44d4b3d..1010de643b 100644
--- a/phpBB/includes/functions_module.php
+++ b/phpBB/includes/functions_module.php
@@ -123,6 +123,22 @@ class p_master
// Re-index (this is needed, else we are not able to array_slice later)
$this->module_cache['modules'] = array_merge($this->module_cache['modules']);
+ // Include MOD _info files for populating language entries within the menus
+ if (file_exists($user->lang_path . 'mods'))
+ {
+ $add_files = array();
+
+ foreach (glob($user->lang_path . 'mods/info_' . strtolower($this->p_class) . '_*.' . $phpEx, GLOB_NOSORT) as $file)
+ {
+ $add_files[] = 'mods/' . substr(basename($file), 0, -(strlen($phpEx) + 1));
+ }
+
+ if (sizeof($add_files))
+ {
+ $user->add_lang($add_files);
+ }
+ }
+
// Now build the module array, but exclude completely empty categories...
$right_id = false;
$names = array();