]> git.mxchange.org Git - friendica-addons.git/blob - forumlist/forumlist.php
allow turning off forumlist on network page
[friendica-addons.git] / forumlist / forumlist.php
1 <?php
2 /**
3  * Name: ForumList
4  * Description: Shows list of subscribed community forums on network sidebar
5  * Version: 1.1
6  * Author: Mike Macgirvin <mike@macgirvin.com>
7  * based on pages plugin by
8  * Author: Michael Vogel <ike@piratenpartei.de>
9  *
10  */
11
12 function forumlist_install() {
13         register_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
14         register_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
15         register_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
16         register_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
17
18 }
19
20 function forumlist_uninstall() {
21         unregister_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
22         unregister_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
23         unregister_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
24         unregister_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
25
26 }
27
28
29 function forumlist_getpage($uid,$showhidden = true,$randomise = false) {
30
31
32         $forumlist = array();
33
34         $order = (($showhidden) ? '' : " and hidden = 0 ");
35         $order .= (($randomise) ? ' order by rand() ' : ' order by name asc ');
36
37         $contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` from contact 
38                         WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d
39                         and blocked = 0 and hidden = 0 and pending = 0 and archive = 0
40                         $order ",
41                         intval($uid)
42         );
43
44         // Look if the profile is a community page
45         foreach($contacts as $contact) {
46                 $forumlist[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
47         }
48         return($forumlist);
49 }
50
51 function forumlist_network_mod_init($a,$b) {
52
53         if(! intval(get_pconfig(local_user(),'forumlist','show_on_network')))
54                 return;
55
56         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
57
58         $forumlist = '<div id="forumlist-sidebar" class="widget">
59                         <div class="title tool">
60                         <h3>'.t("Forums").'</h3></div>';
61
62         $forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >' 
63                                 . t('show/hide') . '</div>'
64                                 . '<div id="forum-list" style="display: none;">';
65
66
67         $randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
68
69         $contacts = forumlist_getpage($a->user['uid'],true,$randomise);
70
71         if(count($contacts)) {
72                 foreach($contacts as $contact) {
73                         $forumlist .= '<a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="' . $contact['url'] . '" class="label sparkle" target="external-link"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a><br />";
74                 }
75         }
76         else {
77                 $forumlist .= t('No forum subscriptions');
78         }
79                 
80         $forumlist .= "</div></div>";
81         if (sizeof($contacts) > 0)
82                 $a->page['aside'] = $forumlist . $a->page['aside'];
83 }
84
85
86 function forumlist_profile_advanced($a,&$b) {
87         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
88
89         $profile = intval(get_pconfig($a->profile['profile_uid'],'forumlist','show_on_profile'));
90         if(! $profile)
91                 return;
92
93         $forumlist = '<div id="forumlist-profile">
94                         <div class="title">'.t("Forums:").'</div>
95                         <div id="profile-forumlist-list">';
96
97         // place holder in case somebody wants configurability
98         $show_total = 9999;
99
100         $randomise = true;
101
102         $contacts = forumlist_getforumlist($a->user['uid'],false,$randomise);
103
104         $total_shown = 0;
105         $more = false;
106
107         foreach($contacts as $contact) {
108                 $forumlist .= micropro($contact,false,'forumlist-profile-advanced');
109                 $total_shown ++;
110                 if($total_shown == $show_total)
111                         break;
112         }
113         $forumlist .= '</div></div><div class="clear"></div>';
114
115         if(count($contacts) > 0)
116                 $b .= $forumlist;
117
118 }
119
120
121
122 function forumlist_plugin_settings_post($a,$post) {
123         if(! local_user() || (! x($_POST,'forumlist-settings-submit')))
124                 return;
125
126 //      set_pconfig(local_user(),'forumlist','max_forumlists',intval($_POST['forumlist_max_forumlists']));
127         set_pconfig(local_user(),'forumlist','randomise',intval($_POST['forumlist_random']));
128         set_pconfig(local_user(),'forumlist','show_on_profile',intval($_POST['forumlist_profile']));
129         set_pconfig(local_user(),'forumlist','show_on_network',intval($_POST['forumlist_network']));
130
131         info( t('Forumlist settings updated.') . EOL);
132 }
133
134
135 function forumlist_plugin_settings(&$a,&$s) {
136
137         if(! local_user())
138                 return;
139
140         /* Add our stylesheet to the forumlist so we can make our settings look nice */
141
142         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
143
144         /* Get the current state of our config variable */
145
146         $randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
147         $randomise_checked = (($randomise) ? ' checked="checked" ' : '');
148
149         $profile = intval(get_pconfig(local_user(),'forumlist','show_on_profile'));
150         $profile_checked = (($profile) ? ' checked="checked" ' : '');
151
152         $network = intval(get_pconfig(local_user(),'forumlist','show_on_network'));
153         $network_checked = (($network) ? ' checked="checked" ' : '');
154         
155         
156         /* Add some HTML to the existing form */
157
158         $s .= '<div class="settings-block">';
159         $s .= '<h3>' . t('Forumlist Settings') . '</h3>';
160         $s .= '<div id="forumlist-settings-wrapper">';
161         $s .= '<label id="forumlist-random-label" for="forumlist-random">' . t('Randomise forum list') . '</label>';
162         $s .= '<input id="forumlist-random" type="checkbox" name="forumlist_random" value="1" ' . $randomise_checked . '/>';
163         $s .= '<div class="clear"></div>';
164         $s .= '<label id="forumlist-profile-label" for="forumlist-profile">' . t('Show forums on profile page') . '</label>';
165         $s .= '<input id="forumlist-profile" type="checkbox" name="forumlist_profile" value="1" ' . $profile_checked . '/>';
166         $s .= '<div class="clear"></div>';
167         $s .= '<label id="forumlist-network-label" for="forumlist-network">' . t('Show forums on network page') . '</label>';
168         $s .= '<input id="forumlist-network" type="checkbox" name="forumlist_network" value="1" ' . $network_checked . '/>';
169         $s .= '<div class="clear"></div>';
170
171         $s .= '</div>';
172
173         /* provide a submit button */
174
175         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="forumlist-settings-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
176
177 }
178
179