34 if ($backend instanceof \
TYPO3\CMS\Rsaauth\Backend\CommandLineBackend) {
37 $warnings[
'rsaauth_cmdline'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_using_cmdline');
39 $path = trim(GeneralUtility::makeInstance(ExtensionConfiguration::class)->
get(
'rsaauth',
'temporaryDirectory'));
42 $warnings[
'rsaauth'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_empty_directory');
43 } elseif (!GeneralUtility::isAbsPath($path)) {
45 $warnings[
'rsaauth'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_directory_not_absolute');
46 } elseif (!@is_dir($path)) {
48 $warnings[
'rsaauth'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_directory_not_exist');
49 } elseif (!@is_writable($path)) {
51 $warnings[
'rsaauth'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_directory_not_writable');
54 $warnings[
'rsaauth'] = $lang->sL(
'LLL:EXT:rsaauth/Resources/Private/Language/locallang.xlf:hook_directory_inside_siteroot');