lang}/mods/portal/" */ public $language = ''; /** * custom acp template * file must be in "adm/style/portal/" */ public $custom_acp_tpl = ''; /** * hide module name in ACP configuration page */ public $hide_name = false; /** @var \phpbb\config\config */ protected $config; /** @var \phpbb\template */ protected $template; /** * Construct a default module object * * @param \phpbb\config\config $config phpBB config * @param \phpbb\template $template phpBB template */ public function __construct($config, $template) { $this->config = $config; $this->template = $template; } /** * @inheritdoc */ public function get_template_center($module_id) { $template->assign_vars(array( 'EXAMPLE' => $config['board3_configname_' . $module_id], )); return 'modulename_center.html'; } /** * @inheritdoc */ public function get_template_side($module_id) { $template->assign_vars(array( 'EXAMPLE' => $config['board3_configname2_' . $module_id], )); return 'modulename_side.html'; } /** * @inheritdoc */ public function get_template_acp($module_id) { return array( 'title' => 'ACP_CONFIG_MODULENAME', 'vars' => array( 'legend1' => 'ACP_MODULENAME_CONFIGLEGEND', 'board3_configname_' . $module_id => array('lang' => 'MODULENAME_CONFIGNAME', 'validate' => 'string', 'type' => 'text:10:200', 'explain' => false), 'board3_configname2_' . $module_id => array('lang' => 'MODULENAME_CONFIGNAME2', 'validate' => 'int', 'type' => 'text:3:3', 'explain' => true), ), ); } /** * @inheritdoc */ public function install($module_id) { set_config('board3_configname_' . $module_id, 'Hello World!'); set_config('board3_configname2_' . $module_id, 1337); return true; } /** * @inheritdoc */ public function uninstall($module_id, $db) { $del_config = array( 'board3_configname_' . $module_id, 'board3_configname2_' . $module_id, ); $sql = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE ' . $db->sql_in_set('config_name', $del_config); return $db->sql_query($sql); } }