From 6717039e918668525279d20007fd657f24785d1b Mon Sep 17 00:00:00 2001 From: kremsy Date: Fri, 14 Feb 2014 19:22:11 +0100 Subject: [PATCH] dedi begin --- application/plugins/Dedimania/Dedimania.php | 85 +++++++++++++++++++ .../plugins/Dedimania/DedimaniaData.php | 30 +++++++ 2 files changed, 115 insertions(+) create mode 100644 application/plugins/Dedimania/Dedimania.php create mode 100644 application/plugins/Dedimania/DedimaniaData.php diff --git a/application/plugins/Dedimania/Dedimania.php b/application/plugins/Dedimania/Dedimania.php new file mode 100644 index 00000000..8cabbfa6 --- /dev/null +++ b/application/plugins/Dedimania/Dedimania.php @@ -0,0 +1,85 @@ +maniaControl = $maniaControl; + } + + /** + * Unload the plugin and its resources + */ + public function unload() { + // TODO: Implement unload() method. + } + + /** + * Get plugin id + * + * @return int + */ + public static function getId() { + // TODO: Implement getId() method. + } + + /** + * Get Plugin Name + * + * @return string + */ + public static function getName() { + // TODO: Implement getName() method. + } + + /** + * Get Plugin Version + * + * @return float + */ + public static function getVersion() { + // TODO: Implement getVersion() method. + } + + /** + * Get Plugin Author + * + * @return string + */ + public static function getAuthor() { + // TODO: Implement getAuthor() method. + } + + /** + * Get Plugin Description + * + * @return string + */ + public static function getDescription() { + // TODO: Implement getDescription() method. +}} \ No newline at end of file diff --git a/application/plugins/Dedimania/DedimaniaData.php b/application/plugins/Dedimania/DedimaniaData.php new file mode 100644 index 00000000..b624c37f --- /dev/null +++ b/application/plugins/Dedimania/DedimaniaData.php @@ -0,0 +1,30 @@ +url = $url; + $this->socket = $socket; + $this->function = $function; + $this->creationTime = time(); + $this->streamBuffer = '';*/ + } +} \ No newline at end of file