advise.before()
Version 2.x
This is a convenience function to weave a before
advice based on advise().
Description
This is a shortcut function to weave one before
advice with an object’s method. Logically it is defined as:
1 2 3 4 5 |
|
It means that instead of:
1 2 3 |
|
It is possible to write a shorter version:
1
|
|
Advice function
This type of advice is a regular function. It is called with the same context and the same arguments as an advised method. Its return value is ignored.
It is not recommended to modify parameters inside before
advice. Use after
or around
advice for that.
Returned value
Just like advise() it is based on, it returns the object, which defines the method unadvise()
. When called without parameters, it removes the corresponding advice from the object, no matter when it was defined. For convenience, this method is aliased as remove()
, and destroy()
.