Example #1
0
 function showSections()
 {
     // Show invite button, as long as site isn't closed, and
     // we have a logged in user.
     if (common_config('invite', 'enabled') && !common_config('site', 'closed') && common_logged_in()) {
         if (!common_config('site', 'private')) {
             $ibs = new InviteButtonSection($this, _m('BUTTON', 'Send invite'));
         } else {
             $ibs = new InviteButtonSection($this);
         }
         $ibs->show();
     }
     $p = Profile::current();
     if (!common_config('performance', 'high')) {
         $cloud = new PublicTagCloudSection($this);
         $cloud->show();
     }
     $feat = new FeaturedUsersSection($this);
     $feat->show();
 }
Example #2
0
 function showSections()
 {
     $ibs = new InviteButtonSection($this);
     $ibs->show();
     $pop = new PopularNoticeSection($this);
     $pop->show();
     $cloud = new PublicTagCloudSection($this);
     $cloud->show();
     $feat = new FeaturedUsersSection($this);
     $feat->show();
 }