/**
  * Display a list of files matching the given arguments
  *
  * @return void
  */
 public function listAction()
 {
     $args = (array) GeneralUtility::_GET('tx_ameos_filemanager');
     $t = $this->fileRepository->findBySearchCriterias($args);
     $this->view->assign('files', $t);
     $this->view->assign('value', $args);
     $this->settings['columnsTable'] = explode(',', $this->settings['columnsTable']);
     $this->settings['actionDetail'] = explode(',', $this->settings['actionDetail']);
     $this->view->assign('settings', $this->settings);
 }