You are here

protected function UploadFetcherForm::getSchemes in Feeds 8.3

Returns available schemes.

Return value

string[] The available schemes.

1 call to UploadFetcherForm::getSchemes()
UploadFetcherForm::buildConfigurationForm in src/Feeds/Fetcher/Form/UploadFetcherForm.php
Form constructor.

File

src/Feeds/Fetcher/Form/UploadFetcherForm.php, line 114

Class

UploadFetcherForm
The configuration form for the upload fetcher.

Namespace

Drupal\feeds\Feeds\Fetcher\Form

Code

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