You are here

public function FileManagementViewController::getOverviewTitle in File Management 8

Returns the file overview page title.

Return value

string The page title.

1 string reference to 'FileManagementViewController::getOverviewTitle'
file_management_view.routing.yml in modules/file_management_view/file_management_view.routing.yml
modules/file_management_view/file_management_view.routing.yml

File

modules/file_management_view/src/Controller/FileManagementViewController.php, line 31

Class

FileManagementViewController
Provides route responses for the File Management Views module.

Namespace

Drupal\file_management_view\Controller

Code

public function getOverviewTitle() {
  return $this
    ->t('Files');
}