Actions
Feature #5187
closedenable partial instantiation of plugins chain
Start date:
10/02/2013
Due date:
% Done:
100%
Estimated time:
Description
Should be available from both "lavoisier-standalone-execute" and web service.
Should be available without restarting the engine.
Solution:
<view name="stoppoint">
    <argument name="view"/>
    <argument name="processor">999</argument>
    <connector type="XMLConnector">
        <parameter name="content" eval="view($view, arguments() | entry('_processor_', $processor))"/>
    </connector>
</view>
<view name="example">
    <connector type="..."/>
    <processors>
        <processor disabled="arguments()/*/*[@key='_processor_'] < 1"/>
        <processor disabled="arguments()/*/*[@key='_processor_'] < 2"/>
    </processors>
</view>
  
Actions