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
StartShowStatusNetStyles: Showing StatusNet Style links
24
- $action: the current action
25
26
EndShowStatusNetStyles: End showing StatusNet Style links;  good place to add handheld or JavaScript dependant styles
27
- $action: the current action
28
29
StartShowLaconicaStyles: backwards compatibility; deprecated
30
- $action: the current action
31
32
EndShowLaconicaStyles: backwards compatibility; deprecated
33
- $action: the current action
34
35
StartShowUAStyles: Showing custom UA Style links
36
- $action: the current action
37
38
EndShowUAStyles: End showing custom UA Style links; good place to add user-agent (e.g., filter, -webkit, -moz) specific styles
39
- $action: the current action
40
41
StartShowScripts: Showing JavaScript links
42
- $action: the current action
43
44
EndShowScripts: End showing JavaScript links; good place to add custom
45
		links like Google Analytics
46
- $action: the current action
47
48
StartShowJQueryScripts: Showing JQuery script links (use this to link to e.g. Google mirrors)
49
- $action: the current action
50
51
EndShowJQueryScripts: End showing JQuery script links
52
- $action: the current action
53
54
StartShowStatusNetScripts: Showing StatusNet script links (use this to link to a CDN or something)
55
- $action: the current action
56
57
EndShowStatusNetScripts: End showing StatusNet script links
58
- $action: the current action
59
60
StartShowLaconicaScripts: backwards compatibility; deprecated
61
- $action: the current action
62
63
EndShowLaconicaScripts: backwards compatibility; deprecated
64
- $action: the current action
65
66
StartShowSections: Start the list of sections in the sidebar
67
- $action: the current action
68
69
EndShowSections: End the list of sections in the sidebar
70
- $action: the current action
71
72
StartShowHeader: Showing before the header container
73
- $action: the current action
74
75
EndShowHeader: Showing after the header container
76
- $action: the current action
77
78
StartShowFooter: Showing before the footer container
79
- $action: the current action
80
81
EndShowFooter: Showing after the footer container
82
- $action: the current action
83
84
StartShowContentBlock: Showing before the content container
85
- $action: the current action
86
87
EndShowContentBlock: Showing after the content container
88
- $action: the current action
89
90
StartNoticeSave: before inserting a notice (good place for content filters)
91
- $notice: notice being saved (no ID or URI)
92
93
EndNoticeSave: after inserting a notice and related code
94
- $notice: notice that was saved (with ID and URI)
95
96
StartShowLocalNavBlock: Showing the local nav menu
97
- $action: the current action
98
99
EndShowLocalNavBlock: At the end of the local nav menu
100
- $action: the current action
101
102
StartShowHTML: Chance to set document headers (e.g., content type, charset, language), DOCTYPE and html element properties
103
- $action: the current action
104
105
EndShowHTML: Showing after the html element
106
- $action: the current action
107
108
StartPublicGroupNav: Showing the public group nav menu
109
- $action: the current action
110
111
EndPublicGroupNav: At the end of the public group nav menu
112
- $action: the current action
113
114
StartSubGroupNav: Showing the subscriptions group nav menu
115
- $action: the current action
116
117
EndSubGroupNav: At the end of the subscriptions group nav menu
118
- $action: the current action
119
120
RouterInitialized: After the router instance has been initialized
121
- $m: the Net_URL_Mapper that has just been set up
122
123
StartLogout: Before logging out
124
- $action: the logout action
125
126
EndLogout: After logging out
127
- $action: the logout action
128
129
ArgsInitialized: After the argument array has been initialized
130
- $args: associative array of arguments, can be modified
131
132
StartAddressData: Allows the site owner to provide additional information about themselves for contact (e.g., tagline, email, location)
133
- $action: the current action
134
135
EndAddressData: At the end of <address>
136
- $action: the current action