mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Use language filtering on all channels, rearranged channels
This commit is contained in:
parent
e5978d74c7
commit
d3231c7a7d
1 changed files with 40 additions and 38 deletions
|
@ -135,15 +135,6 @@ class Channel extends BaseModule
|
||||||
'accesskey' => 'y'
|
'accesskey' => 'y'
|
||||||
];
|
];
|
||||||
|
|
||||||
$tabs[] = [
|
|
||||||
'label' => $this->l10n->t('Followers'),
|
|
||||||
'url' => 'channel/' . self::FOLLOWERS,
|
|
||||||
'sel' => self::$content == self::FOLLOWERS ? 'active' : '',
|
|
||||||
'title' => $this->l10n->t('Posts from your followers that you don\'t follow'),
|
|
||||||
'id' => 'channel-followers-tab',
|
|
||||||
'accesskey' => 'f'
|
|
||||||
];
|
|
||||||
|
|
||||||
$tabs[] = [
|
$tabs[] = [
|
||||||
'label' => $this->l10n->t('What\'s Hot'),
|
'label' => $this->l10n->t('What\'s Hot'),
|
||||||
'url' => 'channel/' . self::WHATSHOT,
|
'url' => 'channel/' . self::WHATSHOT,
|
||||||
|
@ -153,33 +144,6 @@ class Channel extends BaseModule
|
||||||
'accesskey' => 'h'
|
'accesskey' => 'h'
|
||||||
];
|
];
|
||||||
|
|
||||||
$tabs[] = [
|
|
||||||
'label' => $this->l10n->t('Images'),
|
|
||||||
'url' => 'channel/' . self::IMAGE,
|
|
||||||
'sel' => self::$content == self::IMAGE ? 'active' : '',
|
|
||||||
'title' => $this->l10n->t('Posts with images'),
|
|
||||||
'id' => 'channel-image-tab',
|
|
||||||
'accesskey' => 'i'
|
|
||||||
];
|
|
||||||
|
|
||||||
$tabs[] = [
|
|
||||||
'label' => $this->l10n->t('Videos'),
|
|
||||||
'url' => 'channel/' . self::VIDEO,
|
|
||||||
'sel' => self::$content == self::VIDEO ? 'active' : '',
|
|
||||||
'title' => $this->l10n->t('Posts with videos'),
|
|
||||||
'id' => 'channel-video-tab',
|
|
||||||
'accesskey' => 'v'
|
|
||||||
];
|
|
||||||
|
|
||||||
$tabs[] = [
|
|
||||||
'label' => $this->l10n->t('Audio'),
|
|
||||||
'url' => 'channel/' . self::AUDIO,
|
|
||||||
'sel' => self::$content == self::AUDIO ? 'active' : '',
|
|
||||||
'title' => $this->l10n->t('Posts with audio'),
|
|
||||||
'id' => 'channel-audio-tab',
|
|
||||||
'accesskey' => 'd'
|
|
||||||
];
|
|
||||||
|
|
||||||
$language = User::getLanguageCode($this->session->getLocalUserId(), false);
|
$language = User::getLanguageCode($this->session->getLocalUserId(), false);
|
||||||
$languages = $this->l10n->getAvailableLanguages();
|
$languages = $this->l10n->getAvailableLanguages();
|
||||||
|
|
||||||
|
@ -192,6 +156,42 @@ class Channel extends BaseModule
|
||||||
'accesskey' => 'g'
|
'accesskey' => 'g'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
$tabs[] = [
|
||||||
|
'label' => $this->l10n->t('Followers'),
|
||||||
|
'url' => 'channel/' . self::FOLLOWERS,
|
||||||
|
'sel' => self::$content == self::FOLLOWERS ? 'active' : '',
|
||||||
|
'title' => $this->l10n->t('Posts from your followers that you don\'t follow'),
|
||||||
|
'id' => 'channel-followers-tab',
|
||||||
|
'accesskey' => 'f'
|
||||||
|
];
|
||||||
|
|
||||||
|
$tabs[] = [
|
||||||
|
'label' => $this->l10n->t('Images'),
|
||||||
|
'url' => 'channel/' . self::IMAGE,
|
||||||
|
'sel' => self::$content == self::IMAGE ? 'active' : '',
|
||||||
|
'title' => $this->l10n->t('Posts with images'),
|
||||||
|
'id' => 'channel-image-tab',
|
||||||
|
'accesskey' => 'i'
|
||||||
|
];
|
||||||
|
|
||||||
|
$tabs[] = [
|
||||||
|
'label' => $this->l10n->t('Audio'),
|
||||||
|
'url' => 'channel/' . self::AUDIO,
|
||||||
|
'sel' => self::$content == self::AUDIO ? 'active' : '',
|
||||||
|
'title' => $this->l10n->t('Posts with audio'),
|
||||||
|
'id' => 'channel-audio-tab',
|
||||||
|
'accesskey' => 'd'
|
||||||
|
];
|
||||||
|
|
||||||
|
$tabs[] = [
|
||||||
|
'label' => $this->l10n->t('Videos'),
|
||||||
|
'url' => 'channel/' . self::VIDEO,
|
||||||
|
'sel' => self::$content == self::VIDEO ? 'active' : '',
|
||||||
|
'title' => $this->l10n->t('Posts with videos'),
|
||||||
|
'id' => 'channel-video-tab',
|
||||||
|
'accesskey' => 'v'
|
||||||
|
];
|
||||||
|
|
||||||
$tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
|
$tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
|
||||||
$o .= Renderer::replaceMacros($tab_tpl, ['$tabs' => $tabs]);
|
$o .= Renderer::replaceMacros($tab_tpl, ['$tabs' => $tabs]);
|
||||||
|
|
||||||
|
@ -327,8 +327,6 @@ class Channel extends BaseModule
|
||||||
} else {
|
} else {
|
||||||
$condition = ["(`comments` >= ? OR `activities` >= ?) AND `contact-type` != ?", $this->getMedianComments(4), $this->getMedianActivities(4), Contact::TYPE_COMMUNITY];
|
$condition = ["(`comments` >= ? OR `activities` >= ?) AND `contact-type` != ?", $this->getMedianComments(4), $this->getMedianActivities(4), Contact::TYPE_COMMUNITY];
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = $this->addLanguageCondition($condition);
|
|
||||||
} elseif (self::$content == self::FORYOU) {
|
} elseif (self::$content == self::FORYOU) {
|
||||||
$cid = Contact::getPublicIdByUserId($this->session->getLocalUserId());
|
$cid = Contact::getPublicIdByUserId($this->session->getLocalUserId());
|
||||||
|
|
||||||
|
@ -349,6 +347,10 @@ class Channel extends BaseModule
|
||||||
$condition = ["JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?", User::getLanguageCode($this->session->getLocalUserId(), true)];
|
$condition = ["JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?", User::getLanguageCode($this->session->getLocalUserId(), true)];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (self::$content != self::LANGUAGE) {
|
||||||
|
$condition = $this->addLanguageCondition($condition);
|
||||||
|
}
|
||||||
|
|
||||||
$condition[0] .= " AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `post-engagement`.`owner-id` AND (`ignored` OR `blocked` OR `collapsed`))";
|
$condition[0] .= " AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND `cid` = `post-engagement`.`owner-id` AND (`ignored` OR `blocked` OR `collapsed`))";
|
||||||
$condition[] = $this->session->getLocalUserId();
|
$condition[] = $this->session->getLocalUserId();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue