]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Breaking class definitions out into separate files and fixing typing
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Jan 2016 18:46:56 +0000 (19:46 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Jan 2016 18:46:56 +0000 (19:46 +0100)
lib/groupaction.php
lib/groupadminsection.php [new file with mode: 0644]
lib/groupblockedminilist.php [new file with mode: 0644]
lib/groupblockedminilistitem.php [new file with mode: 0644]
lib/groupmembersminilist.php [new file with mode: 0644]
lib/groupmembersminilistitem.php [new file with mode: 0644]
lib/threadinggroupnoticestream.php [new file with mode: 0644]

index 5d11e6acddc7e2cdeeee5ae5c4e85ae82acf1f13..39d48044812326786527945915cdab52afa37a89 100644 (file)
@@ -27,9 +27,7 @@
  * @link      http://status.net/
  */
 
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
+if (!defined('GNUSOCIAL')) { exit(1); }
 
 define('MEMBERS_PER_SECTION', 27);
 
@@ -290,87 +288,3 @@ class GroupAction extends Action
         return $this->group;
     }
 }
-
-class GroupAdminSection extends ProfileSection
-{
-    var $group;
-
-    function __construct($out, $group)
-    {
-        parent::__construct($out);
-        $this->group = $group;
-    }
-
-    function getProfiles()
-    {
-        return $this->group->getAdmins();
-    }
-
-    function title()
-    {
-        // TRANS: Title for list of group administrators on a group page.
-        return _m('TITLE','Admins');
-    }
-
-    function divId()
-    {
-        return 'group_admins';
-    }
-
-    function moreUrl()
-    {
-        return null;
-    }
-}
-
-class GroupMembersMiniList extends ProfileMiniList
-{
-    function newListItem($profile)
-    {
-        return new GroupMembersMiniListItem($profile, $this->action);
-    }
-}
-
-class GroupMembersMiniListItem extends ProfileMiniListItem
-{
-    function linkAttributes()
-    {
-        $aAttrs = parent::linkAttributes();
-
-        if (common_config('nofollow', 'members')) {
-            $aAttrs['rel'] .= ' nofollow';
-        }
-
-        return $aAttrs;
-    }
-}
-
-class GroupBlockedMiniList extends ProfileMiniList
-{
-    function newListItem($profile)
-    {
-        return new GroupBlockedMiniListItem($profile, $this->action);
-    }
-}
-
-class GroupBlockedMiniListItem extends ProfileMiniListItem
-{
-    function linkAttributes()
-    {
-        $aAttrs = parent::linkAttributes();
-
-        if (common_config('nofollow', 'members')) {
-            $aAttrs['rel'] .= ' nofollow';
-        }
-
-        return $aAttrs;
-    }
-}
-
-class ThreadingGroupNoticeStream extends ThreadingNoticeStream
-{
-    function __construct($group, $profile)
-    {
-        parent::__construct(new GroupNoticeStream($group, $profile));
-    }
-}
diff --git a/lib/groupadminsection.php b/lib/groupadminsection.php
new file mode 100644 (file)
index 0000000..f8aff9c
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class GroupAdminSection extends ProfileSection
+{
+    var $group;
+
+    function __construct($out, $group)
+    {
+        parent::__construct($out);
+        $this->group = $group;
+    }
+
+    function getProfiles()
+    {
+        return $this->group->getAdmins();
+    }
+
+    function title()
+    {
+        // TRANS: Title for list of group administrators on a group page.
+        return _m('TITLE','Admins');
+    }
+
+    function divId()
+    {
+        return 'group_admins';
+    }
+
+    function moreUrl()
+    {
+        return null;
+    }
+}
diff --git a/lib/groupblockedminilist.php b/lib/groupblockedminilist.php
new file mode 100644 (file)
index 0000000..9749ac0
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class GroupBlockedMiniList extends ProfileMiniList
+{
+    function newListItem(Profile $profile)
+    {
+        return new GroupBlockedMiniListItem($profile, $this->action);
+    }
+}
diff --git a/lib/groupblockedminilistitem.php b/lib/groupblockedminilistitem.php
new file mode 100644 (file)
index 0000000..4d8ccff
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class GroupBlockedMiniListItem extends ProfileMiniListItem
+{
+    function linkAttributes()
+    {
+        $aAttrs = parent::linkAttributes();
+
+        if (common_config('nofollow', 'members')) {
+            $aAttrs['rel'] .= ' nofollow';
+        }
+
+        return $aAttrs;
+    }
+}
diff --git a/lib/groupmembersminilist.php b/lib/groupmembersminilist.php
new file mode 100644 (file)
index 0000000..ed0ccc6
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class GroupMembersMiniList extends ProfileMiniList
+{
+    function newListItem(Profile $profile)
+    {
+        return new GroupMembersMiniListItem($profile, $this->action);
+    }
+}
diff --git a/lib/groupmembersminilistitem.php b/lib/groupmembersminilistitem.php
new file mode 100644 (file)
index 0000000..6741e00
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class GroupMembersMiniListItem extends ProfileMiniListItem
+{
+    function linkAttributes()
+    {
+        $aAttrs = parent::linkAttributes();
+
+        if (common_config('nofollow', 'members')) {
+            $aAttrs['rel'] .= ' nofollow';
+        }
+
+        return $aAttrs;
+    }
+}
diff --git a/lib/threadinggroupnoticestream.php b/lib/threadinggroupnoticestream.php
new file mode 100644 (file)
index 0000000..b026ee4
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+class ThreadingGroupNoticeStream extends ThreadingNoticeStream
+{
+    function __construct($group, $profile)
+    {
+        parent::__construct(new GroupNoticeStream($group, $profile));
+    }
+}