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(); } // Network public tag cloud? }
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(); }
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(); } // XXX: make this a little more convenient if (!common_config('performance', 'high')) { $pop = new InboxTagCloudSection($this, $this->target); $pop->show(); } }
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(); }
function showSections() { $ibs = new InviteButtonSection($this); $ibs->show(); $pop = new PopularNoticeSection($this); $pop->show(); // $pop = new InboxTagCloudSection($this, $this->user); // $pop->show(); }