最近、新しい Extension Builder (TYPO3 6.0、Extbase 6.0) で拡張機能を作成しました。setup.txt が機能するかどうかを確認するために、単純な行を追加しました。
plugin.tx_myext {
view {
templateRootPath = {$plugin.tx_kremsimpressions.view.templateRootPath}
partialRootPath = {$plugin.tx_kremsimpressions.view.partialRootPath}
layoutRootPath = {$plugin.tx_kremsimpressions.view.layoutRootPath}
}
persistence {
storagePid = {$plugin.tx_kremsimpressions.persistence.storagePid}
}
features {
# uncomment the following line to enable the new Property Mapper.
# rewrittenPropertyMapper = 1
}
settings {
foo = bar
}
}
ここで、 を呼び出してコントローラーでこれにアクセスしようとします$this->settings['foo']
。問題は次のとおりです。設定配列全体が空です。また、流動的なテンプレートで{setting.foo}を試しましたが、これも空です。
簡単な質問は、私が間違っていることは何ですか? いくつかのサイトで、このように機能するはずだと書いています。
ご協力ありがとうございます。