├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── examples ├── MultipleBotTypes │ ├── README.md │ ├── config │ │ └── Configuration.php │ ├── favicon.ico │ ├── index.php │ ├── setup │ │ └── create-database.sql │ └── src │ │ ├── botserver.php │ │ ├── com │ │ └── examples │ │ │ ├── bots │ │ │ ├── chatbot │ │ │ │ ├── ChatBot.php │ │ │ │ └── ChatBotModel.php │ │ │ └── greetingbot │ │ │ │ ├── GreetingBot.php │ │ │ │ └── GreetingBotModel.php │ │ │ └── web │ │ │ └── controller │ │ │ ├── BotConfig.php │ │ │ ├── BotConfigCB.php │ │ │ ├── BotConfigGB.php │ │ │ ├── BotServer.php │ │ │ └── UserAdministration.php │ │ ├── start_botserver.sh │ │ └── web │ │ ├── images │ │ ├── bot.png │ │ ├── bot_add.png │ │ ├── bot_delete.png │ │ ├── bot_edit.png │ │ ├── login.png │ │ ├── logo.png │ │ ├── menu.png │ │ ├── menuback.png │ │ ├── progress.png │ │ ├── server.png │ │ ├── serverdown.png │ │ ├── serverstat.png │ │ ├── serverup.png │ │ ├── user.png │ │ ├── user_add.png │ │ ├── user_delete.png │ │ └── user_edit.png │ │ ├── js │ │ ├── layout.js │ │ ├── logger.js │ │ └── rest.js │ │ ├── libs │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui-sliderAccess.js │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ ├── jquery │ │ │ └── jquery.js │ │ └── md5.min.js │ │ ├── styles │ │ └── main.css │ │ └── templates │ │ ├── BotConfig.html │ │ ├── BotServer.html │ │ ├── Footer.html │ │ ├── Head.html │ │ ├── Main.html │ │ └── UserAdministration.html └── libraries │ ├── TeamSpeak3-v1.1.24-patch_multiple_connections.patch.zip │ └── TeamSpeak3 │ ├── Adapter │ ├── Abstract.php │ ├── Blacklist.php │ ├── Blacklist │ │ └── Exception.php │ ├── Exception.php │ ├── FileTransfer.php │ ├── FileTransfer │ │ └── Exception.php │ ├── ServerQuery.php │ ├── ServerQuery │ │ ├── Event.php │ │ ├── Exception.php │ │ └── Reply.php │ ├── TSDNS.php │ ├── TSDNS │ │ └── Exception.php │ ├── Update.php │ └── Update │ │ └── Exception.php │ ├── Exception.php │ ├── Helper │ ├── Char.php │ ├── Convert.php │ ├── Crypt.php │ ├── Exception.php │ ├── Profiler.php │ ├── Profiler │ │ ├── Exception.php │ │ └── Timer.php │ ├── Signal.php │ ├── Signal │ │ ├── Exception.php │ │ ├── Handler.php │ │ └── Interface.php │ ├── String.php │ └── Uri.php │ ├── Node │ ├── Abstract.php │ ├── Channel.php │ ├── Channelgroup.php │ ├── Client.php │ ├── Exception.php │ ├── Host.php │ ├── Server.php │ └── Servergroup.php │ ├── TeamSpeak3.php │ ├── Transport │ ├── Abstract.php │ ├── Exception.php │ ├── TCP.php │ └── UDP.php │ └── Viewer │ ├── Html.php │ ├── Interface.php │ └── Text.php └── libraries └── TeamSpeakPHPBots ├── README.md ├── docs ├── API-Docs.zip └── create-docs.sh ├── setup ├── Configuration.php.Template └── create-database.sql ├── src ├── com │ └── tsphpbots │ │ ├── bots │ │ ├── BotBase.php │ │ └── BotManager.php │ │ ├── config │ │ └── Config.php │ │ ├── db │ │ ├── DB.php │ │ ├── DBConnection.php │ │ └── DBObject.php │ │ ├── service │ │ ├── ClientQuery.php │ │ ├── ServerBotAction.php │ │ └── ServerQuery.php │ │ ├── teamspeak │ │ └── TSServerConnections.php │ │ ├── user │ │ ├── Auth.php │ │ └── User.php │ │ ├── utils │ │ ├── Log.php │ │ └── TestUtils.php │ │ └── web │ │ ├── controller │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── Main.php │ │ ├── PageNotFound.php │ │ └── UserAdmin.php │ │ └── core │ │ ├── BaseController.php │ │ ├── BaseRESTController.php │ │ └── PageLoader.php └── web │ └── templates │ ├── Footer.html │ ├── Head.html │ ├── Main.html │ └── PageNotFound.html └── tests ├── README.md ├── TestConfiguration.php ├── bootstrap.php ├── create-testdatabase.sql ├── src └── com │ └── tsphpbots │ ├── bots │ ├── BotBaseTest.php │ ├── BotManagerTest.php │ ├── TestBot.php │ └── TestBotModel.php │ ├── config │ └── ConfigTest.php │ ├── db │ ├── DBObjectTest.php │ └── DBTest.php │ ├── user │ ├── AuthTest.php │ └── UserTest.php │ ├── utils │ └── LogTest.php │ └── web │ └── controller │ └── PageLoaderTest.php └── start-tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /nbproject 3 | composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/composer.json -------------------------------------------------------------------------------- /examples/MultipleBotTypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/README.md -------------------------------------------------------------------------------- /examples/MultipleBotTypes/config/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/config/Configuration.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/favicon.ico -------------------------------------------------------------------------------- /examples/MultipleBotTypes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/index.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/setup/create-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/setup/create-database.sql -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/botserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/botserver.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/bots/chatbot/ChatBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/bots/chatbot/ChatBot.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/bots/chatbot/ChatBotModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/bots/chatbot/ChatBotModel.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/bots/greetingbot/GreetingBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/bots/greetingbot/GreetingBot.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/bots/greetingbot/GreetingBotModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/bots/greetingbot/GreetingBotModel.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/web/controller/BotConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/web/controller/BotConfig.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/web/controller/BotConfigCB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/web/controller/BotConfigCB.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/web/controller/BotConfigGB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/web/controller/BotConfigGB.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/web/controller/BotServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/web/controller/BotServer.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/com/examples/web/controller/UserAdministration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/com/examples/web/controller/UserAdministration.php -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/start_botserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/start_botserver.sh -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/bot.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/bot_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/bot_add.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/bot_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/bot_delete.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/bot_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/bot_edit.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/login.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/logo.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/menu.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/menuback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/menuback.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/progress.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/server.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/serverdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/serverdown.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/serverstat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/serverstat.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/serverup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/serverup.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/user.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/user_add.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/user_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/user_delete.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/images/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/images/user_edit.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/js/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/js/layout.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/js/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/js/logger.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/js/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/js/rest.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/index.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui-sliderAccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui-sliderAccess.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.structure.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/jquery/jquery.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/libs/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/libs/md5.min.js -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/styles/main.css -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/BotConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/BotConfig.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/BotServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/BotServer.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/Footer.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/Head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/Head.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/Main.html -------------------------------------------------------------------------------- /examples/MultipleBotTypes/src/web/templates/UserAdministration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/MultipleBotTypes/src/web/templates/UserAdministration.html -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3-v1.1.24-patch_multiple_connections.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3-v1.1.24-patch_multiple_connections.patch.zip -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Abstract.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Blacklist.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Blacklist/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Blacklist/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/FileTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/FileTransfer.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/FileTransfer/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/FileTransfer/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/ServerQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/ServerQuery.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/ServerQuery/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/ServerQuery/Event.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/ServerQuery/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/ServerQuery/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/ServerQuery/Reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/ServerQuery/Reply.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/TSDNS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/TSDNS.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/TSDNS/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/TSDNS/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Update.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Adapter/Update/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Adapter/Update/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Char.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Char.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Convert.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Crypt.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Profiler.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Profiler/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Profiler/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Profiler/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Profiler/Timer.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Signal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Signal.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Signal/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Signal/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Signal/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Signal/Handler.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Signal/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Signal/Interface.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/String.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Helper/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Helper/Uri.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Abstract.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Channel.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Channelgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Channelgroup.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Client.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Host.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Server.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Node/Servergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Node/Servergroup.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/TeamSpeak3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/TeamSpeak3.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Transport/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Transport/Abstract.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Transport/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Transport/Exception.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Transport/TCP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Transport/TCP.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Transport/UDP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Transport/UDP.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Viewer/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Viewer/Html.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Viewer/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Viewer/Interface.php -------------------------------------------------------------------------------- /examples/libraries/TeamSpeak3/Viewer/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/examples/libraries/TeamSpeak3/Viewer/Text.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/README.md -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/docs/API-Docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/docs/API-Docs.zip -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/docs/create-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/docs/create-docs.sh -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/setup/Configuration.php.Template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/setup/Configuration.php.Template -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/setup/create-database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/setup/create-database.sql -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/bots/BotBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/bots/BotBase.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/bots/BotManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/bots/BotManager.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/config/Config.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DB.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DBConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DBConnection.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DBObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/db/DBObject.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ClientQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ClientQuery.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ServerBotAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ServerBotAction.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ServerQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/service/ServerQuery.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/teamspeak/TSServerConnections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/teamspeak/TSServerConnections.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/user/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/user/Auth.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/user/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/user/User.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/utils/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/utils/Log.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/utils/TestUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/utils/TestUtils.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Login.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Logout.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/Main.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/PageNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/PageNotFound.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/UserAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/controller/UserAdmin.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/BaseController.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/BaseRESTController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/BaseRESTController.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/PageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/com/tsphpbots/web/core/PageLoader.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/web/templates/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/web/templates/Footer.html -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/web/templates/Head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/web/templates/Head.html -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/web/templates/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/web/templates/Main.html -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/src/web/templates/PageNotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/src/web/templates/PageNotFound.html -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/README.md -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/TestConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/TestConfiguration.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/bootstrap.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/create-testdatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/create-testdatabase.sql -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/BotBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/BotBaseTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/BotManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/BotManagerTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/TestBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/TestBot.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/TestBotModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/bots/TestBotModel.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/config/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/config/ConfigTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/db/DBObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/db/DBObjectTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/db/DBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/db/DBTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/user/AuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/user/AuthTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/user/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/user/UserTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/utils/LogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/utils/LogTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/web/controller/PageLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/src/com/tsphpbots/web/controller/PageLoaderTest.php -------------------------------------------------------------------------------- /libraries/TeamSpeakPHPBots/tests/start-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botorabi/TeamSpeakPHPBots/HEAD/libraries/TeamSpeakPHPBots/tests/start-tests.sh --------------------------------------------------------------------------------