]> git.mxchange.org Git - friendica.git/blobdiff - mod/community.php
template for input fields now supports required, autofocus and types email, url
[friendica.git] / mod / community.php
index 8d23c4af287b59b7d35c34d005a1c012f1ce303c..e2311515790b5f63f324c8528f6a475fc575fa43 100644 (file)
@@ -114,6 +114,10 @@ function community_content(&$a, $update = 0) {
 }
 
 function community_getitems($start, $itemspage) {
+       // Work in progress
+       if (get_config('system', 'global_community'))
+               return(community_getpublicitems($start, $itemspage));
+
        $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
                `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
                `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
@@ -136,3 +140,19 @@ function community_getitems($start, $itemspage) {
        return($r);
 
 }
+
+function community_getpublicitems($start, $itemspage) {
+       $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
+                       `author-name` AS `name`, `owner-avatar` AS `photo`,
+                       `owner-link` AS `url`, `owner-avatar` AS `thumb`
+               FROM `item` WHERE `item`.`uid` = 0
+               AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
+               AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
+               ORDER BY `item`.`received` DESC LIMIT %d, %d",
+               intval($start),
+               intval($itemspage)
+       );
+
+       return($r);
+
+}