l = $l; $this->url = $url; } /** * @return string Lowercase a-z only identifier * @since 9.2.0 */ #[\Override] public function getIdentifier() { return 'all'; } /** * @return string A translated string * @since 9.2.0 */ #[\Override] public function getName() { return $this->l->t('All activities'); } /** * @return int * @since 9.2.0 */ #[\Override] public function getPriority() { return 0; } /** * @return string Full URL to an icon, empty string when none is given * @since 9.2.0 */ #[\Override] public function getIcon() { return $this->url->getAbsoluteURL($this->url->imagePath('activity', 'activity-dark.svg')); } /** * @param string[] $types * @return string[] An array of allowed apps from which activities should be displayed * @since 9.2.0 */ #[\Override] public function filterTypes(array $types) { return $types; } /** * @return string[] An array of allowed apps from which activities should be displayed * @since 9.2.0 */ #[\Override] public function allowedApps() { return []; } }