ts-website/config/config.template.php

66 lines
3.0 KiB
PHP
Raw Normal View History

2016-06-28 21:18:59 +00:00
<?php
/*
2016-07-25 14:14:04 +00:00
Author: Wruczek
Contact me:
2016-06-28 21:18:59 +00:00
TeamSpeak: ts.wruczek.top
2016-07-25 14:14:04 +00:00
Email: wruczekk@gmail.com
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9PL5J7ULZQYJQ
2016-06-28 21:18:59 +00:00
*/
2016-07-25 14:14:04 +00:00
/************* General configuration *************/
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
$config["general"]["title"] = "BestTS.NET"; // Website title - displayed in the menu
$config["general"]["icon"] = "img/icon/icon-32.png"; // Website icon
$config["general"]["subtitle"] = " - Best TeamSpeak server!"; // Website subtitle
$config["general"]["desc"] = "Polski serwer TeamSpeak! Zapraszamy :)"; // Website description - displayed in Google search engine
$config["general"]["newsDir"] = "config/news"; // News folder (relative to project folder)
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
$config["general"]["enablehta"] = false; // Enable / Disable additional website features (recommended, but
// you need to have up-to-date version of Apache and install mod_rewrite)
// After setting to true, go into .htaccess file and uncomment 19 line
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
/********* TeamSpeak configuration *********/
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
$config['teamspeak']['host'] = '127.0.0.1'; // TeamSpeak host address
$config['teamspeak']['login'] = 'serveradmin'; // Login
$config['teamspeak']['password'] = 'pa$$word'; // Password
$config['teamspeak']['server_port'] = 9987; // TeamSpeak server port
$config['teamspeak']['query_port'] = 10011; // Query port
$config['teamspeak']['displayip'] = 'ts.server.net'; // IP shown to users and used for connections
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
/************* Additional navigation links - you can link to your stuff *************/
2016-06-28 21:18:59 +00:00
$config["navlinks"] = array(
2016-07-25 14:14:04 +00:00
// TEMPLATE: array("icon", "displayed text", "link"), ICON is an icon name from: http://fontawesome.io/icons/
array("fa-facebook-official", "Facebook", "https://facebook.com/bestteamspeakXd"),
2016-06-28 21:18:59 +00:00
array("fa-comments", "Forum", "forum"),
2016-07-25 14:14:04 +00:00
array("fa-shopping-cart", "Shop", "shop")
2016-06-28 21:18:59 +00:00
);
2016-07-25 14:14:04 +00:00
/************* Adminlist configuration *************/
2016-06-28 21:18:59 +00:00
2016-07-25 14:14:04 +00:00
// ID of servergroups displayed as admins in Adminlist. Put it in the same way you want it to be displayed.
2016-06-28 21:18:59 +00:00
$config["adminlist"] = array(6, 17, 19);
2016-07-10 16:46:22 +00:00
2016-07-25 14:14:04 +00:00
/************* Contact panel configuration *************/
2016-07-11 15:04:37 +00:00
2016-07-25 14:14:04 +00:00
// Set $config['contact']['text'] = ''; to hide this panel
$config['contact']['title'] = 'Contact the staff';
2016-07-11 15:04:37 +00:00
$config['contact']['text'] = '
2016-07-12 03:42:33 +00:00
<ul class="list-unstyled">
2016-09-27 23:20:56 +00:00
<li>TeamSpeak: <span class="pullright">channel <a href="ts3server://ts.wruczek.top?cid=30">Support</a></span></li>
2016-07-10 16:46:22 +00:00
<li>Email: <span class="pullright"><a href="mailto:kontakt@email.com">konakt@email.com</a></span></li>
2016-07-25 14:14:04 +00:00
<li>GaduGadu: <span class="pullright"><a href="gg:123456789">123456789 <img src="https://status.gadu-gadu.pl/users/status.asp?id=49568758&styl=1"></a></span></li>
2016-07-11 15:04:37 +00:00
<li>Steam: <span class="pullright"><a href="http://steamcommunity.com/id/wruczek">Wruczek</a></span></li>
2016-07-12 03:42:33 +00:00
</ul>
2016-07-10 16:46:22 +00:00
';