]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - EVENTS.txt
Added the new pinghandler to the stopdaemons script and improved the behaviour and...
[quix0rs-gnu-social.git] / EVENTS.txt
1 InitializePlugin: a chance to initialize a plugin in a complete
2                   environment
3
4 CleanupPlugin: a chance to cleanup a plugin at the end of a program
5
6 StartPrimaryNav: Showing the primary nav menu
7 - $action: the current action
8
9 EndPrimaryNav: At the end of the primary nav menu
10 - $action: the current action
11
12 StartSecondaryNav: Showing the secondary nav menu
13 - $action: the current action
14
15 EndSecondaryNav: At the end of the secondary nav menu
16 - $action: the current action
17
18 StartShowStyles: Showing Style links; good place to add UA style resets
19 - $action: the current action
20
21 EndShowStyles: End showing Style links; good place to add custom styles
22 - $action: the current action
23
24 StartShowLaconicaStyles: Showing Laconica Style links
25 - $action: the current action
26
27 EndShowLaconicaStyles: End showing Laconica Style links;  good place to add handheld or JavaScript dependant styles
28 - $action: the current action
29
30 StartShowUAStyles: Showing custom UA Style links
31 - $action: the current action
32
33 EndShowUAStyles: End showing custom UA Style links; good place to add user-agent (e.g., filter, -webkit, -moz) specific styles
34 - $action: the current action
35
36 StartShowScripts: Showing JavaScript links
37 - $action: the current action
38
39 EndShowScripts: End showing JavaScript links; good place to add custom
40                 links like Google Analytics
41 - $action: the current action
42
43 StartShowJQueryScripts: Showing JQuery script links (use this to link to e.g. Google mirrors)
44 - $action: the current action
45
46 EndShowJQueryScripts: End showing JQuery script links
47 - $action: the current action
48
49 StartShowLaconicaScripts: Showing Laconica script links (use this to link to a CDN or something)
50 - $action: the current action
51
52 EndShowLaconicaScripts: End showing Laconica script links
53 - $action: the current action
54
55 StartShowSections: Start the list of sections in the sidebar
56 - $action: the current action
57
58 EndShowSections: End the list of sections in the sidebar
59 - $action: the current action
60
61 StartShowHeader: Showing before the header container
62 - $action: the current action
63
64 EndShowHeader: Showing after the header container
65 - $action: the current action
66
67 StartShowFooter: Showing before the footer container
68 - $action: the current action
69
70 EndShowFooter: Showing after the footer container
71 - $action: the current action
72
73 StartShowContentBlock: Showing before the content container
74 - $action: the current action
75
76 EndShowContentBlock: Showing after the content container
77 - $action: the current action
78
79 StartNoticeSave: before inserting a notice (good place for content filters)
80 - $notice: notice being saved (no ID or URI)
81
82 EndNoticeSave: after inserting a notice and related code
83 - $notice: notice that was saved (with ID and URI)
84
85 StartShowLocalNavBlock: Showing the local nav menu
86 - $action: the current action
87
88 EndShowLocalNavBlock: At the end of the local nav menu
89 - $action: the current action
90
91 StartShowHTML: Chance to set document headers (e.g., content type, charset, language), DOCTYPE and html element properties
92 - $action: the current action
93
94 EndShowHTML: Showing after the html element
95 - $action: the current action
96
97 StartPublicGroupNav: Showing the public group nav menu
98 - $action: the current action
99
100 EndPublicGroupNav: At the end of the public group nav menu
101 - $action: the current action
102
103 RouterInitialized: After the router instance has been initialized
104 - $m: the Net_URL_Mapper that has just been set up
105