/**
  * Get THE instance of the application singleton.
  *
  * @static
  * @return EngineBlock_ApplicationSingleton
  */
 public static function getInstance()
 {
     if (!isset(self::$s_instance)) {
         self::$s_instance = new self();
     }
     return self::$s_instance;
 }