Current Answers to this Question (4) :
Answers:
In the plugin php file, create the class
class plgContentLoadmodule extends JPlugin
Use any of the following functions, depending on what the plugin is going to do, to process the content:
- onBeforeContentSave()
- onAfterContentSave()
- onPrepareContent()
- onAfterDisplayTitle()
- onBeforeDisplayContent()
- onAfterDisplayContent()
Source(s):
http://docs.joomla.org/How_to_create_a_content_plugin


