====== Get plugin-descriptions ====== In modules/plugins, use this code: To load this description, use these lines: '; $d = opendir('.'); while ($file = readdir($d)) { if (is_file($file) && substr($file, 0, 2) == 'a_') { $getmodulename = '---'; include($file); echo '
  • ' . $getmodulename . '
  • '; } } echo ''; ?>
    **Note:** In phpBB2, the modules/plugins filled an array instead of replacing the contents of one single variable.