2010-01-13 03:57:15 +00:00
|
|
|
<?php
|
|
|
|
|
2015-02-27 11:44:15 +00:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2010-01-13 03:57:15 +00:00
|
|
|
|
|
|
|
/**
|
2015-02-27 11:44:15 +00:00
|
|
|
* Backwards compatible class for plugins for GNU social <1.2
|
|
|
|
* and thus only have the class StatusNet defined.
|
2010-01-13 03:57:15 +00:00
|
|
|
*/
|
|
|
|
class StatusNet
|
|
|
|
{
|
2010-04-12 19:49:59 +01:00
|
|
|
public static function getActivePlugins()
|
|
|
|
{
|
2015-02-27 11:44:15 +00:00
|
|
|
return GNUsocial::getActivePlugins();
|
2010-02-08 19:06:03 +00:00
|
|
|
}
|
2010-10-14 05:16:23 +01:00
|
|
|
|
2015-02-27 11:44:15 +00:00
|
|
|
public static function isHTTPS()
|
2010-02-08 19:06:03 +00:00
|
|
|
{
|
2015-02-27 11:44:15 +00:00
|
|
|
return GNUsocial::isHTTPS();
|
2010-01-13 03:57:15 +00:00
|
|
|
}
|
|
|
|
}
|