]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - EVENTS.txt
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / EVENTS.txt
index 922b79a865ea24d0bb85ce7347f2717a68525883..0c08a46478b26a3bd784544bd5b30cd89e98bc86 100644 (file)
@@ -1422,3 +1422,31 @@ StartUpgrade: when starting a site upgrade
 
 EndUpgrade: when ending a site upgrade; good place to do your own upgrades
 
+HaveIMPlugin: is there an IM plugin loaded?
+- &$haveIMPlugin: set me to true if you're loaded!
+
+StartShowNoticeOptionItems: Before showing first controls in a notice list item; inside the div
+- $nli: NoticeListItem being shown
+
+EndShowNoticeOptionItems: After showing last controls in a notice list item; inside the div
+- $nli: NoticeListItem being shown
+
+StartNoticeInScope: Before checking if a notice should be visible to a user
+- $notice: The notice to check
+- $profile: The profile to check for scope
+- &$bResult: The boolean result; fill this in if you want to skip
+
+EndNoticeInScope: After checking if a notice should be visible to a user
+- $notice: The notice to check
+- $profile: The profile to check for scope
+- &$bResult: The boolean result; overwrite this if you so desire
+
+StartNoticeListPrefill: Before pre-filling a list of notices with extra data
+- &$notices: Notices to be pre-filled
+- $avatarSize: The avatar size for the list
+
+EndNoticeListPrefill: After pre-filling a list of notices with extra data
+- &$notices: Notices that were pre-filled
+- &$profiles: Profiles that were pre-filled 
+- $avatarSize: The avatar size for the list
+