--- /dev/null
+<?php
+/**
+ * Name: ForumList
+ * Description: Shows list of subscribed community forums on network sidebar
+ * Version: 1.1
+ * Author: Mike Macgirvin <mike@macgirvin.com>
+ * based on pages plugin by
+ * Author: Michael Vogel <ike@piratenpartei.de>
+ *
+ */
+
+function forumlist_install() {
+ register_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
+ register_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
+ register_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
+ register_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
+
+}
+
+function forumlist_uninstall() {
+ unregister_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
+ unregister_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
+ unregister_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
+ unregister_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
+
+}
+
+
+function forumlist_getpage($uid,$showhidden = true,$randomise = false) {
+
+
+ $forumlist = array();
+
+ $order = (($showhidden) ? '' : " and hidden = 0 ");
+ $order .= (($randomise) ? ' order by rand() ' : ' order by name asc ');
+
+ $contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` from contact
+ WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d
+ $order ",
+ intval($uid)
+ );
+
+ // Look if the profile is a community page
+ foreach($contacts as $contact) {
+ $forumlist[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
+ }
+ return($forumlist);
+}
+
+function forumlist_network_mod_init($a,$b) {
+ $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
+
+ $forumlist = '<div id="forumlist-sidebar" class="widget">
+ <div class="title tool">
+ <h3>'.t("Forums").'</h3></div>';
+
+ $forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >'
+ . t('show/hide') . '</div>'
+ . '<div id="forum-list" style="display: none;">';
+
+
+ $randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
+
+ $contacts = forumlist_getpage($a->user['uid'],true,$randomise);
+
+ if(count($contacts)) {
+ foreach($contacts as $contact) {
+ $forumlist .= '<a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="' . $contact['url'] . '" class="label sparkle" target="external-link"><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 />";
+ }
+ }
+ else {
+ $forumlist .= t('No forum subscriptions');
+ }
+
+ $forumlist .= "</div></div>";
+ if (sizeof($contacts) > 0)
+ $a->page['aside'] = $forumlist . $a->page['aside'];
+}
+
+
+function forumlist_profile_advanced($a,&$b) {
+ $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
+
+ $profile = intval(get_pconfig($a->profile['profile_uid'],'forumlist','show_on_profile'));
+ if(! $profile)
+ return;
+
+ $forumlist = '<div id="forumlist-profile">
+ <div class="title">'.t("Forums:").'</div>
+ <div id="profile-forumlist-list">';
+
+ // place holder in case somebody wants configurability
+ $show_total = 9999;
+
+ $randomise = true;
+
+ $contacts = forumlist_getforumlist($a->user['uid'],false,$randomise);
+
+ $total_shown = 0;
+ $more = false;
+
+ foreach($contacts as $contact) {
+ $forumlist .= micropro($contact,false,'forumlist-profile-advanced');
+ $total_shown ++;
+ if($total_shown == $show_total)
+ break;
+ }
+ $forumlist .= '</div></div><div class="clear"></div>';
+
+ if(count($contacts) > 0)
+ $b .= $forumlist;
+
+}
+
+
+
+function forumlist_plugin_settings_post($a,$post) {
+ if(! local_user() || (! x($_POST,'forumlist-settings-submit')))
+ return;
+
+// set_pconfig(local_user(),'forumlist','max_forumlists',intval($_POST['forumlist_max_forumlists']));
+ set_pconfig(local_user(),'forumlist','randomise',intval($_POST['forumlist_random']));
+ set_pconfig(local_user(),'forumlist','show_on_profile',intval($_POST['forumlist_profile']));
+
+ info( t('Forumlist settings updated.') . EOL);
+}
+
+
+function forumlist_plugin_settings(&$a,&$s) {
+
+ if(! local_user())
+ return;
+
+ /* Add our stylesheet to the forumlist so we can make our settings look nice */
+
+ $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
+
+ /* Get the current state of our config variable */
+
+ $randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
+ $randomise_checked = (($randomise) ? ' checked="checked" ' : '');
+
+ $profile = intval(get_pconfig(local_user(),'forumlist','show_on_profile'));
+ $profile_checked = (($profile) ? ' checked="checked" ' : '');
+
+
+ /* Add some HTML to the existing form */
+
+ $s .= '<div class="settings-block">';
+ $s .= '<h3>' . t('Forumlist Settings') . '</h3>';
+ $s .= '<div id="forumlist-settings-wrapper">';
+ $s .= '<label id="forumlist-random-label" for="forumlist-random">' . t('Randomise forum list') . '</label>';
+ $s .= '<input id="forumlist-random" type="checkbox" name="forumlist_random" value="1" ' . $randomise_checked . '/>';
+ $s .= '<div class="clear"></div>';
+ $s .= '<label id="forumlist-profile-label" for="forumlist-profile">' . t('Show forums on profile page') . '</label>';
+ $s .= '<input id="forumlist-profile" type="checkbox" name="forumlist_profile" value="1" ' . $profile_checked . '/>';
+ $s .= '<div class="clear"></div>';
+
+ $s .= '</div>';
+
+ /* provide a submit button */
+
+ $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="forumlist-settings-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+
+}
+
+