istic-openstack/server/core/Plugin_Api.php
2016-03-21 06:47:01 +01:00

24 lines
346 B
PHP
Executable file

<?php
//Init plugin directory
/*if (!defined('PLUGINS_DIR')) {
define('PLUGINS_DIR', INSTALL_PATH . 'plugins/');
}*/
class plugin_api{
static protected $instance;
protected function __construct(){
}
static function getInstance(){
if(!self::$instance){
self::$instance = new plugin_api();
}
return self::$instance;
}
}