]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - EVENTS.txt
Merge branch 'master' of git@gitorious.org:laconica/mainline
[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 StartShowLaconicaStyles: Showing Laconica Style links
24 - $action: the current action
25
26 EndShowLaconicaStyles: End showing Laconica Style links;  good place to add handheld or JavaScript dependant styles
27 - $action: the current action
28
29 StartShowUAStyles: Showing custom UA Style links
30 - $action: the current action
31
32 EndShowUAStyles: End showing custom UA Style 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 StartShowLaconicaScripts: Showing Laconica script links (use this to link to a CDN or something)
49 - $action: the current action
50
51 EndShowLaconicaScripts: End showing Laconica script links
52 - $action: the current action
53
54 StartShowSections: Start the list of sections in the sidebar
55 - $action: the current action
56
57 EndShowSections: End the list of sections in the sidebar
58 - $action: the current action
59
60 StartShowHeader: Showing before the header container
61 - $action: the current action
62
63 EndShowHeader: Showing after the header container
64 - $action: the current action
65
66 StartShowFooter: Showing before the footer container
67 - $action: the current action
68
69 EndShowFooter: Showing after the footer container
70 - $action: the current action
71
72 StartShowContentBlock: Showing before the content container
73 - $action: the current action
74
75 EndShowContentBlock: Showing after the content container
76 - $action: the current action
77
78 StartNoticeSave: before inserting a notice (good place for content filters)
79 - $notice: notice being saved (no ID or URI)
80
81 EndNoticeSave: after inserting a notice and related code
82 - $notice: notice that was saved (with ID and URI)
83
84 StartShowLocalNavBlock: Showing the local nav menu
85 - $action: the current action
86
87 EndShowLocalNavBlock: At the end of the local nav menu
88 - $action: the current action
89
90 StartShowHTML: Chance to set document headers (e.g., content type, charset, language), DOCTYPE and html element properties
91 - $action: the current action
92
93 EndShowHTML: Showing after the html element
94 - $action: the current action
95
96 StartPublicGroupNav: Showing the public group nav menu
97 - $action: the current action
98
99 EndPublicGroupNav: At the end of the public group nav menu
100 - $action: the current action
101
102 StartSubGroupNav: Showing the subscriptions group nav menu
103 - $action: the current action
104
105 EndSubGroupNav: At the end of the subscriptions group nav menu
106 - $action: the current action
107
108 RouterInitialized: After the router instance has been initialized
109 - $m: the Net_URL_Mapper that has just been set up
110
111 StartLogout: Before logging out
112 - $action: the logout action
113
114 EndLogout: After logging out
115 - $action: the logout action
116
117 ArgsInitialized: After the argument array has been initialized
118 - $args: associative array of arguments, can be modified
119
120 StartAddressData: Allows the site owner to provide additional information about themselves for contact (e.g., tagline, email, location)
121 - $action: the current action
122
123 EndAddressData: At the end of <address>
124 - $action: the current action