Using the around listener

The around listeners are used when we want to change both the arguments and the returned values of an original method or add some behavior before and after an original method is called.

Looking back at the aroundGetAddToCartUrl listener method definition, you will see that it has four properties assigned in sequence—$subject, $proceed, $product, and $additional.

With the after method listener, the first property is always the $subject property, which contains the instance of the object type being observed and not the return value of the observed method. The second property is always the $proceed property of \Closure. The properties following the $subject and $proceed match the properties of the observed getAddToCartUrl ...

Get Magento 2 Developer's Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.