about summary refs log tree commit diff stats
path: root/data/maps/the_between/rooms
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-28 13:29:39 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-28 13:29:39 -0400
commit8960e61dc612fe2c4ad5df5cdaf2abf6a7edd773 (patch)
treec37fbef8c4219ae1be3e138dc56b4cb4ecebe16d /data/maps/the_between/rooms
parent907a59f52c14af709599d8da8b37285ae6794f59 (diff)
downloadlingo2-archipelago-8960e61dc612fe2c4ad5df5cdaf2abf6a7edd773.tar.gz
lingo2-archipelago-8960e61dc612fe2c4ad5df5cdaf2abf6a7edd773.tar.bz2
lingo2-archipelago-8960e61dc612fe2c4ad5df5cdaf2abf6a7edd773.zip
Separate The Orb's middle port into own region
Diffstat (limited to 'data/maps/the_between/rooms')
0 files changed, 0 insertions, 0 deletions
19:36:18 +0000 Update: Added encryption field to phpBB3 ACP' href='/instadisc/commit/update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php?id=7c3a2b1456bf64bbbbc4a3ea366c16e17be5bee8'>7c3a2b1 ^
4151cef ^
0632618 ^
e554fa7 ^
4151cef ^
64fceb3 ^

7c3a2b1 ^
4151cef ^
e554fa7 ^
4151cef ^
64fceb3 ^

7c3a2b1 ^
4151cef ^
e554fa7 ^



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


























                                                                            
                                                                                 


                            

                                                                                          

                                                                                    
                                                                                  
 
                                                                                                                       
                        
                                                                                                                                   

                                                                                                            
                                                                                                          
 
                                                     
                                                                 

                                                                 
                                                                 
                                                                          



                           
<?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_series_url', $_POST['series_url']);
			set_config('id_subscription_id', $_POST['subscription_id']);
			set_config('id_encryption_key', $_POST['encryption_key']);

			trigger_error($user->lang['ID_CHANGES_SAVED'] . adm_back_link($this->u_action), E_USER_NOTICE);
		} else {
			$idst	= isset($config['id_subscription_title']) ? $config['id_subscription_title'] : $config['sitename'];
			$idsu	= isset($config['id_series_url']) ? $config['id_series_url'] : '';
			$idsi	= isset($config['id_subscription_id']) ? $config['id_subscription_id'] : '';
			$idec	= isset($config['id_encryption_key']) ? $config['id_encryption_key'] : '';

			$template->assign_vars(array(
				'S_SUBSCRIPTION_TITLE'	=> $idst,
				'S_SERIES_URL'		=> $idsu,
				'S_SUBSCRIPTION_ID'	=> $idsi,
				'S_ENCRYPTION_KEY'	=> $idec,
				'S_SUBMIT'		=> $this->u_action
			));
		}
	}
}