]> git.mxchange.org Git - friendica-addons.git/commitdiff
Merge pull request #253 from annando/1504-new-share
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 6 Apr 2015 12:32:24 +0000 (14:32 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 6 Apr 2015 12:32:24 +0000 (14:32 +0200)
Support for new "share_header" function

altpager/altpager.php
communityhome/communityhome.php
pledgie/pledgie.php

index f185e4fea55f61be97991da6660730b28452241a..78bab432b3a96defe6bdfa135482f72d3676e39a 100755 (executable)
@@ -4,8 +4,7 @@
  * Description: Change pagination from using explicit page numbers to simple "newer" and "older" page links. This will speed up page load times.
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
- * 
- *
+ * Status: Unsupported
  */
 
 
index 8a2f3d291f10c5204555cc85ed0f5052b5be2e77..ff3215d36aa00aaf64fe203ddd8de8847d0d7aef 100755 (executable)
@@ -90,7 +90,7 @@ function communityhome_home(&$a, &$o){
                if($r && count($r)) {
                        $aside['$activeusers_title']  = t('Most active users');
                        $aside['$activeusers_items']  = array();
-                       
+
                        $photo = 'thumb';
                        foreach($r as $rr) {
                                $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
@@ -123,14 +123,14 @@ function communityhome_home(&$a, &$o){
                                        dbesc(t('Profile Photos'))
                                        );
 
-                       
+
                if(count($r)) {
        #               $tpl = file_get_contents( dirname(__file__).'/directory_item.tpl');
                        $tpl = get_markup_template( 'directory_item.tpl', 'addon/communityhome/' );
                        foreach($r as $rr) {
                                $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id'];
                                $photo_url = $a->get_baseurl() . '/photo/' .  $rr['resource-id'] . '-' . $rr['scale'] .'.jpg';
-                       
+
                                $entry = replace_macros($tpl,array(
                                        '$id' => $rr['id'],
                                        '$profile_link' => $photo_page,
@@ -142,7 +142,7 @@ function communityhome_home(&$a, &$o){
                        }
                }
        }
-       
+
        // last 10 liked items
        if (get_config('communityhome','showlastlike')===true){
                $aside['$like_title'] = t('Latest likes');
@@ -161,7 +161,7 @@ function communityhome_home(&$a, &$o){
                foreach ($r as $rr) {
                        $author  = '<a href="' . $rr['liker-link'] . '">' . $rr['liker'] . '</a>';
                        $objauthor =  '<a href="' . $rr['author-link'] . '">' . $rr['author-name'] . '</a>';
-                       
+
                        //var_dump($rr['verb'],$rr['object-type']); killme();
                        switch($rr['verb']){
                                case 'http://activitystrea.ms/schema/1.0/post':
@@ -185,23 +185,27 @@ function communityhome_home(&$a, &$o){
                        $plink = '<a href="' . $rr['plink'] . '">' . $post_type . '</a>';
 
                        $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
-                       
+
                }
        }
-       
+
 #      $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl');
        $tpl = get_markup_template('communityhome.tpl', 'addon/communityhome/');
        $a->page['aside'] = replace_macros($tpl, $aside);
-       
+
        $o = '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';
-       
+
        if(file_exists('home.html'))
                $o = file_get_contents('home.html');
-       
+
        if (get_config('communityhome','showcommunitystream')===true){
-               $oldset = get_config('system','no_community_page');
-               set_config('system','no_community_page', false);
+               $oldset = get_config('system','community_page_style');
+               if ($oldset == CP_NO_COMMUNITY_PAGE)
+                       set_config('system','community_page_style', CP_USERS_ON_SERVER);
+
                $o .= community_content($a,1);
-               set_config('system','no_community_page', $oldset);
+
+               if ($oldset == CP_NO_COMMUNITY_PAGE)
+                       set_config('system','community_page_style', $oldset);
        }
 }
index c2f37df60679f92f6851838538b40d6dc52424b3..c88dcbeb33796bc12866565094e46361122abfda 100644 (file)
@@ -4,13 +4,14 @@
  *   * Description: Show link to Friendica pledgie account for donating
  *    * Version: 1.0
  *     * Author: tony baldwin <tony@free-haven.org>
+ * Status: Unsupported
  *      */
 
-
 function pledgie_install() { register_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
 
 
 function pledgie_uninstall() { unregister_hook('page_end', 'addon/pledgie/pledgie.php', 'pledgie_active'); }
 
-function pledgie_active(&$a,&$b) { $b .= '<div style="position: fixed; bottom: 5px; left: 60px;"><a href=\'http://www.pledgie.com/campaigns/18417\'><img alt=\'Click here to lend your support to: Beyond Social Networking and make a donation at www.pledgie.com !\' src=\'http://www.pledgie.com/campaigns/18417.png?skin_name=chrome\' border=\'0\' target=\'_blank\' /></a></div>'; } 
-
+function pledgie_active(&$a,&$b) {
+       //$b .= '<div style="position: fixed; bottom: 5px; left: 60px;"><a href=\'http://www.pledgie.com/campaigns/18417\'><img alt=\'Click here to lend your support to: Beyond Social Networking and make a donation at www.pledgie.com !\' src=\'http://www.pledgie.com/campaigns/18417.png?skin_name=chrome\' border=\'0\' target=\'_blank\' /></a></div>';
+}