mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:10:11 +00:00
Configuration for widgets
This commit is contained in:
parent
f78b0e7c51
commit
200cf29a8d
7 changed files with 275 additions and 205 deletions
|
@ -130,20 +130,34 @@ class Network extends Timeline
|
|||
|
||||
$o = '';
|
||||
|
||||
$this->page['aside'] .= Circle::sidebarWidget($module, $module . '/circle', 'standard', $this->circleId);
|
||||
$this->page['aside'] .= GroupManager::widget($this->session->getLocalUserId());
|
||||
$this->page['aside'] .= Widget::postedByYear($module . '/archive', $this->session->getLocalUserId(), false);
|
||||
$this->page['aside'] .= Widget::networks($module, $this->network);
|
||||
$this->page['aside'] .= Widget::accountTypes($module, $this->accountTypeString);
|
||||
$this->page['aside'] .= Widget::channels($module, $this->selectedTab, $this->session->getLocalUserId());
|
||||
$this->page['aside'] .= Widget\SavedSearches::getHTML($this->args->getQueryString());
|
||||
$this->page['aside'] .= Widget::fileAs('filed', '');
|
||||
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::CIRCLES)) {
|
||||
$this->page['aside'] .= Circle::sidebarWidget($module, $module . '/circle', 'standard', $this->circleId);
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::GROUPS)) {
|
||||
$this->page['aside'] .= GroupManager::widget($this->session->getLocalUserId());
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::ARCHIVE)) {
|
||||
$this->page['aside'] .= Widget::postedByYear($module . '/archive', $this->session->getLocalUserId(), false);
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::NETWORKS)) {
|
||||
$this->page['aside'] .= Widget::networks($module, $this->network);
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::ACCOUNTS)) {
|
||||
$this->page['aside'] .= Widget::accountTypes($module, $this->accountTypeString);
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::CHANNELS)) {
|
||||
$this->page['aside'] .= Widget::channels($module, $this->selectedTab, $this->session->getLocalUserId());
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::SEARCHES)) {
|
||||
$this->page['aside'] .= Widget\SavedSearches::getHTML($this->args->getQueryString());
|
||||
}
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::FOLDERS)) {
|
||||
$this->page['aside'] .= Widget::fileAs('filed', '');
|
||||
}
|
||||
if (($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) &&
|
||||
!in_array($this->selectedTab, [Channel::FOLLOWERS, Channel::FORYOU, Channel::DISCOVER])) {
|
||||
!in_array($this->selectedTab, [Channel::FOLLOWERS, Channel::FORYOU, Channel::DISCOVER]) && Feature::isEnabled($this->session->getLocalUserId(), Feature::NOSHARER)) {
|
||||
$this->page['aside'] .= $this->getNoSharerWidget('network');
|
||||
}
|
||||
|
||||
if (Feature::isEnabled($this->session->getLocalUserId(), Feature::TRENDING_TAGS)) {
|
||||
$this->page['aside'] .= TrendingTags::getHTML($this->selectedTab);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue