PHP Classes

File: config.inc.php

Recommend this page to a friend!
  Classes of Kevin Härtling   TeamSpeak PHP Banner   config.inc.php   Download  
File: config.inc.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: TeamSpeak PHP Banner
Manage users accessing a TeamSpeak server
Author: By
Last change:
Date: 1 year ago
Size: 492 bytes
 

Contents

Class file image Download
<?php
   
/* config.inc.php
        Die Daten müssen an euren Server angepasst werden! (Banner Title wird derzeit noch nicht unterstützt)
        Change the Data!
    */
   
   
$ts3config = array (
       
"ts3host" => "localhost",
       
"ts3port" => "9987",
       
"ts3qport" => "10011",
       
"ts3user" => "serveradmin",
       
"ts3pass" => "",
       
"bannerTitle" => "CannaDesign.de", //Der Banner Titel (Rechts unten - eine Art Wasserzeichen)
       
"showBannerTitle" => "true" //false wenn der bannerTitle nicht angezeigt werden soll
   
);
?>