Blame Extras/phpBB/3.0.4/includes/acp/acp_modules.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package acp
4c79b5
* @version $Id: acp_modules.php 9179 2008-12-06 18:23:42Z toonarmy $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @ignore
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* - Able to check for new module versions (modes changed/adjusted/added/removed)
4c79b5
* Icons for:
4c79b5
* - module enabled and displayed (common)
4c79b5
* - module enabled and not displayed
4c79b5
* - module deactivated
4c79b5
* - category (enabled)
4c79b5
* - category disabled
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @package acp
4c79b5
*/
4c79b5
class acp_modules
4c79b5
{
4c79b5
	var $module_class = '';
4c79b5
	var $parent_id;
4c79b5
	var $u_action;
4c79b5
4c79b5
	function main($id, $mode)
4c79b5
	{
4c79b5
		global $db, $user, $auth, $template, $module;
4c79b5
		global $config, $phpbb_admin_path, $phpbb_root_path, $phpEx;
4c79b5
4c79b5
		// Set a global define for modules we might include (the author is able to prevent execution of code by checking this constant)
4c79b5
		define('MODULE_INCLUDE', true);
4c79b5
4c79b5
		$user->add_lang('acp/modules');
4c79b5
		$this->tpl_name = 'acp_modules';
4c79b5
4c79b5
		// module class
4c79b5
		$this->module_class = $mode;
4c79b5
4c79b5
		if ($this->module_class == 'ucp')
4c79b5
		{
4c79b5
			$user->add_lang('ucp');
4c79b5
		}
4c79b5
		else if ($this->module_class == 'mcp')
4c79b5
		{
4c79b5
			$user->add_lang('mcp');
4c79b5
		}
4c79b5
4c79b5
		if ($module->p_class != $this->module_class)
4c79b5
		{
4c79b5
			$module->add_mod_info($this->module_class);
4c79b5
		}
4c79b5
4c79b5
		$this->page_title = strtoupper($this->module_class);
4c79b5
4c79b5
		$this->parent_id = request_var('parent_id', 0);
4c79b5
		$module_id = request_var('m', 0);
4c79b5
		$action = request_var('action', '');
4c79b5
		$errors = array();
4c79b5
4c79b5
		switch ($action)
4c79b5
		{
4c79b5
			case 'delete':
4c79b5
				if (!$module_id)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE_ID'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				if (confirm_box(true))
4c79b5
				{
4c79b5
					// Make sure we are not directly within a module
4c79b5
					if ($module_id == $this->parent_id)
4c79b5
					{
4c79b5
						$sql = 'SELECT parent_id
4c79b5
							FROM ' . MODULES_TABLE . '
4c79b5
							WHERE module_id = ' . $module_id;
4c79b5
						$result = $db->sql_query($sql);
4c79b5
						$this->parent_id = (int) $db->sql_fetchfield('parent_id');
4c79b5
						$db->sql_freeresult($result);
4c79b5
					}
4c79b5
4c79b5
					$errors = $this->delete_module($module_id);
4c79b5
4c79b5
					if (!sizeof($errors))
4c79b5
					{
4c79b5
						$this->remove_cache_file();
4c79b5
						trigger_error($user->lang['MODULE_DELETED'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id));
4c79b5
					}
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					confirm_box(false, 'DELETE_MODULE', build_hidden_fields(array(
4c79b5
						'i'			=> $id,
4c79b5
						'mode'		=> $mode,
4c79b5
						'parent_id'	=> $this->parent_id,
4c79b5
						'module_id'	=> $module_id,
4c79b5
						'action'	=> $action,
4c79b5
					)));
4c79b5
				}
4c79b5
4c79b5
			break;
4c79b5
			
4c79b5
			case 'enable':
4c79b5
			case 'disable':
4c79b5
				if (!$module_id)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE_ID'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				$sql = 'SELECT *
4c79b5
					FROM ' . MODULES_TABLE . "
4c79b5
					WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
						AND module_id = $module_id";
4c79b5
				$result = $db->sql_query($sql);
4c79b5
				$row = $db->sql_fetchrow($result);
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				if (!$row)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				$sql = 'UPDATE ' . MODULES_TABLE . '
4c79b5
					SET module_enabled = ' . (($action == 'enable') ? 1 : 0) . "
4c79b5
					WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
						AND module_id = $module_id";
4c79b5
				$db->sql_query($sql);
4c79b5
4c79b5
				add_log('admin', 'LOG_MODULE_' . strtoupper($action), $this->lang_name($row['module_langname']));
4c79b5
				$this->remove_cache_file();
4c79b5
4c79b5
			break;
4c79b5
4c79b5
			case 'move_up':
4c79b5
			case 'move_down':
4c79b5
				if (!$module_id)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE_ID'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				$sql = 'SELECT *
4c79b5
					FROM ' . MODULES_TABLE . "
4c79b5
					WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
						AND module_id = $module_id";
4c79b5
				$result = $db->sql_query($sql);
4c79b5
				$row = $db->sql_fetchrow($result);
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				if (!$row)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				$move_module_name = $this->move_module_by($row, $action, 1);
4c79b5
4c79b5
				if ($move_module_name !== false)
4c79b5
				{
4c79b5
					add_log('admin', 'LOG_MODULE_' . strtoupper($action), $this->lang_name($row['module_langname']), $move_module_name);
4c79b5
					$this->remove_cache_file();
4c79b5
				}
4c79b5
		
4c79b5
			break;
4c79b5
4c79b5
			case 'quickadd':
4c79b5
				$quick_install = request_var('quick_install', '');
4c79b5
4c79b5
				if (confirm_box(true))
4c79b5
				{
4c79b5
					if (!$quick_install || strpos($quick_install, '::') === false)
4c79b5
					{
4c79b5
						break;
4c79b5
					}
4c79b5
4c79b5
					list($module_basename, $module_mode) = explode('::', $quick_install);
4c79b5
4c79b5
					// Check if module name and mode exist...
4c79b5
					$fileinfo = $this->get_module_infos($module_basename);
4c79b5
					$fileinfo = $fileinfo[$module_basename];
4c79b5
4c79b5
					if (isset($fileinfo['modes'][$module_mode]))
4c79b5
					{
4c79b5
						$module_data = array(
4c79b5
							'module_basename'	=> $module_basename,
4c79b5
							'module_enabled'	=> 0,
4c79b5
							'module_display'	=> (isset($fileinfo['modes'][$module_mode]['display'])) ? $fileinfo['modes'][$module_mode]['display'] : 1,
4c79b5
							'parent_id'			=> $this->parent_id,
4c79b5
							'module_class'		=> $this->module_class,
4c79b5
							'module_langname'	=> $fileinfo['modes'][$module_mode]['title'],
4c79b5
							'module_mode'		=> $module_mode,
4c79b5
							'module_auth'		=> $fileinfo['modes'][$module_mode]['auth'],
4c79b5
						);
4c79b5
4c79b5
						$errors = $this->update_module_data($module_data);
4c79b5
4c79b5
						if (!sizeof($errors))
4c79b5
						{
4c79b5
							$this->remove_cache_file();
4c79b5
	
4c79b5
							trigger_error($user->lang['MODULE_ADDED'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id));
4c79b5
						}
4c79b5
					}
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					confirm_box(false, 'ADD_MODULE', build_hidden_fields(array(
4c79b5
						'i'			=> $id,
4c79b5
						'mode'		=> $mode,
4c79b5
						'parent_id'	=> $this->parent_id,
4c79b5
						'action'	=> 'quickadd',
4c79b5
						'quick_install'	=> $quick_install,
4c79b5
					)));
4c79b5
				}
4c79b5
4c79b5
			break;
4c79b5
4c79b5
			case 'edit':
4c79b5
4c79b5
				if (!$module_id)
4c79b5
				{
4c79b5
					trigger_error($user->lang['NO_MODULE_ID'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
				
4c79b5
				$module_row = $this->get_module_row($module_id);
4c79b5
4c79b5
			// no break
4c79b5
4c79b5
			case 'add':
4c79b5
4c79b5
				if ($action == 'add')
4c79b5
				{
4c79b5
					$module_row = array(
4c79b5
						'module_basename'	=> '',
4c79b5
						'module_enabled'	=> 0,
4c79b5
						'module_display'	=> 1,
4c79b5
						'parent_id'			=> 0,
4c79b5
						'module_langname'	=> utf8_normalize_nfc(request_var('module_langname', '', true)),
4c79b5
						'module_mode'		=> '',
4c79b5
						'module_auth'		=> '',
4c79b5
					);
4c79b5
				}
4c79b5
				
4c79b5
				$module_data = array();
4c79b5
4c79b5
				$module_data['module_basename'] = request_var('module_basename', (string) $module_row['module_basename']);
4c79b5
				$module_data['module_enabled'] = request_var('module_enabled', (int) $module_row['module_enabled']);
4c79b5
				$module_data['module_display'] = request_var('module_display', (int) $module_row['module_display']);
4c79b5
				$module_data['parent_id'] = request_var('module_parent_id', (int) $module_row['parent_id']);
4c79b5
				$module_data['module_class'] = $this->module_class;
4c79b5
				$module_data['module_langname'] = utf8_normalize_nfc(request_var('module_langname', (string) $module_row['module_langname'], true));
4c79b5
				$module_data['module_mode'] = request_var('module_mode', (string) $module_row['module_mode']);
4c79b5
4c79b5
				$submit = (isset($_POST['submit'])) ? true : false;
4c79b5
4c79b5
				if ($submit)
4c79b5
				{
4c79b5
					if (!$module_data['module_langname'])
4c79b5
					{
4c79b5
						trigger_error($user->lang['NO_MODULE_LANGNAME'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
					}
4c79b5
4c79b5
					$module_type = request_var('module_type', 'category');
4c79b5
4c79b5
					if ($module_type == 'category')
4c79b5
					{
4c79b5
						$module_data['module_basename'] = $module_data['module_mode'] = $module_data['module_auth'] = '';
4c79b5
						$module_data['module_display'] = 1;
4c79b5
					}
4c79b5
4c79b5
					if ($action == 'edit')
4c79b5
					{
4c79b5
						$module_data['module_id'] = $module_id;
4c79b5
					}
4c79b5
4c79b5
					// Adjust auth row
4c79b5
					if ($module_data['module_basename'] && $module_data['module_mode'])
4c79b5
					{
4c79b5
						$fileinfo = $this->get_module_infos($module_data['module_basename']);
4c79b5
						$module_data['module_auth'] = $fileinfo[$module_data['module_basename']]['modes'][$module_data['module_mode']]['auth'];
4c79b5
					}
4c79b5
4c79b5
					$errors = $this->update_module_data($module_data);
4c79b5
4c79b5
					if (!sizeof($errors))
4c79b5
					{
4c79b5
						$this->remove_cache_file();
4c79b5
	
4c79b5
						trigger_error((($action == 'add') ? $user->lang['MODULE_ADDED'] : $user->lang['MODULE_EDITED']) . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id));
4c79b5
					}
4c79b5
				}
4c79b5
4c79b5
				// Category/not category?
4c79b5
				$is_cat = (!$module_data['module_basename']) ? true : false;
4c79b5
4c79b5
				// Get module information
4c79b5
				$module_infos = $this->get_module_infos();
4c79b5
4c79b5
				// Build name options
4c79b5
				$s_name_options = $s_mode_options = '';
4c79b5
				foreach ($module_infos as $option => $values)
4c79b5
				{
4c79b5
					if (!$module_data['module_basename'])
4c79b5
					{
4c79b5
						$module_data['module_basename'] = $option;
4c79b5
					}
4c79b5
4c79b5
					// Name options
4c79b5
					$s_name_options .= '<option value="' . $option . '"' . (($option == $module_data['module_basename']) ? ' selected="selected"' : '') . '>' . $this->lang_name($values['title']) . ' [' . $this->module_class . '_' . $option . ']</option>';
4c79b5
4c79b5
					$template->assign_block_vars('m_names', array('NAME' => $option, 'A_NAME' => addslashes($option)));
4c79b5
4c79b5
					// Build module modes
4c79b5
					foreach ($values['modes'] as $m_mode => $m_values)
4c79b5
					{
4c79b5
						if ($option == $module_data['module_basename'])
4c79b5
						{
4c79b5
							$s_mode_options .= '<option value="' . $m_mode . '"' . (($m_mode == $module_data['module_mode']) ? ' selected="selected"' : '') . '>' . $this->lang_name($m_values['title']) . '</option>';
4c79b5
						}
4c79b5
						
4c79b5
						$template->assign_block_vars('m_names.modes', array(
4c79b5
							'OPTION'		=> $m_mode,
4c79b5
							'VALUE'			=> $this->lang_name($m_values['title']),
4c79b5
							'A_OPTION'		=> addslashes($m_mode),
4c79b5
							'A_VALUE'		=> addslashes($this->lang_name($m_values['title'])))
4c79b5
						);
4c79b5
					}
4c79b5
				}
4c79b5
				
4c79b5
				$s_cat_option = '<option value="0"' . (($module_data['parent_id'] == 0) ? ' selected="selected"' : '') . '>' . $user->lang['NO_PARENT'] . '</option>';
4c79b5
4c79b5
				$template->assign_vars(array_merge(array(
4c79b5
					'S_EDIT_MODULE'		=> true,
4c79b5
					'S_IS_CAT'			=> $is_cat,
4c79b5
					'S_CAT_OPTIONS'		=> $s_cat_option . $this->make_module_select($module_data['parent_id'], ($action == 'edit') ? $module_row['module_id'] : false, false, false, false, true),
4c79b5
					'S_MODULE_NAMES'	=> $s_name_options,
4c79b5
					'S_MODULE_MODES'	=> $s_mode_options,
4c79b5
					'U_BACK'			=> $this->u_action . '&parent_id=' . $this->parent_id,
4c79b5
					'U_EDIT_ACTION'		=> $this->u_action . '&parent_id=' . $this->parent_id,
4c79b5
4c79b5
					'L_TITLE'			=> $user->lang[strtoupper($action) . '_MODULE'],
4c79b5
					
4c79b5
					'MODULENAME'		=> $this->lang_name($module_data['module_langname']),
4c79b5
					'ACTION'			=> $action,
4c79b5
					'MODULE_ID'			=> $module_id,
4c79b5
4c79b5
				),
4c79b5
					array_change_key_case($module_data, CASE_UPPER))
4c79b5
				);
4c79b5
4c79b5
				if (sizeof($errors))
4c79b5
				{
4c79b5
					$template->assign_vars(array(
4c79b5
						'S_ERROR'	=> true,
4c79b5
						'ERROR_MSG'	=> implode('
', $errors))
4c79b5
					);
4c79b5
				}
4c79b5
4c79b5
				return;
4c79b5
4c79b5
			break;
4c79b5
		}
4c79b5
4c79b5
		// Default management page
4c79b5
		if (sizeof($errors))
4c79b5
		{
4c79b5
			$template->assign_vars(array(
4c79b5
				'S_ERROR'	=> true,
4c79b5
				'ERROR_MSG'	=> implode('
', $errors))
4c79b5
			);
4c79b5
		}
4c79b5
4c79b5
		if (!$this->parent_id)
4c79b5
		{
4c79b5
			$navigation = strtoupper($this->module_class);
4c79b5
		}
4c79b5
		else
4c79b5
		{
4c79b5
			$navigation = '' . strtoupper($this->module_class) . '';
4c79b5
4c79b5
			$modules_nav = $this->get_module_branch($this->parent_id, 'parents', 'descending');
4c79b5
4c79b5
			foreach ($modules_nav as $row)
4c79b5
			{
4c79b5
				$langname = $this->lang_name($row['module_langname']);
4c79b5
4c79b5
				if ($row['module_id'] == $this->parent_id)
4c79b5
				{
4c79b5
					$navigation .= ' -> ' . $langname;
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					$navigation .= ' -> ' . $langname . '';
4c79b5
				}
4c79b5
			}
4c79b5
		}
4c79b5
4c79b5
		// Jumpbox
4c79b5
		$module_box = $this->make_module_select($this->parent_id, false, false, false, false);
4c79b5
4c79b5
		$sql = 'SELECT *
4c79b5
			FROM ' . MODULES_TABLE . "
4c79b5
			WHERE parent_id = {$this->parent_id}
4c79b5
				AND module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
			ORDER BY left_id";
4c79b5
		$result = $db->sql_query($sql);
4c79b5
4c79b5
		if ($row = $db->sql_fetchrow($result))
4c79b5
		{
4c79b5
			do
4c79b5
			{
4c79b5
				$langname = $this->lang_name($row['module_langname']);
4c79b5
4c79b5
				if (!$row['module_enabled'])
4c79b5
				{
4c79b5
					$module_image = '' . $user->lang['DEACTIVATED_MODULE'] .'';
4c79b5
				}
4c79b5
				else
4c79b5
				{
4c79b5
					$module_image = (!$row['module_basename'] || $row['left_id'] + 1 != $row['right_id']) ? '' . $user->lang['CATEGORY'] . '' : '' . $user->lang['MODULE'] . '';
4c79b5
				}
4c79b5
4c79b5
				$url = $this->u_action . '&parent_id=' . $this->parent_id . '&m=' . $row['module_id'];
4c79b5
4c79b5
				$template->assign_block_vars('modules', array(
4c79b5
					'MODULE_IMAGE'		=> $module_image,
4c79b5
					'MODULE_TITLE'		=> $langname,
4c79b5
					'MODULE_ENABLED'	=> ($row['module_enabled']) ? true : false,
4c79b5
					'MODULE_DISPLAYED'	=> ($row['module_display']) ? true : false,
4c79b5
4c79b5
					'S_ACP_CAT_SYSTEM'			=> ($this->module_class == 'acp' && $row['module_langname'] == 'ACP_CAT_SYSTEM') ? true : false,
4c79b5
					'S_ACP_MODULE_MANAGEMENT'	=> ($this->module_class == 'acp' && ($row['module_basename'] == 'modules' || $row['module_langname'] == 'ACP_MODULE_MANAGEMENT')) ? true : false,
4c79b5
4c79b5
					'U_MODULE'			=> $this->u_action . '&parent_id=' . $row['module_id'],
4c79b5
					'U_MOVE_UP'			=> $url . '&action=move_up',
4c79b5
					'U_MOVE_DOWN'		=> $url . '&action=move_down',
4c79b5
					'U_EDIT'			=> $url . '&action=edit',
4c79b5
					'U_DELETE'			=> $url . '&action=delete',
4c79b5
					'U_ENABLE'			=> $url . '&action=enable',
4c79b5
					'U_DISABLE'			=> $url . '&action=disable')
4c79b5
				);
4c79b5
			}
4c79b5
			while ($row = $db->sql_fetchrow($result));
4c79b5
		}
4c79b5
		else if ($this->parent_id)
4c79b5
		{
4c79b5
			$row = $this->get_module_row($this->parent_id);
4c79b5
4c79b5
			$url = $this->u_action . '&parent_id=' . $this->parent_id . '&m=' . $row['module_id'];
4c79b5
4c79b5
			$template->assign_vars(array(
4c79b5
				'S_NO_MODULES'		=> true,
4c79b5
				'MODULE_TITLE'		=> $langname,
4c79b5
				'MODULE_ENABLED'	=> ($row['module_enabled']) ? true : false,
4c79b5
				'MODULE_DISPLAYED'	=> ($row['module_display']) ? true : false,
4c79b5
4c79b5
				'U_EDIT'			=> $url . '&action=edit',
4c79b5
				'U_DELETE'			=> $url . '&action=delete',
4c79b5
				'U_ENABLE'			=> $url . '&action=enable',
4c79b5
				'U_DISABLE'			=> $url . '&action=disable')
4c79b5
			);
4c79b5
		}
4c79b5
		$db->sql_freeresult($result);
4c79b5
4c79b5
		// Quick adding module
4c79b5
		$module_infos = $this->get_module_infos();
4c79b5
4c79b5
		// Build quick options
4c79b5
		$s_install_options = '';
4c79b5
		foreach ($module_infos as $option => $values)
4c79b5
		{
4c79b5
			// Name options
4c79b5
			$s_install_options .= '<optgroup label="' . $this->lang_name($values['title']) . ' [' . $this->module_class . '_' . $option . ']">';
4c79b5
4c79b5
			// Build module modes
4c79b5
			foreach ($values['modes'] as $m_mode => $m_values)
4c79b5
			{
4c79b5
				$s_install_options .= '<option value="' . $option . '::' . $m_mode . '">   ' . $this->lang_name($m_values['title']) . '</option>';
4c79b5
			}
4c79b5
4c79b5
			$s_install_options .= '</optgroup>';
4c79b5
		}
4c79b5
4c79b5
		$template->assign_vars(array(
4c79b5
			'U_SEL_ACTION'		=> $this->u_action,
4c79b5
			'U_ACTION'			=> $this->u_action . '&parent_id=' . $this->parent_id,
4c79b5
			'NAVIGATION'		=> $navigation,
4c79b5
			'MODULE_BOX'		=> $module_box,
4c79b5
			'PARENT_ID'			=> $this->parent_id,
4c79b5
			'S_INSTALL_OPTIONS'	=> $s_install_options,
4c79b5
			)
4c79b5
		);
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Get row for specified module
4c79b5
	*/
4c79b5
	function get_module_row($module_id)
4c79b5
	{
4c79b5
		global $db, $user;
4c79b5
4c79b5
		$sql = 'SELECT *
4c79b5
			FROM ' . MODULES_TABLE . "
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND module_id = $module_id";
4c79b5
		$result = $db->sql_query($sql);
4c79b5
		$row = $db->sql_fetchrow($result);
4c79b5
		$db->sql_freeresult($result);
4c79b5
		
4c79b5
		if (!$row)
4c79b5
		{
4c79b5
			trigger_error($user->lang['NO_MODULE'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
		}
4c79b5
4c79b5
		return $row;
4c79b5
	}
4c79b5
	
4c79b5
	/**
4c79b5
	* Get available module information from module files
4c79b5
	*/
4c79b5
	function get_module_infos($module = '', $module_class = false)
4c79b5
	{
4c79b5
		global $phpbb_root_path, $phpEx;
4c79b5
		
4c79b5
		$module_class = ($module_class === false) ? $this->module_class : $module_class;
4c79b5
4c79b5
		$directory = $phpbb_root_path . 'includes/' . $module_class . '/info/';
4c79b5
		$fileinfo = array();
4c79b5
4c79b5
		if (!$module)
4c79b5
		{
4c79b5
			$dh = @opendir($directory);
4c79b5
4c79b5
			if (!$dh)
4c79b5
			{
4c79b5
				return $fileinfo;
4c79b5
			}
4c79b5
4c79b5
			while (($file = readdir($dh)) !== false)
4c79b5
			{
4c79b5
				// Is module?
4c79b5
				if (preg_match('/^' . $module_class . '_.+\.' . $phpEx . '$/', $file))
4c79b5
				{
4c79b5
					$class = str_replace(".$phpEx", '', $file) . '_info';
4c79b5
4c79b5
					if (!class_exists($class))
4c79b5
					{
4c79b5
						include($directory . $file);
4c79b5
					}
4c79b5
4c79b5
					// Get module title tag
4c79b5
					if (class_exists($class))
4c79b5
					{
4c79b5
						$c_class = new $class();
4c79b5
						$module_info = $c_class->module();
4c79b5
						$fileinfo[str_replace($module_class . '_', '', $module_info['filename'])] = $module_info;
4c79b5
					}
4c79b5
				}
4c79b5
			}
4c79b5
			closedir($dh);
4c79b5
4c79b5
			ksort($fileinfo);
4c79b5
		}
4c79b5
		else
4c79b5
		{
4c79b5
			$filename = $module_class . '_' . basename($module);
4c79b5
			$class = $module_class . '_' . basename($module) . '_info';
4c79b5
4c79b5
			if (!class_exists($class))
4c79b5
			{
4c79b5
				include($directory . $filename . '.' . $phpEx);
4c79b5
			}
4c79b5
4c79b5
			// Get module title tag
4c79b5
			if (class_exists($class))
4c79b5
			{
4c79b5
				$c_class = new $class();
4c79b5
				$module_info = $c_class->module();
4c79b5
				$fileinfo[str_replace($module_class . '_', '', $module_info['filename'])] = $module_info;
4c79b5
			}
4c79b5
		}
4c79b5
		
4c79b5
		return $fileinfo;
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Simple version of jumpbox, just lists modules
4c79b5
	*/
4c79b5
	function make_module_select($select_id = false, $ignore_id = false, $ignore_acl = false, $ignore_nonpost = false, $ignore_emptycat = true, $ignore_noncat = false)
4c79b5
	{
4c79b5
		global $db, $user, $auth, $config;
4c79b5
4c79b5
		$sql = 'SELECT module_id, module_enabled, module_basename, parent_id, module_langname, left_id, right_id, module_auth
4c79b5
			FROM ' . MODULES_TABLE . "
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
			ORDER BY left_id ASC";
4c79b5
		$result = $db->sql_query($sql);
4c79b5
4c79b5
		$right = $iteration = 0;
4c79b5
		$padding_store = array('0' => '');
4c79b5
		$module_list = $padding = '';
4c79b5
4c79b5
		while ($row = $db->sql_fetchrow($result))
4c79b5
		{
4c79b5
			if ($row['left_id'] < $right)
4c79b5
			{
4c79b5
				$padding .= '   ';
4c79b5
				$padding_store[$row['parent_id']] = $padding;
4c79b5
			}
4c79b5
			else if ($row['left_id'] > $right + 1)
4c79b5
			{
4c79b5
				$padding = (isset($padding_store[$row['parent_id']])) ? $padding_store[$row['parent_id']] : '';
4c79b5
			}
4c79b5
4c79b5
			$right = $row['right_id'];
4c79b5
4c79b5
			if (!$ignore_acl && $row['module_auth'])
4c79b5
			{
4c79b5
				// We use zero as the forum id to check - global setting.
4c79b5
				if (!p_master::module_auth($row['module_auth'], 0))
4c79b5
				{
4c79b5
					continue;
4c79b5
				}
4c79b5
			}
4c79b5
4c79b5
			// ignore this module?
4c79b5
			if ((is_array($ignore_id) && in_array($row['module_id'], $ignore_id)) || $row['module_id'] == $ignore_id)
4c79b5
			{
4c79b5
				continue;
4c79b5
			}
4c79b5
4c79b5
			// empty category
4c79b5
			if (!$row['module_basename'] && ($row['left_id'] + 1 == $row['right_id']) && $ignore_emptycat)
4c79b5
			{
4c79b5
				continue;
4c79b5
			}
4c79b5
4c79b5
			// ignore non-category?
4c79b5
			if ($row['module_basename'] && $ignore_noncat)
4c79b5
			{
4c79b5
				continue;
4c79b5
			}
4c79b5
4c79b5
			$selected = (is_array($select_id)) ? ((in_array($row['module_id'], $select_id)) ? ' selected="selected"' : '') : (($row['module_id'] == $select_id) ? ' selected="selected"' : '');
4c79b5
4c79b5
			$langname = $this->lang_name($row['module_langname']);
4c79b5
			$module_list .= '<option value="' . $row['module_id'] . '"' . $selected . ((!$row['module_enabled']) ? ' class="disabled"' : '') . '>' . $padding . $langname . '</option>';
4c79b5
4c79b5
			$iteration++;
4c79b5
		}
4c79b5
		$db->sql_freeresult($result);
4c79b5
4c79b5
		unset($padding_store);
4c79b5
4c79b5
		return $module_list;
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Get module branch
4c79b5
	*/
4c79b5
	function get_module_branch($module_id, $type = 'all', $order = 'descending', $include_module = true)
4c79b5
	{
4c79b5
		global $db;
4c79b5
4c79b5
		switch ($type)
4c79b5
		{
4c79b5
			case 'parents':
4c79b5
				$condition = 'm1.left_id BETWEEN m2.left_id AND m2.right_id';
4c79b5
			break;
4c79b5
4c79b5
			case 'children':
4c79b5
				$condition = 'm2.left_id BETWEEN m1.left_id AND m1.right_id';
4c79b5
			break;
4c79b5
4c79b5
			default:
4c79b5
				$condition = 'm2.left_id BETWEEN m1.left_id AND m1.right_id OR m1.left_id BETWEEN m2.left_id AND m2.right_id';
4c79b5
			break;
4c79b5
		}
4c79b5
4c79b5
		$rows = array();
4c79b5
4c79b5
		$sql = 'SELECT m2.*
4c79b5
			FROM ' . MODULES_TABLE . ' m1
4c79b5
			LEFT JOIN ' . MODULES_TABLE . " m2 ON ($condition)
4c79b5
			WHERE m1.module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND m2.module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND m1.module_id = $module_id
4c79b5
			ORDER BY m2.left_id " . (($order == 'descending') ? 'ASC' : 'DESC');
4c79b5
		$result = $db->sql_query($sql);
4c79b5
4c79b5
		while ($row = $db->sql_fetchrow($result))
4c79b5
		{
4c79b5
			if (!$include_module && $row['module_id'] == $module_id)
4c79b5
			{
4c79b5
				continue;
4c79b5
			}
4c79b5
4c79b5
			$rows[] = $row;
4c79b5
		}
4c79b5
		$db->sql_freeresult($result);
4c79b5
4c79b5
		return $rows;
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Remove modules cache file
4c79b5
	*/
4c79b5
	function remove_cache_file()
4c79b5
	{
4c79b5
		global $cache;
4c79b5
4c79b5
		// Sanitise for future path use, it's escaped as appropriate for queries
4c79b5
		$p_class = str_replace(array('.', '/', '\\'), '', basename($this->module_class));
4c79b5
		
4c79b5
		$cache->destroy('_modules_' . $p_class);
4c79b5
4c79b5
		// Additionally remove sql cache
4c79b5
		$cache->destroy('sql', MODULES_TABLE);
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Return correct language name
4c79b5
	*/
4c79b5
	function lang_name($module_langname)
4c79b5
	{
4c79b5
		global $user;
4c79b5
4c79b5
		return (!empty($user->lang[$module_langname])) ? $user->lang[$module_langname] : $module_langname;
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Update/Add module
4c79b5
	*
4c79b5
	* @param bool $run_inline if set to true errors will be returned and no logs being written
4c79b5
	*/
4c79b5
	function update_module_data(&$module_data, $run_inline = false)
4c79b5
	{
4c79b5
		global $db, $user;
4c79b5
4c79b5
		if (!isset($module_data['module_id']))
4c79b5
		{
4c79b5
			// no module_id means we're creating a new category/module
4c79b5
			if ($module_data['parent_id'])
4c79b5
			{
4c79b5
				$sql = 'SELECT left_id, right_id
4c79b5
					FROM ' . MODULES_TABLE . "
4c79b5
					WHERE module_class = '" . $db->sql_escape($module_data['module_class']) . "'
4c79b5
						AND module_id = " . (int) $module_data['parent_id'];
4c79b5
				$result = $db->sql_query($sql);
4c79b5
				$row = $db->sql_fetchrow($result);
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				if (!$row)
4c79b5
				{
4c79b5
					if ($run_inline)
4c79b5
					{
4c79b5
						return 'PARENT_NO_EXIST';
4c79b5
					}
4c79b5
4c79b5
					trigger_error($user->lang['PARENT_NO_EXIST'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
4c79b5
				}
4c79b5
4c79b5
				// Workaround
4c79b5
				$row['left_id'] = (int) $row['left_id'];
4c79b5
				$row['right_id'] = (int) $row['right_id'];
4c79b5
4c79b5
				$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
					SET left_id = left_id + 2, right_id = right_id + 2
4c79b5
					WHERE module_class = '" . $db->sql_escape($module_data['module_class']) . "'
4c79b5
						AND left_id > {$row['right_id']}";
4c79b5
				$db->sql_query($sql);
4c79b5
4c79b5
				$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
					SET right_id = right_id + 2
4c79b5
					WHERE module_class = '" . $db->sql_escape($module_data['module_class']) . "'
4c79b5
						AND {$row['left_id']} BETWEEN left_id AND right_id";
4c79b5
				$db->sql_query($sql);
4c79b5
4c79b5
				$module_data['left_id'] = (int) $row['right_id'];
4c79b5
				$module_data['right_id'] = (int) $row['right_id'] + 1;
4c79b5
			}
4c79b5
			else
4c79b5
			{
4c79b5
				$sql = 'SELECT MAX(right_id) AS right_id
4c79b5
					FROM ' . MODULES_TABLE . "
4c79b5
					WHERE module_class = '" . $db->sql_escape($module_data['module_class']) . "'";
4c79b5
				$result = $db->sql_query($sql);
4c79b5
				$row = $db->sql_fetchrow($result);
4c79b5
				$db->sql_freeresult($result);
4c79b5
4c79b5
				$module_data['left_id'] = (int) $row['right_id'] + 1;
4c79b5
				$module_data['right_id'] = (int) $row['right_id'] + 2;
4c79b5
			}
4c79b5
4c79b5
			$sql = 'INSERT INTO ' . MODULES_TABLE . ' ' . $db->sql_build_array('INSERT', $module_data);
4c79b5
			$db->sql_query($sql);
4c79b5
4c79b5
			$module_data['module_id'] = $db->sql_nextid();
4c79b5
4c79b5
			if (!$run_inline)
4c79b5
			{
4c79b5
				add_log('admin', 'LOG_MODULE_ADD', $this->lang_name($module_data['module_langname']));
4c79b5
			}
4c79b5
		}
4c79b5
		else
4c79b5
		{
4c79b5
			$row = $this->get_module_row($module_data['module_id']);
4c79b5
4c79b5
			if ($module_data['module_basename'] && !$row['module_basename'])
4c79b5
			{
4c79b5
				// we're turning a category into a module
4c79b5
				$branch = $this->get_module_branch($module_data['module_id'], 'children', 'descending', false);
4c79b5
4c79b5
				if (sizeof($branch))
4c79b5
				{
4c79b5
					return array($user->lang['NO_CATEGORY_TO_MODULE']);
4c79b5
				}
4c79b5
			}
4c79b5
4c79b5
			if ($row['parent_id'] != $module_data['parent_id'])
4c79b5
			{
4c79b5
				$this->move_module($module_data['module_id'], $module_data['parent_id']);
4c79b5
			}
4c79b5
4c79b5
			$update_ary = $module_data;
4c79b5
			unset($update_ary['module_id']);
4c79b5
4c79b5
			$sql = 'UPDATE ' . MODULES_TABLE . '
4c79b5
				SET ' . $db->sql_build_array('UPDATE', $update_ary) . "
4c79b5
				WHERE module_class = '" . $db->sql_escape($module_data['module_class']) . "'
4c79b5
					AND module_id = " . (int) $module_data['module_id'];
4c79b5
			$db->sql_query($sql);
4c79b5
4c79b5
			if (!$run_inline)
4c79b5
			{
4c79b5
				add_log('admin', 'LOG_MODULE_EDIT', $this->lang_name($module_data['module_langname']));
4c79b5
			}
4c79b5
		}
4c79b5
4c79b5
		return array();
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Move module around the tree
4c79b5
	*/
4c79b5
	function move_module($from_module_id, $to_parent_id)
4c79b5
	{
4c79b5
		global $db;
4c79b5
4c79b5
		$moved_modules = $this->get_module_branch($from_module_id, 'children', 'descending');
4c79b5
		$from_data = $moved_modules[0];
4c79b5
		$diff = sizeof($moved_modules) * 2;
4c79b5
4c79b5
		$moved_ids = array();
4c79b5
		for ($i = 0; $i < sizeof($moved_modules); ++$i)
4c79b5
		{
4c79b5
			$moved_ids[] = $moved_modules[$i]['module_id'];
4c79b5
		}
4c79b5
4c79b5
		// Resync parents
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET right_id = right_id - $diff
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND left_id < " . (int) $from_data['right_id'] . '
4c79b5
				AND right_id > ' . (int) $from_data['right_id'];
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		// Resync righthand side of tree
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET left_id = left_id - $diff, right_id = right_id - $diff
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND left_id > " . (int) $from_data['right_id'];
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		if ($to_parent_id > 0)
4c79b5
		{
4c79b5
			$to_data = $this->get_module_row($to_parent_id);
4c79b5
4c79b5
			// Resync new parents
4c79b5
			$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
				SET right_id = right_id + $diff
4c79b5
				WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
					AND " . (int) $to_data['right_id'] . ' BETWEEN left_id AND right_id
4c79b5
					AND ' . $db->sql_in_set('module_id', $moved_ids, true);
4c79b5
			$db->sql_query($sql);
4c79b5
4c79b5
			// Resync the righthand side of the tree
4c79b5
			$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
				SET left_id = left_id + $diff, right_id = right_id + $diff
4c79b5
				WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
					AND left_id > " . (int) $to_data['right_id'] . '
4c79b5
					AND ' . $db->sql_in_set('module_id', $moved_ids, true);
4c79b5
			$db->sql_query($sql);
4c79b5
4c79b5
			// Resync moved branch
4c79b5
			$to_data['right_id'] += $diff;
4c79b5
			if ($to_data['right_id'] > $from_data['right_id'])
4c79b5
			{
4c79b5
				$diff = '+ ' . ($to_data['right_id'] - $from_data['right_id'] - 1);
4c79b5
			}
4c79b5
			else
4c79b5
			{
4c79b5
				$diff = '- ' . abs($to_data['right_id'] - $from_data['right_id'] - 1);
4c79b5
			}
4c79b5
		}
4c79b5
		else
4c79b5
		{
4c79b5
			$sql = 'SELECT MAX(right_id) AS right_id
4c79b5
				FROM ' . MODULES_TABLE . "
4c79b5
				WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
					AND " . $db->sql_in_set('module_id', $moved_ids, true);
4c79b5
			$result = $db->sql_query($sql);
4c79b5
			$row = $db->sql_fetchrow($result);
4c79b5
			$db->sql_freeresult($result);
4c79b5
4c79b5
			$diff = '+ ' . (int) ($row['right_id'] - $from_data['left_id'] + 1);
4c79b5
		}
4c79b5
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET left_id = left_id $diff, right_id = right_id $diff
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND " . $db->sql_in_set('module_id', $moved_ids);
4c79b5
		$db->sql_query($sql);
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Remove module from tree
4c79b5
	*/
4c79b5
	function delete_module($module_id)
4c79b5
	{
4c79b5
		global $db, $user;
4c79b5
4c79b5
		$row = $this->get_module_row($module_id);
4c79b5
4c79b5
		$branch = $this->get_module_branch($module_id, 'children', 'descending', false);
4c79b5
4c79b5
		if (sizeof($branch))
4c79b5
		{
4c79b5
			return array($user->lang['CANNOT_REMOVE_MODULE']);
4c79b5
		}
4c79b5
4c79b5
		// If not move
4c79b5
		$diff = 2;
4c79b5
		$sql = 'DELETE FROM ' . MODULES_TABLE . "
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND module_id = $module_id";
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		$row['right_id'] = (int) $row['right_id'];
4c79b5
		$row['left_id'] = (int) $row['left_id'];
4c79b5
4c79b5
		// Resync tree
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET right_id = right_id - $diff
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND left_id < {$row['right_id']} AND right_id > {$row['right_id']}";
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET left_id = left_id - $diff, right_id = right_id - $diff
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND left_id > {$row['right_id']}";
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		add_log('admin', 'LOG_MODULE_REMOVED', $this->lang_name($row['module_langname']));
4c79b5
4c79b5
		return array();
4c79b5
4c79b5
	}
4c79b5
4c79b5
	/**
4c79b5
	* Move module position by $steps up/down
4c79b5
	*/
4c79b5
	function move_module_by($module_row, $action = 'move_up', $steps = 1)
4c79b5
	{
4c79b5
		global $db;
4c79b5
4c79b5
		/**
4c79b5
		* Fetch all the siblings between the module's current spot
4c79b5
		* and where we want to move it to. If there are less than $steps
4c79b5
		* siblings between the current spot and the target then the
4c79b5
		* module will move as far as possible
4c79b5
		*/
4c79b5
		$sql = 'SELECT module_id, left_id, right_id, module_langname
4c79b5
			FROM ' . MODULES_TABLE . "
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND parent_id = " . (int) $module_row['parent_id'] . '
4c79b5
				AND ' . (($action == 'move_up') ? 'right_id < ' . (int) $module_row['right_id'] . ' ORDER BY right_id DESC' : 'left_id > ' . (int) $module_row['left_id'] . ' ORDER BY left_id ASC');
4c79b5
		$result = $db->sql_query_limit($sql, $steps);
4c79b5
4c79b5
		$target = array();
4c79b5
		while ($row = $db->sql_fetchrow($result))
4c79b5
		{
4c79b5
			$target = $row;
4c79b5
		}
4c79b5
		$db->sql_freeresult($result);
4c79b5
4c79b5
		if (!sizeof($target))
4c79b5
		{
4c79b5
			// The module is already on top or bottom
4c79b5
			return false;
4c79b5
		}
4c79b5
4c79b5
		/**
4c79b5
		* $left_id and $right_id define the scope of the nodes that are affected by the move.
4c79b5
		* $diff_up and $diff_down are the values to substract or add to each node's left_id
4c79b5
		* and right_id in order to move them up or down.
4c79b5
		* $move_up_left and $move_up_right define the scope of the nodes that are moving
4c79b5
		* up. Other nodes in the scope of ($left_id, $right_id) are considered to move down.
4c79b5
		*/
4c79b5
		if ($action == 'move_up')
4c79b5
		{
4c79b5
			$left_id = (int) $target['left_id'];
4c79b5
			$right_id = (int) $module_row['right_id'];
4c79b5
4c79b5
			$diff_up = (int) ($module_row['left_id'] - $target['left_id']);
4c79b5
			$diff_down = (int) ($module_row['right_id'] + 1 - $module_row['left_id']);
4c79b5
4c79b5
			$move_up_left = (int) $module_row['left_id'];
4c79b5
			$move_up_right = (int) $module_row['right_id'];
4c79b5
		}
4c79b5
		else
4c79b5
		{
4c79b5
			$left_id = (int) $module_row['left_id'];
4c79b5
			$right_id = (int) $target['right_id'];
4c79b5
4c79b5
			$diff_up = (int) ($module_row['right_id'] + 1 - $module_row['left_id']);
4c79b5
			$diff_down = (int) ($target['right_id'] - $module_row['right_id']);
4c79b5
4c79b5
			$move_up_left = (int) ($module_row['right_id'] + 1);
4c79b5
			$move_up_right = (int) $target['right_id'];
4c79b5
		}
4c79b5
4c79b5
		// Now do the dirty job
4c79b5
		$sql = 'UPDATE ' . MODULES_TABLE . "
4c79b5
			SET left_id = left_id + CASE
4c79b5
				WHEN left_id BETWEEN {$move_up_left} AND {$move_up_right} THEN -{$diff_up}
4c79b5
				ELSE {$diff_down}
4c79b5
			END,
4c79b5
			right_id = right_id + CASE
4c79b5
				WHEN right_id BETWEEN {$move_up_left} AND {$move_up_right} THEN -{$diff_up}
4c79b5
				ELSE {$diff_down}
4c79b5
			END
4c79b5
			WHERE module_class = '" . $db->sql_escape($this->module_class) . "'
4c79b5
				AND left_id BETWEEN {$left_id} AND {$right_id}
4c79b5
				AND right_id BETWEEN {$left_id} AND {$right_id}";
4c79b5
		$db->sql_query($sql);
4c79b5
4c79b5
		$this->remove_cache_file();
4c79b5
4c79b5
		return $this->lang_name($target['module_langname']);
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
?>