TYPO3-如何覆盖后端核心扩展中的模板路径? (文件列表)

时间:2019-02-19 13:21:57

标签: typo3 core overwrite typo3-8.x filelist

我需要覆盖下的模板文件 htdocs / typo3 / sysext / filelist / Resources / Private / Templates / FileList 特别是htdocs / typo3 / sysext / filelist / Resources / Private / Templates / FileList / Search.html

我已经在以下位置创建了复制和修改文件: myextension /资源/私有/扩展/sysext/filelist/Resources/Templates/Search.html

Typo3 8 阅读中的信息: https://docs.typo3.org/typo3cms/ExtbaseFluidBook/10-Outlook/2-Backend-modules.html

这是我尝试过的:

module.file_FilelistList {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
        }
    }
}

module.FilelistList {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
        }
    }
}

module.filelist {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
        }
    }
}

还有

module.tx_file_FilelistList {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
        }
    }
}

module.tx_FilelistList {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
        }
    }
}

module.tx_filelist {
    view {
        templateRootPaths {
            100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
        }
    }
}

但是不起作用,请帮忙

1 个答案:

答案 0 :(得分:0)

从不更改核心扩展名或外部扩展名中的任何文件。

您将放弃执行常规更新的选项。

您可以构建这些文件的自己的版本,并在键入的内容中添加这些文件的路径,以便您的文件优先于默认文件。

您只需要标识设置即可添加路径。