Skip to content
Snippets Groups Projects
Commit e5b371e3 authored by Michael Oehlhof's avatar Michael Oehlhof Committed by Jan Helke
Browse files

[TASK] Fluidification of ReplaceFileController

Resolves: #78764
Releases: master
Change-Id: I0cdedd33540a917ba7744f3dad96c7b728967fad
Reviewed-on: https://review.typo3.org/50726


Reviewed-by: default avatarAlexander Stehlik <alexander.stehlik@gmail.com>
Tested-by: default avatarAlexander Stehlik <alexander.stehlik@gmail.com>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarGianluigi Martino <gmartino27@gmail.com>
Tested-by: default avatarGianluigi Martino <gmartino27@gmail.com>
Reviewed-by: default avatarAlexander Rothmund <alexander@rothmund.ch>
Tested-by: default avatarAlexander Rothmund <alexander@rothmund.ch>
Reviewed-by: default avatarJan Helke <typo3@helke.de>
Tested-by: default avatarJan Helke <typo3@helke.de>
parent 9d9d3940
Branches
Tags
No related merge requests found
...@@ -24,6 +24,7 @@ use TYPO3\CMS\Core\Resource\Exception\InsufficientFileAccessPermissionsException ...@@ -24,6 +24,7 @@ use TYPO3\CMS\Core\Resource\Exception\InsufficientFileAccessPermissionsException
use TYPO3\CMS\Core\Resource\Folder; use TYPO3\CMS\Core\Resource\Folder;
use TYPO3\CMS\Core\Resource\ResourceFactory; use TYPO3\CMS\Core\Resource\ResourceFactory;
use TYPO3\CMS\Core\Utility\GeneralUtility; use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Fluid\View\StandaloneView;
use TYPO3\CMS\Lang\LanguageService; use TYPO3\CMS\Lang\LanguageService;
/** /**
...@@ -149,52 +150,11 @@ class ReplaceFileController extends AbstractModule ...@@ -149,52 +150,11 @@ class ReplaceFileController extends AbstractModule
*/ */
public function main() public function main()
{ {
$lang = $this->getLanguageService(); // Assign variables used by the fluid template
$code = '<form action="' $assigns = [];
. htmlspecialchars(BackendUtility::getModuleUrl('tce_file')) $assigns['moduleUrlTceFile'] = BackendUtility::getModuleUrl('tce_file');
. '" role="form" method="post" name="editform" enctype="multipart/form-data">'; $assigns['uid'] = $this->uid;
$assigns['returnUrl'] = $this->returnUrl;
// Making the formfields for renaming:
$code .= '
<div class="form-group">
<input type="checkbox" value="1" id="keepFilename" name="file[replace][1][keepFilename]"> <label for="keepFilename">'
. $lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.keepfiletitle')
. '</label>
</div>
<div class="form-group">
<label for="file_replace">' . $lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.selectfile') . '</label>
<div class="input-group col-xs-6">
<input type="text" name="fakefile" id="fakefile" class="form-control input-xlarge" readonly>
<a class="input-group-addon btn btn-primary" onclick="TYPO3.jQuery(\'#file_replace\').click();">'
. $lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.browse')
. '</a>
</div>
<input class="form-control" type="file" id="file_replace" name="replace_1" style="visibility: hidden;" />
</div>
<script>
TYPO3.jQuery(\'#file_replace\').change(function(){
TYPO3.jQuery(\'#fakefile\').val(TYPO3.jQuery(this).val());
});
</script>
<input type="hidden" name="overwriteExistingFiles" value="replace" />
<input type="hidden" name="file[replace][1][data]" value="1" />
<input type="hidden" name="file[replace][1][uid]" value="' . $this->uid . '" />
';
// Making submit button:
$code .= '
<div class="form-group">
<input class="btn btn-primary" type="submit" value="'
. htmlspecialchars($lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.submit')) . '" />
<input class="btn btn-danger" type="submit" value="'
. htmlspecialchars($lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.cancel'))
. '" onclick="backToList(); return false;" />
<input type="hidden" name="redirect" value="' . htmlspecialchars($this->returnUrl) . '" />
</div>
';
$code .= '</form>';
$buttonBar = $this->moduleTemplate->getDocHeaderComponent()->getButtonBar(); $buttonBar = $this->moduleTemplate->getDocHeaderComponent()->getButtonBar();
// csh button // csh button
...@@ -207,14 +167,20 @@ class ReplaceFileController extends AbstractModule ...@@ -207,14 +167,20 @@ class ReplaceFileController extends AbstractModule
if ($this->returnUrl) { if ($this->returnUrl) {
$returnButton = $buttonBar->makeLinkButton() $returnButton = $buttonBar->makeLinkButton()
->setHref($this->returnUrl) ->setHref($this->returnUrl)
->setTitle($lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.goBack')) ->setTitle($this->getLanguageService()->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.goBack'))
->setIcon($this->moduleTemplate->getIconFactory()->getIcon('actions-view-go-back', Icon::SIZE_SMALL)); ->setIcon($this->moduleTemplate->getIconFactory()->getIcon('actions-view-go-back', Icon::SIZE_SMALL));
$buttonBar->addButton($returnButton); $buttonBar->addButton($returnButton);
} }
$this->content .= '<h1>' . $lang->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.pagetitle') . '</h1>'; // Rendering of the output via fluid
// Add the HTML as a section: $view = GeneralUtility::makeInstance(StandaloneView::class);
$this->content .= '<div>' . $code . '</div>'; $view->setTemplateRootPaths([GeneralUtility::getFileAbsFileName('EXT:backend/Resources/Private/Templates')]);
$view->setPartialRootPaths([GeneralUtility::getFileAbsFileName('EXT:backend/Resources/Private/Partials')]);
$view->setTemplatePathAndFilename(GeneralUtility::getFileAbsFileName(
'EXT:backend/Resources/Private/Templates/File/ReplaceFile.html'
));
$view->assignMultiple($assigns);
$this->content = $view->render();
$this->moduleTemplate->setContent($this->content); $this->moduleTemplate->setContent($this->content);
} }
......
<h1><f:translate key="LLL:EXT:lang/locallang_core.xlf:file_replace.php.pagetitle" /></h1>
<div>
<form action="{moduleUrlTceFile}" role="form" method="post" name="editform" enctype="multipart/form-data">
<div class="form-group">
<input type="checkbox" value="1" id="keepFilename" name="file[replace][1][keepFilename]">
<label for="keepFilename"><f:translate key="LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.keepfiletitle" /></label>
</div>
<div class="form-group">
<label for="file_replace"><f:translate key="LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.selectfile" /></label>
<div class="input-group col-xs-6">
<input type="text" name="fakefile" id="fakefile" class="form-control input-xlarge" readonly>
<a class="input-group-addon btn btn-primary" onclick="TYPO3.jQuery('#file_replace').click();">
<f:translate key="LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.browse" />
</a>
</div>
<input class="form-control" type="file" id="file_replace" name="replace_1" style="visibility: hidden;" />
</div>
<script>
TYPO3.jQuery('#file_replace').change(function(){
TYPO3.jQuery('#fakefile').val(TYPO3.jQuery(this).val());
});
</script>
<input type="hidden" name="overwriteExistingFiles" value="replace" />
<input type="hidden" name="file[replace][1][data]" value="1" />
<input type="hidden" name="file[replace][1][uid]" value="{uid}" />
<div class="form-group">
<input class="btn btn-primary" type="submit" value="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:file_replace.php.submit')}" />
<input class="btn btn-danger" type="submit" value="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.cancel')}"
onclick="backToList(); return false;" />
<input type="hidden" name="redirect" value="{returnUrl}" />
</div>
</form>
</div>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment