1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
/**
*
* @package acp
* @version $Id: v3_modules.xml 52 2008-08-05 18:55:00Z hatkirby $
* @copyright (c) 2008 Starla Insigna
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @package acp
*/
class acp_instadisc
{
var $u_action;
function main($id, $mode)
{
global $db, $user, $auth, $template;
global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx;
$user->add_lang('mods/instadisc');
// Set up the page
$this->tpl_name = 'acp_instadisc';
$this->page_title = 'ACP_INSTADISC';
$submit = isset($_POST['submit']) ? true : false;
if ($submit)
{
// Add config to the database
set_config('id_subscription_title', $_POST['subscription_title']);
set_config('id_central_server', $_POST['central_server']);
set_config('id_username', $_POST['central_server_username']);
set_config('id_password', $_POST['central_server_password']);
set_config('id_activation_key', $_POST['central_server_activation']);
trigger_error('The changes you made to your InstaDisc settings have been saved!' . adm_back_link($this->u_action), E_USER_NOTICE);
} else {
$idst = isset($config['id_subscription_title']) ? $config['id_subscription_title'] : $config['sitename'];
$idcs = isset($config['id_central_server']) ? $config['id_central_server'] : '';
$idun = isset($config['id_username']) ? $config['id_username'] : '';
$idps = isset($config['id_password']) ? $config['id_password'] : '';
$idak = isset($config['id_activation_key']) ? $config['id_activation_key'] : '';
$idsf = $config['server_protocol'] . $config['server_name'] . $config['script_path'] . '/instadisc.php';
$template->assign_vars(array(
'S_SUBSCRIPTION_TITLE' => $idst,
'S_CENTRAL_SERVER' => $idcs,
'S_USERNAME' => $idun,
'S_PASSWORD' => $idps,
'S_ACTIVATION' => $idak,
'S_SUBSCRIPTION_FILE' => $idsf,
'S_SUBMIT' => $this->u_action
));
}
}
}
|