You are here

public function elFinderPageController::getContent in elFinder file manager 8.2

File

src/Controller/elFinderPageController.php, line 19

Class

elFinderPageController

Namespace

Drupal\elfinder\Controller

Code

public function getContent($scheme, Request $request) {
  $build = array(
    '#type' => 'markup',
    '#markup' => t('Hello World!'),
  );
  return $build;
}