Exemplo n.º 1
0
 /**
  * @return SlExtensions
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         SlConfigure::read();
         // make sure core configuration is loaded BEFORE plugins'
     }
     if (self::$_instance === null) {
         self::$_instance = new SlExtensions();
     }
     return self::$_instance;
 }