Difference between revisions of "Plugin/Events"

From Joomla! Documentation

< Plugin
(Update 3.0 to 3.1)
(33 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
<noinclude>{{version/tutor|2.5,3.x}}</noinclude>
 
Joomla! ships with a variety of core events, organised into groups.  These are described in the following topics.
 
Joomla! ships with a variety of core events, organised into groups.  These are described in the following topics.
  
* [[Plugin/Events/System|System events]]
+
=== Authentication ===
* [[Plugin/Events/Content|Content events]]
+
* [[Plugin/Events/User#onUserAuthenticate|onUserAuthenticate]]
* [[Plugin/Events/User|User events]]
 
* [[Plugin/Events/Editor|Editor events]]
 
  
* [[Plugin/Events/Contact|Contact events]]
+
=== Captcha ===
 
+
* [[Plugin/Events/Editor#onInit|onInit]]
== System ==
+
* [[Plugin/Events/Editor#onDisplay|onDisplay]]
* [[Plugin/Events/System#onAfterInitialise|onAfterInitialise]] {{JVer|1.5}} {{JVer|2.5}}
+
* [[Plugin/Events/Captcha#onCheckAnswer|onCheckAnswer]]
* [[Plugin/Events/System#onAfterRoute|onAfterRoute]] {{JVer|1.5}} {{JVer|2.5}}
 
* [[Plugin/Events/System#onAfterDispatch|onAfterDispatch]] {{JVer|1.5}} {{JVer|2.5}}
 
* [[Plugin/Events/System#onAfterRender|onAfterRender]] {{JVer|1.5}} {{JVer|2.5}}
 
* [[Plugin/Events/System#onBeforeRender|onBeforeRender]] {{JVer|2.5}}
 
* [[Plugin/Events/System#onBeforeCompileHead|onBeforeCompileHead]] {{JVer|2.5}}
 
* [[Plugin/Events/System#onSearch|onSearch]] {{JVer|2.5}}
 
* [[Plugin/Events/System#onSearchAreas|onSearchAreas]] {{JVer|2.5}}
 
* [[Plugin/Events/System#onGetWebServices|onGetWebServices]] {{JVer|2.5}}
 
 
 
== Content ==
 
* [[Plugin/Events/Content#onAfterDisplay|onAfterDisplay]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onAfterContentSave|onAfterContentSave]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onAfterDisplayTitle|onAfterDisplayTitle]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onAfterDisplayContent|onAfterDisplayContent]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onPrepareContent|onPrepareContent]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onBeforeDisplay|onBeforeDisplay]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onBeforeContentSave|onBeforeContentSave]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onBeforeDisplayContent|onBeforeDisplayContent]] {{JVer|1.5}}
 
* [[Plugin/Events/Content#onContentPrepareForm|onContentPrepareForm]] {{JVer|1.5}} {{JVer|2.5}} {{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentPrepareData|onContentPrepareData]] {{JVer|1.5}} {{JVer|2.5}} {{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentAfterDelete|onContentAfterDelete]] {{JVer|2.5}} {{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentBeforeDelete|onContentBeforeDelete]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentBeforeDisplay|onContentBeforeDisplay]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentAfterDisplay|onContentAfterDisplay]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentBeforeSave|onContentBeforeSave]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentAfterSave|onContentAfterSave]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentChangeState|onContentChangeState]] {{JVer|2.5}} {{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentPrepare|onContentPrepare]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentSearch|onContentSearch]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentSearchAreas|onContentSearchAreas]] {{JVer|2.5}}{{JVer|3.1}}
 
* [[Plugin/Events/Content#onContentAfterTitle|onContentAfterTitle]] {{JVer|3.1}}
 
 
 
== User ==  
 
* [[Plugin/Events/User#onBeforeDeleteUser|onBeforeDeleteUser]]
 
* [[Plugin/Events/User#onAfterDeleteUser|onAfterDeleteUser]]
 
* [[Plugin/Events/User#onBeforeStoreUser|onBeforeStoreUser]]
 
* [[Plugin/Events/User#onAfterStoreUser|onAfterStoreUser]]
 
* [[Plugin/Events/User#onLoginUser|onLoginUser]]
 
* [[Plugin/Events/User#onLoginUser|onLoginFailure]]
 
* [[Plugin/Events/User#onLogoutUser|onLogoutUser]]
 
* [[Plugin/Events/User#onLogoutUser|onLogoutFailure]]
 
  
== Authentication ==
+
=== Content ===
* [[Plugin/Events/User#onAuthenticate|onAuthenticate]]
+
* [[Plugin/Events/Content#onContentPrepare|onContentPrepare]]
* [[Plugin/Events/User#onAuthenticateFailure|onAuthenticateFailure]]
+
* [[Plugin/Events/Content#onContentAfterTitle|onContentAfterTitle]] ({{JVer|3.x}} only)
 +
* [[Plugin/Events/Content#onContentBeforeDisplay|onContentBeforeDisplay]]
 +
* [[Plugin/Events/Content#onContentAfterDisplay|onContentAfterDisplay]]
 +
* [[Plugin/Events/Content#onContentBeforeSave|onContentBeforeSave]]
 +
* [[Plugin/Events/Content#onContentAfterSave|onContentAfterSave]]
 +
* [[Plugin/Events/Content#onContentPrepareForm|onContentPrepareForm]]
 +
* [[Plugin/Events/Content#onContentPrepareData|onContentPrepareData]]
 +
* [[Plugin/Events/Content#onContentBeforeDelete|onContentBeforeDelete]]
 +
* [[Plugin/Events/Content#onContentAfterDelete|onContentAfterDelete]]
 +
* [[Plugin/Events/Content#onContentChangeState|onContentChangeState]]
 +
* [[Plugin/Events/Content#onContentSearch|onContentSearch]]
 +
* [[Plugin/Events/Content#onContentSearchAreas|onContentSearchAreas]]
  
== Editors ==
+
=== Editors ===
 
* [[Plugin/Events/Editor#onInit|onInit]]
 
* [[Plugin/Events/Editor#onInit|onInit]]
 
* [[Plugin/Events/Editor#onSave|onSave]]
 
* [[Plugin/Events/Editor#onSave|onSave]]
 
* [[Plugin/Events/Editor#onSetContent|onSetContent]]
 
* [[Plugin/Events/Editor#onSetContent|onSetContent]]
* [[Plugin/Events/Editor#onCustomEditorButton|onCustomEditorButton]] (editors-xtd)
 
 
* [[Plugin/Events/Editor#onDisplay|onDisplay]]
 
* [[Plugin/Events/Editor#onDisplay|onDisplay]]
 
* [[Plugin/Events/Editor#onGetContent|onGetContent]]
 
* [[Plugin/Events/Editor#onGetContent|onGetContent]]
 
* [[Plugin/Events/Editor#onGetInsertMethod|onGetInsertMethod]]
 
* [[Plugin/Events/Editor#onGetInsertMethod|onGetInsertMethod]]
  
== Search ==
+
=== Extensions ===
 +
* [[Plugin/Events/Extension#onExtensionAfterInstall|onExtensionAfterInstall]]
 +
* [[Plugin/Events/Extension#onExtensionAfterUninstall|onExtensionAfterUninstall]]
 +
* [[Plugin/Events/Extension#onExtensionAfterUpdate|onExtensionAfterUpdate]]
 +
 
 +
=== Finder ===
 +
* [[Plugin/Events/Finder#onFinderCategoryChangeState|onFinderCategoryChangeState]]
 +
* [[Plugin/Events/Finder#onFinderChangeState|onFinderChangeState]]
 +
* [[Plugin/Events/Finder#onFinderBeforeDelete|onFinderAfterDelete]]
 +
* [[Plugin/Events/Finder#onFinderAfterDelete|onFinderAfterDelete]]
 +
* [[Plugin/Events/Finder#onFinderBeforeSave|onFinderBeforeSave]]
 +
* [[Plugin/Events/Finder#onFinderAfterSave|onFinderAfterSave]]
 +
 
 +
=== Quick Icons ===
 +
* [[Plugin/Events/Quickicon#onGetIcons|onGetIcons]]
 +
 
 +
=== System ===
 +
* [[Plugin/Events/System#onAfterInitialise|onAfterInitialise]]
 +
* [[Plugin/Events/System#onAfterRoute|onAfterRoute]]
 +
* [[Plugin/Events/System#onAfterDispatch|onAfterDispatch]]
 +
* [[Plugin/Events/System#onAfterRender|onAfterRender]]
 +
* [[Plugin/Events/System#onBeforeRender|onBeforeRender]]
 +
* [[Plugin/Events/System#onBeforeCompileHead|onBeforeCompileHead]]
 
* [[Plugin/Events/System#onSearch|onSearch]]
 
* [[Plugin/Events/System#onSearch|onSearch]]
 
* [[Plugin/Events/System#onSearchAreas|onSearchAreas]]
 
* [[Plugin/Events/System#onSearchAreas|onSearchAreas]]
  
== Contact ==
+
=== User ===
* [[Plugin/Events/Contact#onSubmitContact|onSubmitContact]]
+
* [[Plugin/Events/User#onUserBeforeSave|onUserBeforeSave]]
* [[Plugin/Events/Contact#onValidateContact|onValidateContact]]
+
* [[Plugin/Events/User#onUserAfterSave|onUserAfterSave]]
 +
* [[Plugin/Events/User#onUserBeforeDelete|onUserBeforeDelete]]
 +
* [[Plugin/Events/User#onUserAfterDelete|onUserAfterDelete]]
 +
* [[Plugin/Events/User#onUserLogin|onUserLogin]]
 +
* [[Plugin/Events/User#onUserLoginFailure|onUserLoginFailure]]
 +
* [[Plugin/Events/User#onUserAfterLogin|onUserAfterLogin]]
 +
* [[Plugin/Events/User#onUserLogout|onUserLogout]]
 +
* [[Plugin/Events/User#onUserAuthenticate|onUserAuthenticate]]
 +
* [[Plugin/Events/User#onUserAuthorisation|onUserAuthorisation]]
  
== XML-RPC ==
+
<noinclude>[[Category:Plugin Development|Events]][[Category:Specifications]]
* [[Plugin/Events/System#onGetWebServices|onGetWebServices]]
+
[[Category:Tutorials]]
<noinclude>[[Category:Plugin Development|Events]][[Category:Specifications]]</noinclude>
+
</noinclude>

Revision as of 08:52, 25 February 2014