]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - EVENTS.txt
Avatar resizing improvements and better code reuse
[quix0rs-gnu-social.git] / EVENTS.txt
1 InitializePlugin: a chance to initialize a plugin in a complete environment
2
3 CleanupPlugin: a chance to cleanup a plugin at the end of a program
4
5 StartPrimaryNav: Showing the primary nav menu
6 - $action: the current action
7
8 EndPrimaryNav: At the end of the primary nav menu
9 - $action: the current action
10
11 StartSecondaryNav: Showing the secondary nav menu
12 - $action: the current action
13
14 EndSecondaryNav: At the end of the secondary nav menu
15 - $action: the current action
16
17 StartShowStyles: Showing Style links; good place to add UA style resets
18 - $action: the current action
19
20 EndShowStyles: End showing Style links; good place to add custom styles
21 - $action: the current action
22
23 StartShowStylesheets: Showing stylesheet links
24 - $action: the current action
25
26 EndShowStylesheets: End showing stylesheet links;  good place to add handheld or JavaScript dependant styles
27 - $action: the current action
28
29 StartShowUAStyles: Showing custom User-Agent style links
30 - $action: the current action
31
32 EndShowUAStyles: End showing custom User-Agent links; good place to add user-agent (e.g., filter, -webkit, -moz) specific styles
33 - $action: the current action
34
35 StartShowScripts: Showing JavaScript links
36 - $action: the current action
37
38 EndShowScripts: End showing JavaScript links; good place to add custom
39                 links like Google Analytics
40 - $action: the current action
41
42 StartShowJQueryScripts: Showing JQuery script links (use this to link to e.g. Google mirrors)
43 - $action: the current action
44
45 EndShowJQueryScripts: End showing JQuery script links
46 - $action: the current action
47
48 StartShowStatusNetScripts: Showing StatusNet script links (use this to link to a CDN or something)
49 - $action: the current action
50
51 EndShowStatusNetScripts: End showing StatusNet script links
52 - $action: the current action
53
54 StartShowLaconicaScripts: backwards compatibility; deprecated
55 - $action: the current action
56
57 EndShowLaconicaScripts: backwards compatibility; deprecated
58 - $action: the current action
59
60 StartShowSections: Start the list of sections in the sidebar
61 - $action: the current action
62
63 EndShowSections: End the list of sections in the sidebar
64 - $action: the current action
65
66 StartShowHeader: Showing before the header container
67 - $action: the current action
68
69 EndShowHeader: Showing after the header container
70 - $action: the current action
71
72 StartShowFooter: Showing before the footer container
73 - $action: the current action
74
75 EndShowFooter: Showing after the footer container
76 - $action: the current action
77
78 StartShowContentBlock: Showing before the content container
79 - $action: the current action
80
81 EndShowContentBlock: Showing after the content container
82 - $action: the current action
83
84 StartShowAside: Showing before the Aside container
85 - $action: the current action
86
87 EndShowAside: Showing after the Aside container
88 - $action: the current action
89
90 StartShowNoticeFormData: Showing before the notice form data
91 - $action: the current action
92
93 EndShowNoticeFormData: Showing after the notice form data
94 - $action: the current action
95
96 StartNoticeSave: before inserting a notice (good place for content filters)
97 - $notice: notice being saved (no ID or URI)
98
99 EndNoticeSave: after inserting a notice and related code
100 - $notice: notice that was saved (with ID and URI)
101
102 StartShowLocalNavBlock: Showing the local nav menu
103 - $action: the current action
104
105 EndShowLocalNavBlock: At the end of the local nav menu
106 - $action: the current action
107
108 StartShowHTML: Chance to set document headers (e.g., content type, charset, language), DOCTYPE and html element properties
109 - $action: the current action
110
111 EndShowHTML: Showing after the html element
112 - $action: the current action
113
114 StartPublicGroupNav: Showing the public group nav menu
115 - $menu: the menu widget; use $menu->action for output
116
117 EndPublicGroupNav: At the end of the public group nav menu
118 - $menu: the menu widget; use $menu->action for output
119
120 StartSubGroupNav: Showing the subscriptions group nav menu
121 - $menu: the menu widget; use $menu->action for output
122
123 EndSubGroupNav: At the end of the subscriptions group nav menu
124 - $menu: the menu widget; use $menu->action for output
125
126 StartInitializeRouter: Before the router instance has been initialized; good place to add routes
127 - $m: the Net_URL_Mapper that has just been set up
128
129 RouterInitialized: After the router instance has been initialized
130 - $m: the Net_URL_Mapper that has just been set up
131
132 StartLogout: Before logging out
133 - $action: the logout action
134
135 EndLogout: After logging out
136 - $action: the logout action
137
138 ArgsInitialize: After the argument array has been initialized
139 - $args: associative array of arguments, can be modified
140
141 StartAddressData: Allows the site owner to provide additional information about themselves for contact (e.g., tagline, email, location)
142 - $action: the current action
143
144 EndAddressData: At the end of <address>
145 - $action: the current action
146
147 StartShowSiteNotice: Before showing site notice
148 - $action: the current action
149
150 EndShowSiteNotice: After showing site notice
151 - $action: the current action
152
153 StartLoginGroupNav: Before showing the login and register navigation menu
154 - $action: the current action
155
156 EndLoginGroupNav: After showing the login and register navigation menu
157 - $action: the current action
158
159 StartAccountSettingsNav: Before showing the account settings menu
160 - $action: the current action
161
162 EndAccountSettingsNav: After showing the account settings menu
163 - $action: the current action
164
165 StartAccountSettingsProfileMenuItem: Before showing the Profile menu item
166 - $widget: AccountSettingsNav instance being shown
167
168 EndAccountSettingsProfileMenuItem: After showing the Profile menu item
169 - $widget: AccountSettingsNav instance being shown
170
171 StartAccountSettingsAvatarMenuItem: Before showing the Avatar menu item
172 - $widget: AccountSettingsNav instance being shown
173
174 EndAccountSettingsAvatarMenuItem: After showing the Avatar menu item
175 - $widget: AccountSettingsNav instance being shown
176
177 StartAccountSettingsPasswordMenuItem: Before showing the Password menu item
178 - $widget: AccountSettingsNav instance being shown
179
180 EndAccountSettingsPasswordMenuItem: After showing the Password menu item
181 - $widget: AccountSettingsNav instance being shown
182
183 StartAccountSettingsEmailMenuItem: Before showing the Email menu item
184 - $widget: AccountSettingsNav instance being shown
185
186 EndAccountSettingsEmailMenuItem: After showing the Email menu item
187 - $widget: AccountSettingsNav instance being shown
188
189 StartAccountSettingsDesignMenuItem: Before showing the Design menu item
190 - $widget: AccountSettingsNav instance being shown
191
192 EndAccountSettingsDesignMenuItem: After showing the Design menu item
193 - $widget: AccountSettingsNav instance being shown
194
195 StartAccountSettingsOtherMenuItem: Before showing the Other menu item
196 - $widget: AccountSettingsNav instance being shown
197
198 EndAccountSettingsOtherMenuItem: After showing the Other menu item
199 - $widget: AccountSettingsNav instance being shown
200
201 Autoload: When trying to autoload a class
202 - $cls: the class being sought. A plugin might require_once the file for the class.
203
204 SensitiveAction: determines if an action is 'sensitive' and should use SSL
205 - $action: name of the action, like 'login'
206 - $sensitive: flag for whether this is a sensitive action
207
208 LoginAction: determines if an action is a 'login' action (OK for public view in private mode)
209 - $action: name of the action, like 'register'
210 - $login: flag for whether this is a login action
211
212 StartShowHead: called before showing the <head> element and children
213 - $action: action object being show
214
215 EndShowHead: called after showing the <head> element (and </head>)
216 - $action: action object being shown
217
218 StartShowBody: called before showing the <body> element and children
219 - $action: action object being shown
220
221 EndShowBody: called after showing the <body> element (and </body>)
222 - $action: action object being shown
223
224 StartPersonalGroupNav: beginning of personal group nav menu
225 - $action: action object being shown
226
227 EndPersonalGroupNav: end of personal group nav menu (good place to add a menu item)
228 - $action: action object being shown
229
230 StartGroupGroupNav: Showing the group nav menu
231 - $action: the current action
232
233 EndGroupGroupNav: At the end of the group nav menu
234 - $action: the current action
235
236 StartEndHTML: just before the </html> tag
237 - $action: action object being shown
238
239 EndEndHTML: just after the </html> tag
240 - $action: action object being shown
241
242 StartShowDesign: just before showing a site, user, or group design
243 - $action: action object being shown
244
245 EndShowDesign: just after showing a site, user, or group design
246 - $action: action object being shown
247
248 StartShowExportData: just before showing the <div> with export data (feeds)
249 - $action: action object being shown
250
251 EndShowExportData: just after showing the <div> with export data (feeds)
252 - $action: action object being shown
253
254 StartShowNoticeItem: just before showing the notice item
255 - $item: The NoticeListItem object being shown
256
257 EndShowNoticeItem: just after showing the notice item
258 - $item: the NoticeListItem object being shown
259
260 StartShowNoticeInfo: just before showing notice info
261 - $item: The NoticeListItem object being shown
262
263 EndShowNoticeInfo: just after showing notice info
264 - $item: The NoticeListItem object being shown
265
266 StartShowNoticeOptions: just before showing notice options like fave, repeat, etc.
267 - $item: the NoticeListItem object being shown
268
269 EndShowNoticeOptions: just after showing notice options like fave, repeat, etc.
270 - $item: the NoticeListItem object being shown
271
272 StartShowFaveForm: just before showing the fave form
273 - $item: the NoticeListItem object being shown
274
275 EndShowFaveForm: just after showing the fave form
276 - $item: the NoticeListItem object being shown
277
278 StartShowPageNotice: just before showing the page notice (instructions or error)
279 - $action: action object being shown
280
281 EndShowPageNotice: just after showing the page notice (instructions or error)
282 - $action: action object being shown
283
284 StartShowPageTitle: just before showing the main h1 title of a page (only for registration)
285 - $action: action object being shown
286
287 StartProfileFormData: just before showing text entry fields on profile settings page
288 - $action: action object being shown
289
290 EndProfileFormData: just after showing text entry fields on profile settings page
291 - $action: action object being shown
292
293 StartProfileSaveForm: before starting to save a profile settings form
294 - $action: action object being shown
295
296 EndProfileSaveForm: after saving a profile settings form (after commit, no profile or user object!)
297 - $action: action object being shown
298
299 StartEmailFormData: just before showing text entry fields on email settings page
300 - $action: action object being shown
301
302 EndEmailFormData: just after showing text entry fields on email settings page
303 - $action: action object being shown
304
305 StartEmailSaveForm: before starting to save a email settings form
306 - $action: action object being shown
307 - &$user: user being saved
308
309 EndEmailSaveForm: after saving a email settings form (after commit)
310 - $action: action object being shown
311 - &$user: user being saved
312
313 StartRegistrationFormData: just before showing text entry fields on registration page
314 - $action: action object being shown
315
316 EndRegistrationFormData: just after showing text entry fields on registration page
317 - $action: action object being shown
318
319 StartRegistrationTry: before validating and saving a new user
320 - $action: action object being shown
321
322 EndRegistrationTry: after saving a new user (note: no profile or user object!)
323 - $action: action object being shown
324
325 StartAvatarFormData: before displaying avatar form
326 - $action: action object being shown
327
328 EndAvatarFormData: after displaying avatar form
329 - $action: action object being shown
330
331 StartAvatarSaveForm: before saving the avatar
332 - $action: action object being shown
333
334 EndAvatarSaveForm: after saving the avatar
335 - $action: action object being shown
336
337 StartNewQueueManager: before trying to start a new queue manager; good for plugins implementing new queue manager classes
338 - $qm: empty queue manager to set
339
340 RedirectToLogin: event when we force a redirect to login (like when going to a settings page on a remembered login)
341 - $action: action object being shown
342 - $user: current user
343
344 StartLoadDoc: before loading a help doc (hook this to show your own documentation)
345 - $title: title of the document
346 - $output: HTML output to show
347
348 EndLoadDoc: after loading a help doc (hook this to modify other documentation)
349 - $title: title of the document
350 - $output: HTML output to show
351
352 StartApiRss: after the rss <channel> element is started
353 - $action: action object being shown
354
355 StartApiAtom: after the <feed> element is started
356 - $action: action object being shown
357
358 StartEnqueueNotice: about to add a notice to the queues (good place to add a new transport)
359 - $notice: the notice being added
360 - &$transports: modifiable list of transports (as strings) to queue for
361
362 EndEnqueueNotice: after adding a notice to the queues
363 - $notice: the notice being added
364 - $transports: modifiable list of transports to use
365
366 UnqueueHandleNotice: Handle a notice when no queue manager is available
367 - $notice: the notice to handle
368 - $queue: the "queue" that is being executed
369
370 GetValidDaemons: Just before determining which daemons to run
371 - &$daemons: modifiable list of daemon scripts to run, filenames relative to scripts/
372
373 HandleQueuedNotice: Handle a queued notice at queue time (or immediately if no queue)
374 - &$notice: notice to handle
375
376 StartHtmlElement: Reight before outputting the HTML element - allows plugins to add namespaces
377 - $action: the current action
378 - &$attrs: attributes for the HTML element
379
380 EndHtmlElement: Right after outputting the HTML element
381 - $action: the current action
382 - &$attrs: attributes for the HTML element
383
384 StartShowHeadElements: Right after the <head> tag
385 - $action: the current action
386
387 EndShowHeadElements: Right before the </head> tag; put <script>s here if you need them in <head>
388 - $action: the current action
389
390 CheckSchema: chance to check the schema
391
392 StartProfileRemoteSubscribe: Before showing the link to remote subscription
393 - $userprofile: UserProfile widget
394 - &$profile: the profile being shown
395
396 EndProfileRemoteSubscribe: After showing the link to remote subscription
397 - $userprofile: UserProfile widget
398 - &$profile: the profile being shown
399
400 StartGroupSubscribe: Before showing the link to remote subscription
401 - $action: the current action
402 - $group: the group being shown
403
404 EndGroupSubscribe: After showing the link to remote subscription
405 - $action: the current action
406 - $group: the group being shown
407
408 StartProfilePageProfileSection: Starting to show the section of the
409                               profile page with the actual profile data;
410                               hook to prevent showing the profile (e.g.)
411 - $userprofile: UserProfile widget
412 - &$profile: the profile being shown
413
414 StartProfilePageProfileElements: inside the section, before the first
415                                element; prepend elements here
416 - $userprofile: UserProfile widget
417 - &$profile: the profile being shown
418
419 EndProfilePageProfileElements: inside the section, after the last element;
420                              append elements here
421 - $userprofile: UserProfile widget
422 - &$profile: the profile being shown
423
424 EndProfilePageProfileSection: After showing the section of the profile
425                             page with the profile elements
426 - $userprofile: UserProfile widget
427 - &$profile: the profile being shown
428
429 StartProfilePageActionsSection: Starting to show the section of the
430                                     profile page with action links; hook
431                                     to hide them (for example)
432 - $userprofile: UserProfile widget
433 - &$profile: the profile being shown
434
435 StartProfilePageActionsElements: inside the list, before the first
436                                      element; prepend elements here
437 - $userprofile: UserProfile widget
438 - &$profile: the profile being shown
439
440 EndProfilePageActionsElements: inside the list, after the last element;
441                                    append elements here
442 - $userprofile: UserProfile widget
443 - &$profile: the profile being shown
444
445 EndProfilePageActionsSection: After showing the section of the profile
446                                   page with the entity actions
447 - $userprofile: UserProfile widget
448 - &$profile: the profile being shown
449
450 StartProfilePageAvatar: before showing the avatar on the profile page
451 - $userprofile: UserProfile widget
452 - &$profile: the profile being shown
453
454 EndProfilePageAvatar: after showing the avatar on the profile page
455 - $userprofile: UserProfile widget
456 - &$profile: the profile being shown
457
458 StartProfilePageNickname: before showing the nickname on the profile page
459 - $userprofile: UserProfile widget
460 - &$profile: the profile being shown
461
462 EndProfilePageNickname: after showing the nickname on the profile page
463 - $userprofile: UserProfile widget
464 - &$profile: the profile being shown
465
466 StartProfilePageFullName: before showing the fullname on the profile page
467 - $userprofile: UserProfile widget
468 - &$profile: the profile being shown
469
470 EndProfilePageFullName: after showing the fullname on the profile page
471 - $userprofile: UserProfile widget
472 - &$profile: the profile being shown
473
474 StartProfilePageLocation: before showing the location on the profile page
475 - $userprofile: UserProfile widget
476 - &$profile: the profile being shown
477
478 EndProfilePageLocation: after showing the location on the profile page
479 - $userprofile: UserProfile widget
480 - &$profile: the profile being shown
481
482 StartProfilePageHomepage: before showing the homepage link on the profile page
483 - $userprofile: UserProfile widget
484 - &$profile: the profile being shown
485
486 EndProfilePageHomepage: after showing the homepage on the profile page
487 - $userprofile: UserProfile widget
488 - &$profile: the profile being shown
489
490 StartProfilePageBio: before showing the bio on the profile page
491 - $userprofile: UserProfile widget
492 - &$profile: the profile being shown
493
494 EndProfilePageBio: after showing the bio on the profile page
495 - $userprofile: UserProfile widget
496 - &$profile: the profile being shown
497
498 StartProfilePageProfileTags: before showing the tags on the profile page
499 - $userprofile: UserProfile widget
500 - &$profile: the profile being shown
501
502 EndProfilePageProfileTags: after showing the tags on the profile page
503 - $userprofile: UserProfile widget
504 - &$profile: the profile being shown
505
506 StartProfileList: when starting a list of profiles (before <ul>)
507 - $profilelist: ProfileList widget, with $profile, $action, and $out
508
509 EndProfileList: when ending a list of profiles (after </ul>)
510 - $profilelist: ProfileList widget
511
512 StartProfileListItem: when starting to show a profile list item
513 - $item: ProfileListItem widget
514
515 EndProfileListItem: after showing a profile list item
516 - $item: ProfileListItem widget
517
518 StartProfileListItemProfile: the profile data part of the item
519 - $item: ProfileListItem widget
520
521 EndProfileListItemProfile: the profile data part of the item
522 - $item: ProfileListItem widget
523
524 StartProfileListItemActions: the actions (buttons) for an item
525 - $item: ProfileListItem widget
526
527 EndProfileListItemActions: the actions (buttons) for an item
528 - $item: ProfileListItem widget
529
530 StartProfileListItemProfileElements: inside the <div>
531 - $item: ProfileListItem widget
532
533 EndProfileListItemProfileElements: inside the <div>
534 - $item: ProfileListItem widget
535
536 StartProfileListItemAvatar: Showing a profile list avatar
537 - $item: ProfileListItem widget
538
539 EndProfileListItemAvatar: Showing a profile list avatar
540 - $item: ProfileListItem widget
541
542 StartProfileListItemFullName: Showing the profile list full name
543 - $item: ProfileListItem widget
544
545 EndProfileListItemFullName: Showing the profile list full name
546 - $item: ProfileListItem widget
547
548 StartProfileListItemLocation: Showing the profile list location
549 - $item: ProfileListItem widget
550
551 EndProfileListItemLocation: Showing the profile list location
552 - $item: ProfileListItem widget
553
554 StartProfileListItemHomepage: Showing the profile list homepage
555 - $item: ProfileListItem widget
556
557 EndProfileListItemHomepage: Showing the profile list homepage
558 - $item: ProfileListItem widget
559
560 StartProfileListItemBio: Showing the profile list bio
561 - $item: ProfileListItem widget
562
563 EndProfileListItemBio: Showing the profile list bio
564 - $item: ProfileListItem widget
565
566 StartProfileListItemActionElements: Showing the profile list actions (prepend a button here, or replace all buttons)
567 - $item: ProfileListItem widget
568
569 EndProfileListItemActionElements: Showing profile list actions (append a button here)
570 - $item: ProfileListItem widget
571
572 StartUserXRDS: Start XRDS output (right after the opening XRDS tag)
573 - $action: the current action
574 - &$xrdsoutputter - XRDSOutputter object to write to
575
576 EndUserXRDS: End XRDS output (right before the closing XRDS tag)
577 - $action: the current action
578 - &$xrdsoutputter - XRDSOutputter object to write to
579
580 StartPublicXRDS: Start XRDS output (right after the opening XRDS tag)
581 - $action: the current action
582 - &$xrdsoutputter - XRDSOutputter object to write to
583
584 EndPublicXRDS: End XRDS output (right before the closing XRDS tag)
585 - $action: the current action
586 - &$xrdsoutputter - XRDSOutputter object to write to
587
588 StartCheckPassword: Check a username/password
589 - $nickname: The nickname to check
590 - $password: The password to check
591 - &$authenticatedUser: set to User object if credentials match a user.
592
593 EndCheckPassword: After checking a username/password pair
594 - $nickname: The nickname that was checked
595 - $password: The password that was checked
596 - $authenticatedUser: User object if credentials match a user, else null.
597
598 StartChangePassword: Before changing a password
599 - $user: user
600 - $oldpassword: the user's old password
601 - $newpassword: the desired new password
602
603 EndChangePassword: After changing a password
604 - $user: user
605
606 StartSetUser: Before setting the currently logged in user
607 - $user: user
608
609 EndSetUser: After setting the currently logged in user
610 - $user: user
611
612 StartSetApiUser: Before setting the current API user
613 - $user: user
614
615 EndSetApiUser: After setting the current API user
616 - $user: user
617
618 StartHasRole: Before determing if the a profile has a given role
619 - $profile: profile in question
620 - $name: name of the role in question
621 - &$has_role: does this profile have the named role?
622
623 EndHasRole: Before determing if the a profile has a given role
624 - $profile: profile in question
625 - $name: name of the role in question
626 - $has_role: does this profile have the named role?
627
628 UserDeleteRelated: Specify additional tables to delete entries from when deleting users
629 - $user: User object
630 - &$related: array of DB_DataObject class names to delete entries on matching user_id.
631
632 GetUrlShorteners: Specify URL shorteners that are available for use
633 - &$shorteners: append your shortener to this array like so: $shorteners[shortenerName]=array('display'=>display, 'freeService'=>boolean)
634
635 StartShortenUrl: About to shorten a URL
636 - $url: url to be shortened
637 - $shortenerName: name of the requested shortener
638 - &$shortenedUrl: short version of the url
639
640 EndShortenUrl: After a URL has been shortened
641 - $url: url to be shortened
642 - $shortenerName: name of the requested shortener
643 - $shortenedUrl: short version of the url
644
645 StartCssLinkElement: Before a <link rel="stylesheet"..> element is written
646 - $action
647 - &$src
648 - &$theme
649 - &$media
650
651 EndCssLinkElement: After a <link rel="stylesheet"..> element is written
652 - $action
653 - $src
654 - $theme
655 - $media
656
657 StartStyleElement: Before a <style...> element is written
658 - $action
659 - &$code
660 - &$type
661 - &$media
662
663 EndStyleElement: After a <style...> element is written
664 - $action
665 - $code
666 - $type
667 - $media
668
669 StartScriptElement: Before a <script...> element is written
670 - $action
671 - &$src
672 - &$type
673
674 EndScriptElement: After a <script...> element is written
675 - $action
676 - $src
677 - $type
678
679 StartInlineScriptElement: Before a <script...> element is written
680 - $action
681 - &$code
682 - &$type
683
684 EndInlineScriptElement: After a <script...> element is written
685 - $action
686 - $code
687 - $type
688
689 StartLog: Before writing to the logs
690 - &$priority
691 - &$msg
692 - &$filename
693
694 EndLog: After writing to the logs
695 - $priority
696 - $msg
697 - $filename
698
699 StartBlockProfile: when we're about to block
700 - $user: the person doing the block
701 - $profile: the person getting blocked, can be remote
702
703 EndBlockProfile: when a block has succeeded
704 - $user: the person doing the block
705 - $profile: the person blocked, can be remote
706
707 StartUnblockProfile: when we're about to unblock
708 - $user: the person doing the unblock
709 - $profile: the person getting unblocked, can be remote
710
711 EndUnblockProfile: when an unblock has succeeded
712 - $user: the person doing the unblock
713 - $profile: the person unblocked, can be remote
714
715 StartSubscribe: when a subscription is starting
716 - $profile: Profile that is subscribing
717 - $other: Profile that is being subscribed to
718
719 EndSubscribe: when a subscription is finished
720 - $profile: Profile that is subscribing
721 - $other: Profile that is being subscribed to
722
723 StartUnsubscribe: when an unsubscribe is starting
724 - $profile: Profile that is unsubscribing
725 - $other: Profile that is being unsubscribed from
726
727 EndUnsubscribe: when an unsubscribe is done
728 - $profile: Profile that is unsubscribing
729 - $other: Profile that is being unsubscribed from
730
731 StartJoinGroup: when a user is joining a group
732 - $group: the group being joined
733 - $profile: the local or remote user joining
734
735 EndJoinGroup: when a user finishes joining a group
736 - $group: the group being joined
737 - $profile: the local or remote user joining
738
739 StartLeaveGroup: when a user is leaving a group
740 - $group: the group being left
741 - $profile: the local or remote user leaving
742
743 EndLeaveGroup: when a user has left a group
744 - $group: the group being left
745 - $profile: the local or remote user leaving
746
747 StartShowContentLicense: Showing the default license for content
748 - $action: the current action
749
750 EndShowContentLicense: Showing the default license for content
751 - $action: the current action
752
753 GetImTransports: Get IM transports that are available
754 - &$transports: append your transport to this array like so: $transports[transportName]=array('display'=>display)
755
756 NormalizeImScreenname: Normalize an IM screenname
757 - $transport: transport the screenname is on
758 - &$screenname: screenname to be normalized
759
760 ValidateImScreenname: Validate an IM screenname
761 - $transport: transport the screenname is on
762 - $screenname: screenname to be validated
763 - $valid: is the screenname valid?
764
765 SendImConfirmationCode: Send a confirmation code to confirm a user owns an IM screenname
766 - $transport: transport the screenname exists on
767 - $screenname: screenname being confirmed
768 - $code: confirmation code for confirmation URL
769 - $user: user requesting the confirmation
770
771 StartUserRegister: When a new user is being registered
772 - $profile: Profile object with new profile data (no ID yet)
773
774 EndUserRegister: When a new user has been registered
775 - $profile: Profile object with new profile data
776
777 StartRobotsTxt: Before outputting the robots.txt page
778 - &$action: RobotstxtAction being shown
779
780 EndRobotsTxt: After the default robots.txt page (good place for customization)
781 - &$action: RobotstxtAction being shown
782
783 StartGetProfileUri: When determining the canonical URI for a given profile
784 - $profile: the current profile
785 - &$uri: the URI
786
787 EndGetProfileUri: After determining the canonical URI for a given profile
788 - $profile: the current profile
789 - &$uri: the URI
790
791 StartFavorNotice: Saving a notice as a favorite
792 - $profile: profile of the person faving (can be remote!)
793 - $notice: notice being faved
794 - &$fave: Favor object; null to start off with, but feel free to override.
795
796 EndFavorNotice: After saving a notice as a favorite
797 - $profile: profile of the person faving (can be remote!)
798 - $notice: notice being faved
799
800 StartDisfavorNotice: Saving a notice as a favorite
801 - $profile: profile of the person faving (can be remote!)
802 - $notice: notice being faved
803 - &$result: result of the disfavoring (if you override)
804
805 EndDisfavorNotice: After saving a notice as a favorite
806 - $profile: profile of the person faving (can be remote!)
807 - $notice: notice being faved
808
809 StartFavorNoticeForm: starting the data in the form for favoring a notice
810 - $FavorForm: the favor form being shown
811 - $notice: notice being favored
812
813 EndFavorNoticeForm: Ending the data in the form for favoring a notice
814 - $FavorForm: the favor form being shown
815 - $notice: notice being favored
816
817 StartDisFavorNoticeForm: starting the data in the form for disfavoring a notice
818 - $DisfavorForm: the disfavor form being shown
819 - $notice: notice being difavored
820
821 EndDisFavorNoticeForm: Ending the data in the form for disfavoring a notice
822 - $DisfavorForm: the disfavor form being shown
823 - $notice: notice being disfavored
824
825 StartFindMentions: start finding mentions in a block of text
826 - $sender: sender profile
827 - $text: plain text version of the notice
828 - &$mentions: mentions found so far. Array of arrays; each array
829   has 'mentioned' (array of mentioned profiles), 'url' (url to link as),
830   'title' (title of the link), 'position' (position of the text to
831   replace), 'text' (text to replace)
832
833 EndFindMentions: end finding mentions in a block of text
834 - $sender: sender profile
835 - $text: plain text version of the notice
836 - &$mentions: mentions found so far. Array of arrays; each array
837   has 'mentioned' (array of mentioned profiles), 'url' (url to link as),
838   'title' (title of the link), 'position' (position of the text to
839   replace), 'text' (text to replace)
840
841 StartShowSubscriptionsContent: before showing the subscriptions content
842 - $action: the current action
843
844 EndShowSubscriptionsContent: after showing the subscriptions content
845 - $action: the current action
846
847 StartShowUserGroupsContent: before showing the user groups content
848 - $action: the current action
849
850 EndShowUserGroupsContent: after showing the user groups content
851 - $action: the current action
852
853 StartShowAllContent: before showing the all (you and friends) content
854 - $action: the current action
855
856 EndShowAllContent: after showing the all (you and friends) content
857 - $action: the current action
858
859 StartShowSubscriptionsMiniList: at the start of subscriptions mini list
860 - $action: the current action
861
862 EndShowSubscriptionsMiniList: at the end of subscriptions mini list
863 - $action: the current action
864
865 StartShowGroupsMiniList: at the start of groups mini list
866 - $action: the current action
867
868 EndShowGroupsMiniList: at the end of groups mini list
869 - $action: the current action
870
871 StartDeleteUserForm: starting the data in the form for deleting a user
872 - $action: action being shown
873 - $user: user being deleted
874
875 EndDeleteUserForm: Ending the data in the form for deleting a user
876 - $action: action being shown
877 - $user: user being deleted
878
879 StartDeleteUser: handling the post for deleting a user
880 - $action: action being shown
881 - $user: user being deleted
882
883 EndDeleteUser: handling the post for deleting a user
884 - $action: action being shown
885 - $user: user being deleted
886
887 StartNoticeAsActivity: before converting a notice to an activity
888 - $notice: notice being converted
889 - &$activity: initially empty activity
890
891 EndNoticeAsActivity: after converting a notice to an activity (good time to customize!)
892 - $notice: notice being converted
893 - &$activity: activity, now more-or-less full
894
895 StartNoticeSaveWeb: before saving a notice through the Web interface
896 - $action: action being executed (instance of NewNoticeAction)
897 - &$authorId: integer ID of the author
898 - &$text: text of the notice
899 - &$options: additional options (location, replies, etc.)
900
901 EndNoticeSaveWeb: after saving a notice through the Web interface
902 - $action: action being executed (instance of NewNoticeAction)
903 - $notice: notice that was saved
904
905 StartRssEntryArray: at the start of copying a notice to an array
906 - $notice: the notice being copied
907 - &$entry: the entry (empty at beginning)
908
909 EndRssEntryArray: at the end of copying a notice to an array
910 - $notice: the notice being copied
911 - &$entry: the entry, with all the fields filled up
912
913 NoticeDeleteRelated: at the beginning of deleting related fields to a notice
914 - $notice: notice being deleted
915
916 StartShowHeadTitle: when beginning to show the <title> element
917 - $action: action being shown
918
919 EndShowHeadTitle: when done showing the <title>
920 - $action: action being shown
921
922 StartShowPageTitle: when beginning to show the page title <h1>
923 - $action: action being shown
924
925 EndShowPageTitle: when done showing the page title <h1>
926 - $action: action being shown
927
928 StartDeleteOwnNotice: when a user starts to delete their own notice
929 - $user: the user doing the delete
930 - $notice: the notice being deleted
931
932 EndDeleteOwnNotice: when a user has deleted their own notice
933 - $user: the user doing the delete
934 - $notice: the notice being deleted
935
936 StartShowFeedLinkList: before showing the feed list in the sidebar
937 - $action: action being executed
938 - $feeds: list of feeds to show
939
940 EndShowFeedLinkList: after showing the feed list in the sidebar
941 - $action: action being executed
942 - $feeds: list of feeds shown
943
944 StartShowFeedLink: before showing an individual feed item
945 - $action: action being executed
946 - $feed: feed to show
947
948 EndShowFeedLink: after showing an individual feed
949 - $action: action being executed
950 - $feed: feed to show
951
952 StartShowNoticeForm: before showing the notice form (before <form>)
953 - $action: action being executed
954
955 EndShowNoticeForm: after showing the notice form (after <form>)
956 - $action: action being executed
957
958 StartGrantRole: when a role is being assigned
959 - $profile: profile that will have the role
960 - $role: string name of the role
961
962 EndGrantRole: when a role has been successfully assigned
963 - $profile: profile that will have the role
964 - $role: string name of the role
965
966 StartRevokeRole: when a role is being revoked
967 - $profile: profile that will lose the role
968 - $role: string name of the role
969
970 EndRevokeRole: when a role has been revoked
971 - $profile: profile that lost the role
972 - $role: string name of the role
973
974 StartAtomPubNewActivity: When a new activity comes in through Atom Pub API
975 - &$activity: received activity
976 - $user: user publishing the entry
977 - &$notice: notice created; initially null, can be set
978
979 EndAtomPubNewActivity: When a new activity comes in through Atom Pub API
980 - $activity: received activity
981 - $user: user publishing the entry
982 - $notice: notice that was created
983
984 AdminPanelCheck: When checking whether the current user can access a given admin panel
985 - $name:  Name of the admin panel
986 - &$isOK: Boolean whether the user is allowed to use the panel
987
988 StartAdminPanelNav: Before displaying the first item in the list of admin panels
989 - $nav The AdminPanelNav widget
990
991 EndAdminPanelNav: After displaying the last item in the list of admin panels
992 - $nav The AdminPanelNav widget
993
994 StartActivityObjectFromNotice: When converting a notice to an activity:object
995 - $notice: The notice being converted
996 - &$object: The resulting object. Fill this and return false to override defaults.
997
998 EndActivityObjectFromNotice: After converting a notice to an activity:object
999 - $notice: The notice being converted
1000 - &$object: The resulting object. Can be edited
1001
1002 StartActivityObjectFromProfile: When converting a profile to an activity:object
1003 - $profile: The profile being converted
1004 - &$object: The (empty) object. Fill it up and return false to override defaults.
1005
1006 EndActivityObjectFromProfile: After converting a profile to an activity:object
1007 - $profile: The profile being converted
1008 - &$object: The finished object. Can be tweaked
1009
1010 StartActivityObjectFromGroup: When converting a group to an activity:object
1011 - $group: The group being converted
1012 - &$object: The (empty) object. Fill and return false to override.
1013
1014 EndActivityObjectFromGroup:  After converting a group to an activity:object
1015 - $group:  The group being converted
1016 - &$object: The finished object. Tweak as needed.
1017
1018 StartImportActivity: when we start to import an activity
1019 - $user: User to make the author import
1020 - $author: Author of the feed; good for comparisons
1021 - $activity: The current activity
1022 - $trusted: How "trusted" the process is
1023 - &$done: Return value; whether to continue
1024
1025 EndImportActivity: when we finish importing an activity
1026 - $user: User to make the author import
1027 - $author: Author of the feed; good for comparisons
1028 - $activity: The current activity
1029 - $trusted: How "trusted" the process is
1030
1031 StartProfileSettingsActions: when we're showing account-management action list
1032 - $action: Action being shown (use for output)
1033
1034 EndProfileSettingsActions: when we're showing account-management action list
1035 - $action: Action being shown (use for output)
1036
1037 StartOpenNoticeListItemElement: Before the opening <li> of a notice list element
1038 - $nli: The notice list item being shown
1039
1040 EndOpenNoticeListItemElement: After the opening <li> of a notice list element
1041 - $nli: The notice list item being shown
1042
1043 StartCloseNoticeListItemElement: Before the closing </li> of a notice list element
1044 - $nli: The notice list item being shown
1045
1046 EndCloseNoticeListItemElement: After the closing </li> of a notice list element
1047 - $nli: The notice list item being shown
1048
1049 StartGroupEditFormData: Beginning the group edit form entries
1050 - $form: The form widget being shown
1051
1052 EndGroupEditFormData: Ending the group edit form entries
1053 - $form: The form widget being shown
1054
1055 StartGroupSave: After initializing but before saving a group
1056 - &$group: group about to be saved
1057
1058 EndGroupSave: After saving a group, aliases, and first member
1059 - $group: group that was saved
1060
1061 StartInterpretCommand: Before running a command
1062 - $cmd: First word in the string, 'foo' in 'foo argument'
1063 - $arg: Argument, if any, like 'argument' in 'foo argument'
1064 - $user: User who issued the command
1065 - &$result: Resulting command; you can set this!
1066
1067 EndInterpretCommand: Before running a command
1068 - $cmd: First word in the string, 'foo' in 'foo argument'
1069 - $arg: Argument, if any, like 'argument' in 'foo argument'
1070 - $user: User who issued the command
1071 - $result: Resulting command
1072
1073 StartGroupActionsList: Start the list of actions on a group profile page (after <ul>, before first <li>)
1074 - $action: action being executed (for output and params)
1075 - $group: group for the page
1076
1077 EndGroupActionsList: End the list of actions on a group profile page (before </ul>, after last </li>)
1078 - $action: action being executed (for output and params)
1079 - $group: group for the page
1080
1081 StartGroupProfileElements: Start showing stuff about the group on its profile page
1082 - $action: action being executed (for output and params)
1083 - $group: group for the page
1084
1085 EndGroupProfileElements: Start showing stuff about the group on its profile page
1086 - $action: action being executed (for output and params)
1087 - $group: group for the page
1088
1089 StartShowProfileTagContent: When showing a people tag page
1090 - $action: action being executed (for output and params)
1091
1092 EndShowProfileTagContent: After showing the contents of a people tag page
1093 - $action: action being executed (for output and params)
1094
1095 StartShowTaggedProfilesMiniList: at the start of mini list of tagged profiles
1096 - $action: action being executed (for output and params)
1097
1098 EndShowTaggedProfilesMiniList: at the end of mini list of tagged profiles
1099 - $action: action being executed (for output and params)
1100
1101 StartShowProfileTagSubscribersMiniList: at the start of mini list of people tag subscribers
1102 - $action: action being executed (for output and params)
1103
1104 EndShowProfileTagSubscribersMiniList: at the end of mini list of people tag subscribers
1105 - $action: action being executed (for output and params)
1106
1107 StartTagProfileAction: When starting to show profile tagging page
1108 - $action: action being executed (for output and params)
1109 - $profile: profile being tagged
1110
1111 EndTagProfileAction: After showing profile tagging page
1112 - $action: action being executed (for output and params)
1113 - $profile: profile being tagged
1114
1115 StartProfileCompletionSearch: When starting a profile search for autocompletion
1116 - $action: action being executed (for output and params)
1117 - &$profile: result Profile objects
1118 - $search_engine: the search engine
1119
1120 EndProfileCompletionSearch: After search results for profile autocompletion have been found
1121 - $action: profilec completion action
1122 - &$profile: current result Profile objects
1123 - $search_engine: The search engine object
1124
1125 StartShowTagProfileForm: When showing people tagging form
1126 - $action: action being executed (for output and params)
1127 - $profile: profile being tagged
1128
1129 EndShowTagProfileForm: After showing people tagging form
1130 - $action: action being executed (for output and params)
1131 - $profile: profile being tagged
1132
1133 StartSavePeopletags: When starting to save people tags
1134 - $action: action being executed (for output and params)
1135 - $tagstring: string input, a list of tags
1136
1137 EndSavePeopletags: After saving people tags
1138 - $action: action being executed (for output and params)
1139 - $tagstring: string input, a list of tags
1140
1141 StartProfiletagGetUri: when generating the Uri for a people tag
1142 - $profile_list: the people tag, a Profile_list object
1143 - &$uri: the URI
1144
1145 EndProfiletagGetUri: after generating the uri for a people tag
1146 - $profile_list: the people tag, a Profile_list object
1147 - &$uri: the URI
1148
1149 StartUserPeopletagHomeUrl: when generating the homepage url for a people tag
1150 - $profile_list: the people tag, a Profile_list object
1151 - &$url: the URL
1152
1153 EndUserPeopletagHomeUrl: after generating the homepage url for a people tag
1154 - $profile_list: the people tag, a Profile_list object
1155 - &$url: the URL
1156
1157 StartProfiletagPermalink: when generating the permalink url for a people tag
1158 - $profile_list: the people tag, a Profile_list object
1159 - &$url: the URL
1160
1161 EndProfiletagPermalink: after generating the permalink url for a people tag
1162 - $profile_list: the people tag, a Profile_list object
1163 - &$url: the URL
1164
1165 StartTagProfile: when tagging a profile
1166 - $tagger: profile tagging
1167 - $tagged: profile being tagged
1168 - $tag: the tag
1169
1170 EndTagProfile: after tagging a profile
1171 - $newtag: the newly created Profile_tag object
1172
1173 StartUntagProfile: when deleting a people tag
1174 - $ptag: the Profile_tag object being deleted
1175
1176 EndUntagProfile: after deleting a people tag
1177 - $orig: a copy of the deleted Profile_tag object
1178
1179 StartSubscribePeopletag: when subscribing to a people tag
1180 - $peopletag: Profile_list object being subscribed to
1181 - $profile: subscriber's profile
1182
1183 EndSubscribePeopletag: after subscribing to a people tag
1184 - $profile_list: the people tag, a Profile_list object: Profile_list object being subscribed to
1185 - $profile: subscriber's profile
1186
1187 StartUnsubscribePeopletag: when unsubscribing to a people tag
1188 - $profile_list: the people tag, a Profile_list object: Profile_list object being subscribed to
1189 - $profile: subscriber's profile
1190
1191 EndUnsubscribePeopletag: after unsubscribing to a people tag
1192 - $peopletag: Profile_list object being subscribed to
1193 - $profile: subscriber's profile
1194
1195 StartActivityObjectFromPeopletag: while starting to create an ActivityObject from a people tag
1196 - $profile_list: the people tag, a Profile_list object
1197 - &$object: activity object
1198
1199 EndActivityObjectFromPeopletag: after making an ActivityObject from a people tag
1200 - $profile_list: the people tag, a Profile_list object
1201 - &$object: activity object
1202
1203 StartPeopletagGroupNav: Showing the people tag nav menu
1204 - $menu: the menu widget; use $menu->action for output
1205
1206 EndPeopletagGroupNav: after showing the people tag nav menu
1207 - $menu: the menu widget; use $menu->action for output
1208
1209 StartShowPeopletagItem: when showing a people tag
1210 - $widget: PeopletagListItem widget
1211
1212 EndShowPeopletagItem: after showing a people tag
1213 - $widget: PeopletagListItem widget
1214
1215 StartSubscribePeopletagForm: when showing people tag subscription form
1216 - $action: action being executed (for output and params)
1217 - $peopletag: people tag being subscribed to
1218
1219 EndSubscribePeopletagForm: after showing the people tag subscription form
1220 - $action: action being executed (for output and params)
1221 - $peopletag: people tag being subscribed to
1222
1223 StartShowPeopletags: when showing a textual list of people tags
1224 - $widget: PeopletagsWidget; use $widget->out for output
1225 - $tagger: profile of the tagger
1226 - $tagged: profile tagged
1227
1228 EndShowPeopletags: after showing a textual list of people tags
1229 - $widget: PeopletagsWidget; use $widget->out for output
1230 - $tagger: profile of the tagger
1231 - $tagged: profile tagged
1232
1233 StartProfileListItemTags: when showing people tags in a profile list item widget
1234 - $widget: ProfileListItem widget
1235
1236 EndProfileListItemTags: after showing people tags in a profile list item widget
1237 - $widget: ProfileListItem widget
1238
1239 StartActivityObjectOutputAtom: Called at start of Atom XML output generation for ActivityObject chunks, just inside the <activity:object>. Cancel the event to take over its output completely (you're responsible for calling the matching End event if so)
1240 - $obj: ActivityObject
1241 - $out: XMLOutputter to append custom output
1242
1243 EndActivityObjectOutputAtom: Called at end of Atom XML output generation for ActivityObject chunks, just inside the </activity:object>
1244 - $obj: ActivityObject
1245 - $out: XMLOutputter to append custom output
1246
1247 StartActivityObjectOutputJson: Called at start of JSON output generation for ActivityObject chunks: the array has not yet been filled out. Cancel the event to take over its output completely (you're responsible for calling the matching End event if so)
1248 - $obj ActivityObject
1249 - &$out: array to be serialized; you're free to modify it
1250
1251 EndActivityObjectOutputJson: Called at end of JSON output generation for ActivityObject chunks: the array has not yet been filled out.
1252 - $obj ActivityObject
1253 - &$out: array to be serialized; you're free to modify it
1254
1255 StartNoticeWhoGets: Called at start of inbox delivery prep; plugins can schedule notices to go to particular profiles that would otherwise not have reached them. Canceling will take over the entire addressing operation. Be aware that output can be cached or used several times, so should remain idempotent.
1256 - $notice Notice
1257 - &$ni: in/out array mapping profile IDs to constants: NOTICE_INBOX_SOURCE_SUB etc
1258
1259 EndNoticeWhoGets: Called at end of inbox delivery prep; plugins can filter out profiles from receiving inbox delivery here.  Be aware that output can be cached or used several times, so should remain idempotent.
1260 - $notice Notice
1261 - &$ni: in/out array mapping profile IDs to constants: NOTICE_INBOX_SOURCE_SUB etc
1262
1263 StartDefaultLocalNav: When showing the default local nav
1264 - $menu: the menu
1265 - $user: current user
1266
1267 EndDefaultLocalNav: When showing the default local nav
1268 - $menu: the menu
1269 - $user: current user
1270
1271 StartShowAccountProfileBlock: When showing the profile block for an account
1272 - $out: XMLOutputter to append custom output
1273 - $profile: the profile being shown
1274
1275 EndShowAccountProfileBlock: After showing the profile block for an account
1276 - $out: XMLOutputter to append custom output
1277 - $profile: the profile being shown
1278
1279 StartShowGroupProfileBlock: When showing the profile block for a group
1280 - $out: XMLOutputter to append custom output
1281 - $profile: the profile being shown
1282
1283 EndShowGroupProfileBlock: After showing the profile block for a group
1284 - $out: XMLOutputter to append custom output
1285 - $group: the group being shown
1286
1287 StartShowThreadedNoticeTail: when showing the replies etc. to a notice
1288 - $nli: parent noticelistitem
1289 - $notice: parent notice
1290 - &$children: list of children
1291
1292 EndShowThreadedNoticeTail: when showing the replies etc. to a notice
1293 - $nli: parent noticelistitem
1294 - $notice: parent notice
1295 - $children: list of children
1296
1297 StartShowThreadedNoticeSub: when showing a reply to a notice
1298 - $nli: parent noticelistitem
1299 - $parent: parent notice
1300 - $child: child notice
1301
1302 EndShowThreadedNoticeSub: when showing a reply to a notice
1303 - $nli: parent noticelistitem
1304 - $parent: parent notice
1305 - $child: child notice
1306
1307 StartAddEmailAddress: when adding an email address through the Web UI
1308 - $user: user getting the new address
1309 - $email: email being added
1310
1311 EndAddEmailAddress: done adding an email address through the Web UI
1312 - $user: user getting the new address
1313 - $email: email being added
1314
1315 StartValidateEmailInvite: when validating an email address for invitations
1316 - $user: user doing the invite
1317 - $email: email address
1318 - &$valid: flag for if it's valid; can be modified
1319
1320 EndValidateEmailInvite: after validating an email address for invitations
1321 - $user: user doing the invite
1322 - $email: email address
1323 - &$valid: flag for if it's valid; can be modified
1324
1325 StartLocalURL: before resolving a local url for an action
1326 - &$action: action to find a path for
1327 - &$paramsi: parameters to pass to the action
1328 - &$fragment: any url fragement
1329 - &$addSession: whether to add session variable
1330 - &$url: resulting URL to local resource
1331
1332 EndLocalURL: before resolving a local url for an action
1333 - &$action: action to find a path for
1334 - &$paramsi: parameters to pass to the action
1335 - &$fragment: any url fragement
1336 - &$addSession: whether to add session variable
1337 - &$url: resulting URL to local resource
1338
1339 StartProfileGetAvatar: When getting an avatar for a profile
1340 - $profile: profile
1341 - $size: size of the avatar
1342 - &$avatar: avatar
1343
1344 EndProfileGetAvatar: After getting an avatar for a profile
1345 - $profile: profile
1346 - $size: size of the avatar
1347 - &$avatar: avatar
1348
1349 StartRegisterSuccess: Before showing the registration success message
1350 - $action: the registration action
1351
1352 StartRegisterSuccess: After showing the registration success message
1353 - $action: the registration action
1354
1355 StartDocFileForTitle: Before searching for a doc or mail template
1356 - $title: Title we're looking for
1357 - &$paths: Paths we're searching
1358 - &$filename: Filename so far (set this if you want)
1359
1360 EndDocFileForTitle: After searching for a doc or mail template
1361 - $title: Title we looked for
1362 - $paths: Paths we searched
1363 - &$filename: Filename so far (set this if you want)
1364
1365 StartReadWriteTables: when noting which tables must be read-write, even on read-only actions
1366 - &$tables: list of table names
1367 - &$rwdb: read-write database URI
1368
1369 EndReadWriteTables: after noting which tables must be read-write, even on read-only actions
1370 - $tables: list of table names
1371 - $rwdb: read-write database URI
1372
1373 StartShowInviteForm: Right before displaying the invitations form
1374 - $action: invitation action
1375
1376 EndShowInviteForm: After displaying the invitations form
1377 - $action: invitation action
1378
1379 StartSendInvitations: Right before sending invitations
1380 - $action: invitation action
1381
1382 EndSendInvitations: Right after sending invitations
1383 - $action: invitation action
1384
1385 StartShowInvitationSuccess: Right before showing invitations success msg
1386 - $action: invitation action
1387
1388 EndShowInvitationSuccess: After showing invitations success msg
1389 - $action: invitation action
1390
1391 StartUpgrade: when starting a site upgrade
1392
1393 EndUpgrade: when ending a site upgrade; good place to do your own upgrades
1394
1395 HaveIMPlugin: is there an IM plugin loaded?
1396 - &$haveIMPlugin: set me to true if you're loaded!
1397
1398 StartShowNoticeOptionItems: Before showing first controls in a notice list item; inside the div
1399 - $nli: NoticeListItem being shown
1400
1401 EndShowNoticeOptionItems: After showing last controls in a notice list item; inside the div
1402 - $nli: NoticeListItem being shown
1403
1404 StartNoticeInScope: Before checking if a notice should be visible to a user
1405 - $notice: The notice to check
1406 - $profile: The profile to check for scope
1407 - &$bResult: The boolean result; fill this in if you want to skip
1408
1409 EndNoticeInScope: After checking if a notice should be visible to a user
1410 - $notice: The notice to check
1411 - $profile: The profile to check for scope
1412 - &$bResult: The boolean result; overwrite this if you so desire
1413
1414 StartNoticeListPrefill: Before pre-filling a list of notices with extra data
1415 - &$notices: Notices to be pre-filled
1416 - $avatarSize: The avatar size for the list
1417
1418 EndNoticeListPrefill: After pre-filling a list of notices with extra data
1419 - &$notices: Notices that were pre-filled
1420 - &$profiles: Profiles that were pre-filled 
1421 - $avatarSize: The avatar size for the list
1422
1423 OtherAccountProfiles: Hook to add account profiles to a user account profile block
1424 - $profile: the Profile being shown
1425 - &$others: Modifiable array of profile info arrays. Each one has the following fields:
1426             href: link to the profile
1427             text: text for the profile
1428             image: mini image for the profile