diff --git a/application/core/Plugins/PluginManager.php b/application/core/Plugins/PluginManager.php index 6d9ebe9a..2b4f533f 100644 --- a/application/core/Plugins/PluginManager.php +++ b/application/core/Plugins/PluginManager.php @@ -109,9 +109,6 @@ class PluginManager { if (!in_array(Plugin::PLUGIN_INTERFACE, $interfaces)) { return false; } - if (ManiaControl::DEV_MODE && $pluginClass === 'MCTeam\\SamplePlugin') { - return false; - } return true; } diff --git a/application/plugins/MCTeam/SamplePlugin.php b/application/plugins/MCTeam/SamplePlugin.php deleted file mode 100644 index b77a36a5..00000000 --- a/application/plugins/MCTeam/SamplePlugin.php +++ /dev/null @@ -1,82 +0,0 @@ - - * @copyright 2014 ManiaControl Team - * @license http://www.gnu.org/licenses/ GNU General Public License, Version 3 - */ -class SamplePlugin implements Plugin { - /* - * Constants - */ - const ID = -1; - const NAME = 'Sample Plugin'; - const VERSION = '0.1'; - const AUTHOR = 'Sample Author'; - - /* - * Private Properties - */ - private $maniaControl = null; - - /** - * @see \ManiaControl\Plugins\Plugin::prepare() - */ - public static function prepare(ManiaControl $maniaControl) { - } - - /** - * @see \ManiaControl\Plugins\Plugin::getId() - */ - public static function getId() { - return self::ID; - } - - /** - * @see \ManiaControl\Plugins\Plugin::getName() - */ - public static function getName() { - return self::NAME; - } - - /** - * @see \ManiaControl\Plugins\Plugin::getVersion() - */ - public static function getVersion() { - return self::VERSION; - } - - /** - * @see \ManiaControl\Plugins\Plugin::getAuthor() - */ - public static function getAuthor() { - return self::AUTHOR; - } - - /** - * @see \ManiaControl\Plugins\Plugin::getDescription() - */ - public static function getDescription() { - return 'Sample Plugin that is only active in DEV_MODE to use as Draft for new Plugins or to test stuff.'; - } - - /** - * @see \ManiaControl\Plugins\Plugin::load() - */ - public function load(ManiaControl $maniaControl) { - $this->maniaControl = $maniaControl; - } - - /** - * @see \ManiaControl\Plugins\Plugin::unload() - */ - public function unload() { - } -}