You are here

protected function UploadFetcher::getSchemes in Feeds 8.3

Returns available schemes.

Return value

string[] The available schemes.

1 call to UploadFetcher::getSchemes()
UploadFetcher::defaultConfiguration in src/Feeds/Fetcher/UploadFetcher.php
Gets default configuration for this plugin.

File

src/Feeds/Fetcher/UploadFetcher.php, line 160

Class

UploadFetcher
Defines a file upload fetcher.

Namespace

Drupal\feeds\Feeds\Fetcher

Code

protected function getSchemes() {
  return array_keys($this->streamWrapperManager
    ->getWrappers(StreamWrapperInterface::WRITE_VISIBLE));
}