Files
phpbb_mchat_tlw/ucp/ucp_mchat_module.php
2018-08-02 11:34:39 +02:00

37 lines
825 B
PHP

<?php
/**
*
* @package phpBB Extension - mChat
* @copyright (c) 2016 dmzx - http://www.dmzx-web.net
* @copyright (c) 2016 kasimi - https://kasimi.net
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace dmzx\mchat\ucp;
class ucp_mchat_module
{
public $tpl_name;
public $page_title;
public $u_action;
public function main($id, $mode)
{
global $phpbb_container;
// Add the UCP lang file
$language = $phpbb_container->get('language');
$language->add_lang('mchat_ucp', 'dmzx/mchat');
// Set template
$this->tpl_name = 'ucp_mchat';
$this->page_title = 'UCP_MCHAT_CONFIG';
// Get an instance of the UCP controller and display the options
$controller = $phpbb_container->get('dmzx.mchat.ucp.controller');
$controller->$mode($this->u_action);
}
}