[TYPO3-mvc] help me understand the naming of my backend-module

Johannes C. Schulz - EnzephaloN IT-Solutions info at enzephalon.de
Tue Feb 21 12:51:18 CET 2012


Hello list

I'm a little bit confused about the naming.
In my ext_tables.php the module is defined with:

if (TYPO3_MODE == 'BE' && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL))
{
       Tx_Extbase_Utility_Extension::registerModule(
             $_EXTKEY,
             'web',
             'module',
             'after:web_func',
             array(
              'Backend' => 'index, edit, saveedited,  export'
[.]

Now I try to copy the plugin-settings to the module-settings:
plugin.tx_psoaaccredit{

       settings{
templateRootPath = {$plugin.tx_psoaaccredit.templateRootPath}
[.]


module.tx_psoaaccredit{

       settings < plugin.tx_psoaaccredit.settings

       persistence < plugin.tx_psoaaccredit.persistence

}

But it seems for me, that none of them is accessable in my backendcontroller
by $this->settings['templateRootPath']

If I look to an url generated by the backend-controller, there stands:
[.]/typo3/mod.php?M=web_PsoaAccreditModule&id=151&tx_psoaaccredit_web_psoaac
creditmodule%5Baccreditation%5D=68&[.]

How I have to change the "module.tx_psoaaccredit{" in my Setup?

Best regards

Johannes



More information about the TYPO3-project-typo3v4mvc mailing list