Which content plugin events are working for the backend? - Joomla! Forum - community, help and support
i saw joomla documentation listing several possible events (content) plugins. however, there no clear statement whether work in frontend and/or backend. well, seems if defined frontend.
i've tried build small plugin backend using onbeforecontentsave event:
the plugin indeed called in backend (according xdebug), however, joomla not jump plgcontentpublishingrules function.
any idea?
thanks in advance!
i've tried build small plugin backend using onbeforecontentsave event:
code: select all
class plgcontenthello extends jplugin {
function onbeforecontentsave( &$article, $isnew ) {
global $mainframe;
return false;
}
the plugin indeed called in backend (according xdebug), however, joomla not jump plgcontentpublishingrules function.
any idea?
thanks in advance!
.
in joomla 2.5 onbeforecontentsave event has been renamed oncontentbeforesave.
that may issue.
take @ renamed plug-in events here:
http://forum.joomla.org/viewtopic.php?f=628&t=721573&p=2819444#p2819444
.
in joomla 2.5 onbeforecontentsave event has been renamed oncontentbeforesave.
that may issue.
take @ renamed plug-in events here:
http://forum.joomla.org/viewtopic.php?f=628&t=721573&p=2819444#p2819444
.
Comments
Post a Comment