" . implode(" ", $configError));
35 | }
--------------------------------------------------------------------------------
/admincp/js/index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lautaroangelico/WebEngine/98542131bb88e33eba4603912d1e0dcd6e6bc800/admincp/js/index.php
--------------------------------------------------------------------------------
/admincp/js/metisMenu.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * metismenu - v1.0.3
3 | * Easy menu jQuery plugin for Twitter Bootstrap 3
4 | * https://github.com/onokumus/metisMenu
5 | *
6 | * Made by Osman Nuri Okumuş
7 | * Under MIT License
8 | */
9 | !function(a,b,c){function d(b,c){this.element=b,this.settings=a.extend({},f,c),this._defaults=f,this._name=e,this.init()}var e="metisMenu",f={toggle:!0};d.prototype={init:function(){var b=a(this.element),c=this.settings.toggle;this.isIE()<=9?(b.find("li.active").has("ul").children("ul").collapse("show"),b.find("li").not(".active").has("ul").children("ul").collapse("hide")):(b.find("li.active").has("ul").children("ul").addClass("collapse in"),b.find("li").not(".active").has("ul").children("ul").addClass("collapse")),b.find("li").has("ul").children("a").on("click",function(b){b.preventDefault(),a(this).parent("li").toggleClass("active").children("ul").collapse("toggle"),c&&a(this).parent("li").siblings().removeClass("active").children("ul.in").collapse("hide")})},isIE:function(){for(var a,b=3,d=c.createElement("div"),e=d.getElementsByTagName("i");d.innerHTML="",e[0];)return b>4?b:a}},a.fn[e]=function(b){return this.each(function(){a.data(this,"plugin_"+e)||a.data(this,"plugin_"+e,new d(this,b))})}}(jQuery,window,document);
--------------------------------------------------------------------------------
/admincp/modules/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/admincp/modules/latestpaypal.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2019 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 | ?>
14 |
PayPal Donations
15 | query_fetch("SELECT * FROM ".WEBENGINE_PAYPAL_TRANSACTIONS." ORDER BY id DESC");
20 | if(!is_array($paypalDonations)) throw new Exception("There are no PayPal transactions in the database.");
21 |
22 | echo '
15 | WARNING The plugin system is not currently enabled. To enable it please change your website settings.');
18 | }
19 |
20 | if(isset($_POST['submit'])) {
21 |
22 | if($_FILES["file"]["error"] > 0) {
23 | message('error', 'There has been an error uploading the file.');
24 | } else {
25 | $Plugin = new Plugins();
26 | $Plugin->importPlugin($_FILES);
27 | }
28 | }
29 |
30 | ?>
31 |
38 |
Make sure you upload all the plugin files before importing it.
--------------------------------------------------------------------------------
/admincp/modules/topvotes.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2019 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 | ?>
14 |
Top Voters
15 | query_fetch("SELECT TOP 100 user_id, COUNT(*) as totalvotes FROM ".WEBENGINE_VOTE_LOGS." WHERE timestamp BETWEEN ? AND ? GROUP BY user_id ORDER BY totalvotes DESC", array($ts1,$ts2));
24 |
25 | if($voteLogs && is_array($voteLogs)) {
26 |
27 | echo '
2 |
3 | We have received an email address change request for your account from the following ip address: {IP_ADDRESS}. By completing this request your account's email address will be changed to {NEW_EMAIL} and you will no longer be able to recover access using your current email address. You may proceed by clicking here.
4 |
5 | WARNING:
6 | If you did not request an email address change, ignore it and contact the administrator.
2 |
3 | We have received a password change request at {DATE} from the following ip address: {IP_ADDRESS}. To proceed with this request please click here.
4 |
5 | This request will expire in {EXPIRATION_TIME} hour(s).
6 |
7 | WARNING:
8 | If you did not request a password change request ignore this email and contact the administrator.
2 |
3 | We have received a password recovery request at {DATE} from the following ip address: {IP_ADDRESS}. To proceed with this request please click here.
4 |
5 | WARNING:
6 | If you did not request a password recovery ignore this email and contact the administrator.
2 |
3 | Thank you and welcome to {SERVER_NAME}! Now that you have successfully created an account with us, proceed to downloading our game client in our downloads page. Also we invite you to join our community forums where you will be able to chat with other users and have a great time.
2 |
3 | Thank you for registering an account in {SERVER_NAME}. Before you can login to your account you we need you to verify your email address by clicking the following link:
4 | {LINK}
5 |
6 | Regards,
7 | {SERVER_NAME}.
--------------------------------------------------------------------------------
/includes/logs/database_errors.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lautaroangelico/WebEngine/98542131bb88e33eba4603912d1e0dcd6e6bc800/includes/logs/database_errors.log
--------------------------------------------------------------------------------
/includes/logs/php_errors.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lautaroangelico/WebEngine/98542131bb88e33eba4603912d1e0dcd6e6bc800/includes/logs/php_errors.log
--------------------------------------------------------------------------------
/includes/plugins/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore everything in this directory
2 | *
3 | # Except this file
4 | !.gitignore
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2019 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | # Define CMS access
15 | define('access', 'index');
16 |
17 | try {
18 |
19 | # Load WebEngine
20 | if(!@include_once('includes/webengine.php')) throw new Exception('Could not load WebEngine CMS.');
21 |
22 | } catch (Exception $ex) {
23 | ob_clean();
24 | $errorPage = file_get_contents('includes/error.html');
25 | echo str_replace("{ERROR_MESSAGE}", $ex->getMessage(), $errorPage);
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/install/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine off
--------------------------------------------------------------------------------
/install/index.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2019 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | header('Location: install.php');
15 | die();
--------------------------------------------------------------------------------
/install/sql/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_ACCOUNT_COUNTRY.txt:
--------------------------------------------------------------------------------
1 | SET ANSI_NULLS ON
2 |
3 | SET QUOTED_IDENTIFIER ON
4 |
5 | SET ANSI_PADDING ON
6 |
7 | CREATE TABLE [dbo].[{TABLE_NAME}](
8 | [account] [varchar](10) NOT NULL,
9 | [country] [varchar](10) NOT NULL,
10 | [lastchange] [datetime] NULL,
11 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
12 | (
13 | [account] ASC
14 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
15 | ) ON [PRIMARY]
16 |
17 | SET ANSI_PADDING OFF
18 |
19 |
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_BANS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [account_id] [varchar](50) NOT NULL,
4 | [banned_by] [varchar](50) NOT NULL,
5 | [ban_date] [int] NOT NULL,
6 | [ban_days] [int] NOT NULL,
7 | [ban_reason] [varchar](100) NULL
8 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_BAN_LOG.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [account_id] [varchar](50) NOT NULL,
4 | [banned_by] [varchar](50) NOT NULL,
5 | [ban_type] [varchar](50) NOT NULL,
6 | [ban_date] [varchar](50) NOT NULL,
7 | [ban_days] [int] NULL,
8 | [ban_reason] [varchar](100) NULL
9 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_BLOCKED_IP.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [block_ip] [varchar](50) NOT NULL,
4 | [block_by] [varchar](25) NOT NULL,
5 | [block_date] [varchar](50) NOT NULL,
6 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
7 | (
8 | [block_ip] ASC
9 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
10 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_CREDITS_CONFIG.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [config_id] [int] IDENTITY(1,1) NOT NULL,
3 | [config_title] [varchar](50) NOT NULL,
4 | [config_database] [varchar](50) NOT NULL,
5 | [config_table] [varchar](50) NOT NULL,
6 | [config_credits_col] [varchar](50) NOT NULL,
7 | [config_user_col] [varchar](50) NOT NULL,
8 | [config_user_col_id] [varchar](50) NOT NULL,
9 | [config_checkonline] [tinyint] NOT NULL,
10 | [config_display] [tinyint] NOT NULL,
11 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
12 | (
13 | [config_id] ASC
14 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
15 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_CREDITS_LOGS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [log_id] [int] IDENTITY(1,1) NOT NULL,
3 | [log_config] [varchar](50) NOT NULL,
4 | [log_identifier] [varchar](50) NOT NULL,
5 | [log_credits] [int] NOT NULL,
6 | [log_transaction] [varchar](50) NOT NULL,
7 | [log_date] [varchar](50) NOT NULL,
8 | [log_inadmincp] [tinyint] NULL,
9 | [log_module] [varchar](50) NULL,
10 | [log_ip] [varchar](50) NULL,
11 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
12 | (
13 | [log_id] ASC
14 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
15 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_CRON.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [cron_id] [int] IDENTITY(1,1) NOT NULL,
3 | [cron_name] [varchar](100) NOT NULL,
4 | [cron_description] [varchar](max) NULL,
5 | [cron_file_run] [varchar](100) NOT NULL,
6 | [cron_run_time] [varchar](50) NOT NULL,
7 | [cron_last_run] [varchar](50) NULL,
8 | [cron_status] [int] NOT NULL,
9 | [cron_protected] [int] NOT NULL,
10 | [cron_file_md5] [varchar](50) NOT NULL
11 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_DOWNLOADS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [download_id] [int] IDENTITY(1,1) NOT NULL,
3 | [download_title] [varchar](100) NOT NULL,
4 | [download_description] [varchar](100) NULL,
5 | [download_link] [varchar](max) NOT NULL,
6 | [download_size] [float] NULL,
7 | [download_type] [int] NOT NULL
8 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_FLA.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [username] [varchar](50) NOT NULL,
4 | [ip_address] [varchar](50) NOT NULL,
5 | [unlock_timestamp] [varchar](50) NOT NULL,
6 | [failed_attempts] [int] NOT NULL,
7 | [timestamp] [varchar](50) NOT NULL
8 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_NEWS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [news_id] [int] IDENTITY(1,1) NOT NULL,
3 | [news_title] [varchar](max) NOT NULL,
4 | [news_author] [varchar](50) NOT NULL,
5 | [news_date] [varchar](50) NOT NULL,
6 | [news_content] [text] NOT NULL,
7 | [allow_comments] [int] NOT NULL
8 | ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_NEWS_TRANSLATIONS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [news_id] [int] NOT NULL,
3 | [news_language] [varchar](10) NOT NULL,
4 | [news_title] [varchar](max) NOT NULL,
5 | [news_content] [text] NOT NULL
6 | ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_PASSCHANGE_REQUEST.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [user_id] [int] NOT NULL,
3 | [new_password] [varchar](200) NOT NULL,
4 | [auth_code] [varchar](50) NOT NULL,
5 | [request_date] [varchar](50) NOT NULL,
6 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
7 | (
8 | [user_id] ASC
9 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
10 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_PAYPAL_TRANSACTIONS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [transaction_id] [varchar](50) NOT NULL,
4 | [user_id] [int] NOT NULL,
5 | [payment_amount] [varchar](50) NOT NULL,
6 | [paypal_email] [varchar](200) NOT NULL,
7 | [transaction_date] [varchar](50) NOT NULL,
8 | [transaction_status] [int] NOT NULL,
9 | [order_id] [varchar](50) NOT NULL,
10 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
11 | (
12 | [transaction_id] ASC
13 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
14 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_PLUGINS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [name] [varchar](100) NOT NULL,
4 | [author] [varchar](50) NOT NULL,
5 | [version] [varchar](50) NOT NULL,
6 | [compatibility] [varchar](max) NOT NULL,
7 | [folder] [varchar](max) NOT NULL,
8 | [files] [varchar](max) NOT NULL,
9 | [status] [int] NOT NULL,
10 | [install_date] [varchar](50) NOT NULL,
11 | [installed_by] [varchar](50) NOT NULL
12 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_REGISTER_ACCOUNT.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [registration_account] [varchar](50) NOT NULL,
3 | [registration_password] [varchar](50) NOT NULL,
4 | [registration_email] [varchar](50) NOT NULL,
5 | [registration_date] [varchar](50) NOT NULL,
6 | [registration_ip] [varchar](50) NOT NULL,
7 | [registration_key] [varchar](50) NOT NULL,
8 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
9 | (
10 | [registration_account] ASC
11 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
12 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_VOTES.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [id] [int] IDENTITY(1,1) NOT NULL,
3 | [user_id] [int] NOT NULL,
4 | [user_ip] [varchar](50) NOT NULL,
5 | [vote_site_id] [int] NOT NULL,
6 | [timestamp] [varchar](50) NOT NULL
7 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_VOTE_LOGS.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [user_id] [int] NOT NULL,
3 | [votesite_id] [int] NOT NULL,
4 | [timestamp] [varchar](50) NOT NULL
5 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/install/sql/WEBENGINE_VOTE_SITES.txt:
--------------------------------------------------------------------------------
1 | CREATE TABLE [dbo].[{TABLE_NAME}](
2 | [votesite_id] [int] IDENTITY(1,1) NOT NULL,
3 | [votesite_title] [varchar](50) NOT NULL,
4 | [votesite_link] [varchar](max) NOT NULL,
5 | [votesite_reward] [int] NOT NULL,
6 | [votesite_time] [int] NOT NULL,
7 | CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED
8 | (
9 | [votesite_id] ASC
10 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
11 | ) ON [PRIMARY]
--------------------------------------------------------------------------------
/modules/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/modules/donation.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2019 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | try {
15 |
16 | if(!mconfig('active')) throw new Exception(lang('error_47',true));
17 |
18 | echo '
'.lang('module_titles_txt_11',true).'
';
19 |
20 | echo '
';
21 | echo '
';
22 | echo '';
23 | echo '
';
24 | echo '
';
25 |
26 | } catch(Exception $ex) {
27 | message('error', $ex->getMessage());
28 | }
--------------------------------------------------------------------------------
/modules/language/switch.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2025 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | try {
15 | if(!config('language_switch_active',true)) throw new Exception(lang('error_62'));
16 | if(!isset($_GET['to'])) throw new Exception(lang('error_63'));
17 | if(strlen($_GET['to']) != 2) throw new Exception(lang('error_63'));
18 | if(!Validator::Alpha($_GET['to'])) throw new Exception(lang('error_63'));
19 | if(!$handler->switchLanguage($_GET['to'])) throw new Exception(lang('error_65'));
20 | redirect();
21 | } catch (Exception $ex) {
22 | if(!config('error_reporting',true)) redirect();
23 | message('error', $ex->getMessage());
24 | }
--------------------------------------------------------------------------------
/modules/logout.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2017 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | if(!isLoggedIn()) { redirect(); }
15 |
16 | // Sign Out Process
17 | logOutUser();
18 |
19 | // Redirect to home
20 | redirect();
--------------------------------------------------------------------------------
/modules/privacy.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2020 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 | ?>
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec molestie ultricies sem, ac maximus felis suscipit at. Phasellus eu hendrerit arcu, quis finibus turpis. Sed efficitur, libero vel aliquam mollis, quam justo gravida est, vel ornare metus diam vitae eros. Morbi et condimentum libero. In quis sodales nisi, nec efficitur ipsum.
22 |
23 |
Nunc velit tellus
24 |
Vivamus vitae massa eget risus dapibus consectetur. Etiam eu sagittis magna. Donec facilisis dolor erat, at consequat ligula tincidunt imperdiet. Nulla facilisi. Suspendisse varius odio tincidunt finibus convallis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent aliquet commodo odio, ut elementum massa congue eu. Aenean magna sapien, sollicitudin in diam non, molestie tristique dolor. Nam a felis fringilla, rhoncus ex et, mattis purus. Etiam vitae porttitor lacus. Nam molestie, massa nec blandit gravida, velit neque porttitor augue, et eleifend tellus ex et eros. Sed nibh tortor, pellentesque nec ullamcorper ac, convallis ut mi. Nunc maximus posuere rhoncus.
25 |
26 |
Donec id facilisis nulla
27 |
Donec vel erat ut nulla porttitor iaculis eu ac lacus. Curabitur vitae justo efficitur, posuere nunc ut, aliquet eros. Donec pulvinar auctor dui.
33 |
--------------------------------------------------------------------------------
/modules/rankings.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2025 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 |
14 | if(!isset($_REQUEST['subpage']) || empty($_REQUEST['subpage'])) {
15 | redirect(1,$_REQUEST['page'].'/'.mconfig('rankings_show_default').'/');
16 | }
--------------------------------------------------------------------------------
/modules/refunds.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2020 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 | ?>
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec molestie ultricies sem, ac maximus felis suscipit at. Phasellus eu hendrerit arcu, quis finibus turpis. Sed efficitur, libero vel aliquam mollis, quam justo gravida est, vel ornare metus diam vitae eros. Morbi et condimentum libero. In quis sodales nisi, nec efficitur ipsum.
22 |
23 |
Nunc velit tellus
24 |
Vivamus vitae massa eget risus dapibus consectetur. Etiam eu sagittis magna. Donec facilisis dolor erat, at consequat ligula tincidunt imperdiet. Nulla facilisi. Suspendisse varius odio tincidunt finibus convallis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent aliquet commodo odio, ut elementum massa congue eu. Aenean magna sapien, sollicitudin in diam non, molestie tristique dolor. Nam a felis fringilla, rhoncus ex et, mattis purus. Etiam vitae porttitor lacus. Nam molestie, massa nec blandit gravida, velit neque porttitor augue, et eleifend tellus ex et eros. Sed nibh tortor, pellentesque nec ullamcorper ac, convallis ut mi. Nunc maximus posuere rhoncus.
25 |
26 |
Donec id facilisis nulla
27 |
Donec vel erat ut nulla porttitor iaculis eu ac lacus. Curabitur vitae justo efficitur, posuere nunc ut, aliquet eros. Donec pulvinar auctor dui.
33 |
--------------------------------------------------------------------------------
/modules/tos.php:
--------------------------------------------------------------------------------
1 |
8 | * @copyright (c) 2013-2025 Lautaro Angelico, All Rights Reserved
9 | *
10 | * Licensed under the MIT license
11 | * http://opensource.org/licenses/MIT
12 | */
13 | ?>
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec molestie ultricies sem, ac maximus felis suscipit at. Phasellus eu hendrerit arcu, quis finibus turpis. Sed efficitur, libero vel aliquam mollis, quam justo gravida est, vel ornare metus diam vitae eros. Morbi et condimentum libero. In quis sodales nisi, nec efficitur ipsum.
22 |
23 |
Nunc velit tellus
24 |
Vivamus vitae massa eget risus dapibus consectetur. Etiam eu sagittis magna. Donec facilisis dolor erat, at consequat ligula tincidunt imperdiet. Nulla facilisi. Suspendisse varius odio tincidunt finibus convallis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Praesent aliquet commodo odio, ut elementum massa congue eu. Aenean magna sapien, sollicitudin in diam non, molestie tristique dolor. Nam a felis fringilla, rhoncus ex et, mattis purus. Etiam vitae porttitor lacus. Nam molestie, massa nec blandit gravida, velit neque porttitor augue, et eleifend tellus ex et eros. Sed nibh tortor, pellentesque nec ullamcorper ac, convallis ut mi. Nunc maximus posuere rhoncus.
25 |
26 |
Donec id facilisis nulla
27 |
Donec vel erat ut nulla porttitor iaculis eu ac lacus. Curabitur vitae justo efficitur, posuere nunc ut, aliquet eros. Donec pulvinar auctor dui.