Project

General

Profile

Bug #95662

Updated by Henri Nathanson over 2 years ago

The plugin action "pdf" was simply routed with /pdf as of v10.4.20. The behaviour changed with v10.4.21 and #91447 to /pdf?cHash=xxx 
 The action is configured as non-cacheable in ext_localconf.php 
 Route is generated with: {f:uri.action(action:'pdf')} 

 <pre><code class="yaml"> 
   LehrgaengePlugin: 
     type: Simple 
     routePath: '/{action}/{controller}' 
     defaults: 
       controller: Lehrgang 
     _arguments: 
       action: tx_myext_lehrgaenge__action 
       controller: tx_myext_lehrgaenge__controller 
     aspects: 
       action: 
         type: StaticValueMapper 
         map: 
           pdf: pdf 
 </code></pre> 

Back