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