Implemented Plugin Interface

This commit is contained in:
Shoghi Cervantes Pueyo
2012-12-26 13:33:43 +01:00
parent 00fea6461c
commit 987a6e635e
4 changed files with 22 additions and 4 deletions

View File

@ -160,4 +160,11 @@ class PluginAPI extends stdClass{
}
}
}
}
interface Plugin{
public function __construct($api, $server = false);
public function init();
public function __destruct();
}