]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/statusnet.php
Merge branch 'nightly' into 'nightly'
[quix0rs-gnu-social.git] / lib / statusnet.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 /**
6  * Backwards compatible class for plugins for GNU social <1.2
7  * and thus only have the class StatusNet defined.
8  */
9 class StatusNet
10 {
11     public static function getActivePlugins()
12     {
13         return GNUsocial::getActivePlugins();
14     }
15
16     public static function isHTTPS()
17     {
18         return GNUsocial::isHTTPS();
19     }
20 }