l->t('File shares'); } /** * @return int * @since 11.0.0 */ public function getPriority() { return 31; } /** * @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('core', 'actions/share.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 array_intersect([ self::TYPE_SHARED, self::TYPE_REMOTE_SHARE, 'file_downloaded', ], $types); } /** * @return string[] An array of allowed apps from which activities should be displayed * @since 11.0.0 */ public function allowedApps() { return [ 'files_sharing', 'files_downloadactivity', ]; } }