l10n->t('Teams'); } /** * @return int * @since 11.0.0 */ public function getPriority() { return 10; } /** * @return string Full URL to an icon, empty string when none is given * @since 11.0.0 */ public function getIcon() { return $this->url->getAbsoluteURL( $this->url->imagePath(Application::APP_ID, 'circles-dark.svg') ); } /** * @param string[] $types * * @return string[] An array of allowed apps from which activities should be displayed * @since 11.0.0 */ public function filterTypes(array $types) { return $types; } /** * @return string[] An array of allowed apps from which activities should be displayed * @since 11.0.0 */ public function allowedApps() { return [Application::APP_ID]; } }