In a class that uses a plugin which already defines, say, a
before_create method,
is it possible to extend this before_create so the code in the plugin's
method is also invoked ? Something in effect like calling super in an
inherited class' overwriting method. I suppose this is either easy
with some less-known syntax, which I haven't found, or this is
impossible currently (I know it's not a biggie to copy over the code
from the plugin method, but...)