Project

General

Profile

Bug #92517

Updated by Daniel Siepmann over 3 years ago

It is possible to configure an alternative pluginNamespace for an Extbase Plugin. 
 This can be done via TypoScript: 

 <pre> 
 plugin { 
     tx_extname_pluginname { 
         view { 
             pluginNamespace = search 
         } 
     } 
 } 
 

 </pre> 

 As this is not supported by the ExtbasePluginEnhancer, those can not be combined. It is not possible to provide routing configuration when using a custom configured pluginNamespace. 

 I would suggest to respect the "namespace" option, which is respected by PluginEnhancer, which is extended by ExtbasePluginEnhancer. This way integrator are able to configure an alternative namespace in both places. 

 Our use case: Map only some parts of routes, but keep others, e.g. search parameters. Those should not add unnecessary garbage to url like "tx_extname_pluginname" but "search" instead. 

 The option was initially introduced to access the arguments from another plugin (as far as I know).

Back