return $sites;
}
-
/**
* Fire initialization events for all instantiated plugins.
*/
{
return self::$is_api;
}
-
+
public function setApi($mode)
{
self::$is_api = $mode;
}
}
}
+
+ /**
+ * Are we running from the web with HTTPS?
+ *
+ * @return boolean true if we're running with HTTPS; else false
+ */
+
+ static function isHTTPS()
+ {
+ // There are some exceptions to this; add them here!
+ return $_SERVER['HTTPS'];
+ }
}
class NoConfigException extends Exception