You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the default parsing by the method itself, the author wants to enable plugins to do additional parsing and thus fires an event and passes the parsed text as an additional parameter.
93
93
Then, a plugin can deliver the following event listener
@@ -134,9 +134,9 @@ The points in the program flow of [AbstractForm](../pages.md#abstractform) that
134
134
All of these cases can be covered the by following code in which we assume that `wcf\form\ExampleAddForm` is the form to create example objects and that `wcf\form\ExampleEditForm` extends `wcf\form\ExampleAddForm` and is used for editing existing example objects.
The `execute` method in this example just delegates the call to a method with the same name as the event so that this class mimics the structure of a form class itself.
@@ -154,7 +154,7 @@ Furthermore, the type-hinting of the parameter illustrates in which contexts the
154
154
Lastly, the following XML file has to be used to register the event listeners (you can find more information about how to register event listeners on [the eventListener package installation plugin page](../../package/pip/event-listener.md)):
0 commit comments