]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - EVENTS.txt
(Puctuation) consistency in clientError() calls.
[quix0rs-gnu-social.git] / EVENTS.txt
index f4ec620338c7be2d1a642231aad90b443a58f7e9..96250f64c784dc665d78d1a0fdadf8653c9fe556 100644 (file)
@@ -290,6 +290,18 @@ StartRegistrationTry: before validating and saving a new user
 EndRegistrationTry: after saving a new user (note: no profile or user object!)
 - $action: action object being shown
 
+StartAvatarFormData: before displaying avatar form
+- $action: action object being shown
+
+EndAvatarFormData: after displaying avatar form
+- $action: action object being shown
+
+StartAvatarSaveForm: before saving the avatar
+- $action: action object being shown
+
+EndAvatarSaveForm: after saving the avatar
+- $action: action object being shown
+
 StartNewQueueManager: before trying to start a new queue manager; good for plugins implementing new queue manager classes
 - $qm: empty queue manager to set
 
@@ -586,6 +598,18 @@ EndCssLinkElement: After a <link rel="stylesheet"..> element is written
 - $theme
 - $media
 
+StartStyleElement: Before a <style...> element is written
+- $action
+- &$code
+- &$type
+- &$media
+
+EndStyleElement: After a <style...> element is written
+- $action
+- $code
+- $type
+- $media
+
 StartScriptElement: Before a <script...> element is written
 - $action
 - &$src
@@ -595,3 +619,24 @@ EndScriptElement: After a <script...> element is written
 - $action
 - $src
 - $type
+
+StartInlineScriptElement: Before a <script...> element is written
+- $action
+- &$code
+- &$type
+
+EndInlineScriptElement: After a <script...> element is written
+- $action
+- $code
+- $type
+
+StartLog: Before writing to the logs
+- &$priority
+- &$msg
+- &$filename
+
+EndLog: After writing to the logs
+- $priority
+- $msg
+- $filename
+