]> git.mxchange.org Git - friendica.git/blob - doc/Plugins.md
Merge pull request #1254 from annando/1409-shadow-items
[friendica.git] / doc / Plugins.md
1 Friendica Addon/Plugin development
2 ==========================
3
4 Please see the sample addon 'randplace' for a working example of using some of these features. The facebook addon provides an example of integrating both "addon" and "module" functionality. Addons work by intercepting event hooks - which must be registered. Modules work by intercepting specific page requests (by URL path). 
5
6
7 Plugin names cannot contain spaces or other punctuation and are used as filenames and function names. You may supply a "friendly" name within the comment block. Each addon must contain both an install and an uninstall function based on the addon/plugin name. For instance "plugin1name_install()". These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your plugin will require. The install and uninstall functions will also be called (i.e. re-installed) if the plugin changes after installation - therefore your uninstall should not destroy data and install should consider that data may already exist. Future extensions may provide for "setup" amd "remove". 
8
9 Plugins should contain a comment block with the four following parameters: 
10
11         /*
12         * Name: My Great Plugin 
13         * Description: This is what my plugin does. It's really cool
14         * Version: 1.0
15         * Author: John Q. Public <john@myfriendicasite.com>
16         */
17
18
19
20
21 Register your plugin hooks during installation.
22
23     register_hook($hookname, $file, $function);
24
25 $hookname is a string and corresponds to a known Friendica hook.
26
27 $file is a pathname relative to the top-level Friendica directory. This *should* be 'addon/plugin_name/plugin_name.php' in most cases.
28
29 $function is a string and is the name of the function which will be executed when the hook is called.
30
31
32 Your hook callback functions will be called with at least one and possibly two arguments
33
34
35     function myhook_function(&$a, &$b) {
36
37
38     }
39
40
41 If you wish to make changes to the calling data, you must declare them as
42 reference variables (with '&') during function declaration.
43
44 $a is the Friendica 'App' class - which contains a wealth of information
45 about the current state of Friendica, such as which module has been called,
46 configuration info, the page contents at the point the hook was invoked, profile
47 and user information, etc. It is recommeded you call this '$a' to match its usage
48 elsewhere.
49
50 $b can be called anything you like. This is information which is specific to the hook
51 currently being processed, and generally contains information that is being immediately
52 processed or acted on that you can use, display, or alter. Remember to declare it with
53 '&' if you wish to alter it.
54
55 Modules
56 --------
57
58 Plugins/addons may also act as "modules" and intercept all page requests for a given URL path. In order for a plugin to act as a module it needs to define a function "plugin_name_module()" which takes no arguments and need not do anything.
59
60 If this function exists, you will now receive all page requests for "http://my.web.site/plugin_name" - with any number of URL components as additional arguments. These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components. So http://my.web.site/plugin/arg1/arg2 would look for a module named "plugin" and pass its module functions the $a App structure (which is available to many components). This will include:
61      $a->argc = 3
62      $a->argv = array(0 => 'plugin', 1 => 'arg1', 2 => 'arg2');
63
64 Your module functions will often contain the function plugin_name_content(&$a), which defines and returns the page body content. They may also contain plugin_name_post(&$a) which is called before the _content function and typically handles the results of POST forms. You may also have plugin_name_init(&$a) which is called very early on and often does module initialisation. 
65
66
67 Templates
68 ----------
69
70 If your plugin need some template, you can use Friendica template system. Friendica use [smarty3](http://www.smarty.net/) as template engine.
71
72 Put your tpl files in *templates/* subfolder of your plugin.
73
74 In your code, like in function plugin_name_content(), load template file and execute it passing needed values:
75
76     # load template file. first argument is the template name, 
77     # second is the plugin path relative to friendica top folder
78     $tpl = get_markup_template('mytemplate.tpl', 'addon/plugin_name/');
79
80     # apply template. first argument is the loaded template, 
81     # second an array of 'name'=>'values' to pass to template
82     $output = replace_macros($tpl,array(
83         'title' => 'My beautifull plugin',
84     ));
85
86 See also wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide)
87
88 Current hooks:
89 --------------
90
91 **'authenticate'** - called when a user attempts to login.
92     $b is an array
93         'username' => the supplied username
94         'password' => the supplied password
95         'authenticated' => set this to non-zero to authenticate the user.
96         'user_record' => successful authentication must also return a valid user record from the database
97
98 **'logged_in'** - called after a user has successfully logged in.
99     $b contains the $a->user array
100
101
102 **'display_item'** - called when formatting a post for display.
103     $b is an array
104         'item' => The item (array) details pulled from the database
105         'output' => the (string) HTML representation of this item prior to adding it to the page
106
107 **'post_local'** - called when a status post or comment is entered on the local system
108     $b is the item array of the information to be stored in the database
109         {Please note: body contents are bbcode - not HTML)
110
111 **'post_local_end'** - called when a local status post or comment has been stored on the local system
112     $b is the item array of the information which has just been stored in the database
113         {Please note: body contents are bbcode - not HTML)
114
115 **'post_remote'** - called when receiving a post from another source. This may also be used to post local activity or system generated messages.
116     $b is the item array of information to be stored in the database and the item
117     body is bbcode.
118
119 **'settings_form'** - called when generating the HTML for the user Settings page
120     $b is the (string) HTML of the settings page before the final '</form>' tag.
121
122 **'settings_post'** - called when the Settings pages are submitted.
123     $b is the $_POST array
124
125 **'plugin_settings'** - called when generating the HTML for the addon settings page
126     $b is the (string) HTML of the addon settings page before the final '</form>' tag.
127
128 **'plugin_settings_post'** - called when the Addon Settings pages are submitted.
129     $b is the $_POST array
130
131 **'profile_post'** - called when posting a profile page.
132     $b is the $_POST array
133
134 **'profile_edit'** - called prior to output of profile edit page
135     $b is array
136         'profile' => profile (array) record from the database
137         'entry' => the (string) HTML of the generated entry
138
139
140 **'profile_advanced'** - called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page.
141     $b is the (string) HTML representation of the generated profile
142     (The profile array details are in $a->profile)
143
144 **'directory_item'** - called from the Directory page when formatting an item for display
145     $b is an array
146         'contact' => contact (array) record for the person from the database
147         'entry' => the (string) HTML of the generated entry
148
149 **'profile_sidebar_enter'** - called prior to generating the sidebar "short" profile for a page
150     $b is (array) the person's profile array
151
152 **'profile_sidebar'** - called when generating the sidebar "short" profile for a page
153     $b is an array
154         'profile' => profile (array) record for the person from the database
155         'entry' => the (string) HTML of the generated entry
156
157 **'contact_block_end'** - called when formatting the block of contacts/friends on a profile sidebar has completed
158     $b is an array
159           'contacts' => array of contacts
160           'output' => the (string) generated HTML of the contact block
161
162 **'bbcode'** - called during conversion of bbcode to html
163     $b is (string) converted text
164
165 **'html2bbcode'** - called during conversion of html to bbcode (e.g. remote message posting)
166     $b is (string) converted text
167
168 **'page_header'** - called after building the page navigation section
169     $b is (string) HTML of nav region
170
171 **'personal_xrd'** - called prior to output of personal XRD file.
172     $b is an array
173         'user' => the user record for the person
174         'xml' => the complete XML to be output
175
176 **'home_content'** - called prior to output home page content, shown to unlogged users
177     $b is (string) HTML of section region
178
179 **'contact_edit'** - called when editing contact details on an individual from the Contacts page
180     $b is (array)
181         'contact' => contact record (array) of target contact
182         'output' => the (string) generated HTML of the contact edit page
183
184 **'contact_edit_post'** - called when posting the contact edit page
185     $b is the $_POST array
186
187 **'init_1'** - called just after DB has been opened and before session start
188     $b is not used or passed
189
190 **'page_end'** - called after HTML content functions have completed
191     $b is (string) HTML of content div
192
193 **'avatar_lookup'** - called when looking up the avatar
194     $b is (array)
195         'size' => the size of the avatar that will be looked up
196         'email' => email to look up the avatar for
197         'url' => the (string) generated URL of the avatar
198
199 **'emailer_send_prepare'** - called from Emailer::send() before building the mime message
200     $b is (array) , params to Emailer::send()
201      'fromName' => name of the sender
202      'fromEmail' => email fo the sender
203      'replyTo' => replyTo address to direct responses
204      'toEmail' => destination email address
205      'messageSubject' => subject of the message
206      'htmlVersion' => html version of the message
207      'textVersion' => text only version of the message
208      'additionalMailHeader' => additions to the smtp mail header
209
210 **'emailer_send'** - called before calling PHP's mail()
211     $b is (array) , params to mail()
212      'to'
213      'subject'
214      'body'
215      'headers'
216
217
218 A complete list of all hook callbacks with file locations (generated 14-Feb-2012): Please see the source for details of any hooks not documented above.
219
220
221 boot.php:       call_hooks('login_hook',$o);
222
223 boot.php:       call_hooks('profile_sidebar_enter', $profile);
224
225 boot.php:       call_hooks('profile_sidebar', $arr);
226
227 boot.php:       call_hooks("proc_run", $arr);
228
229 include/contact_selectors.php:  call_hooks('network_to_name', $nets);
230
231 include/api.php:                                call_hooks('logged_in', $a->user);
232
233 include/api.php:                call_hooks('logged_in', $a->user);
234
235 include/queue.php:              call_hooks('queue_predeliver', $a, $r);
236
237 include/queue.php:                              call_hooks('queue_deliver', $a, $params);
238
239 include/text.php:       call_hooks('contact_block_end', $arr);
240
241 include/text.php:       call_hooks('smilie', $s);
242
243 include/text.php:       call_hooks('prepare_body_init', $item); 
244
245 include/text.php:       call_hooks('prepare_body', $prep_arr);
246
247 include/text.php:       call_hooks('prepare_body_final', $prep_arr);
248
249 include/nav.php:        call_hooks('page_header', $a->page['nav']);
250
251 include/auth.php:               call_hooks('authenticate', $addon_auth);
252
253 include/bbcode.php:     call_hooks('bbcode',$Text);
254
255 include/oauth.php:              call_hooks('logged_in', $a->user);              
256
257 include/acl_selectors.php:      call_hooks($a->module . '_pre_' . $selname, $arr);
258
259 include/acl_selectors.php:      call_hooks($a->module . '_post_' . $selname, $o);
260
261 include/acl_selectors.php:      call_hooks('contact_select_options', $x);
262
263 include/acl_selectors.php:      call_hooks($a->module . '_pre_' . $selname, $arr);
264
265 include/acl_selectors.php:      call_hooks($a->module . '_post_' . $selname, $o);
266
267 include/acl_selectors.php:      call_hooks($a->module . '_pre_' . $selname, $arr);
268
269 include/acl_selectors.php:      call_hooks($a->module . '_post_' . $selname, $o);
270
271 include/notifier.php:           call_hooks('notifier_normal',$target_item);
272
273 include/notifier.php:   call_hooks('notifier_end',$target_item);
274
275 include/items.php:      call_hooks('atom_feed', $atom);
276
277 include/items.php:              call_hooks('atom_feed_end', $atom);
278
279 include/items.php:      call_hooks('atom_feed_end', $atom);
280
281 include/items.php:      call_hooks('parse_atom', $arr);
282
283 include/items.php:      call_hooks('post_remote',$arr);
284
285 include/items.php:      call_hooks('atom_author', $o);
286
287 include/items.php:      call_hooks('atom_entry', $o);
288
289 include/bb2diaspora.php:        call_hooks('bb2diaspora',$Text);
290
291 include/cronhooks.php:  call_hooks('cron', $d);
292
293 include/security.php:           call_hooks('logged_in', $a->user);
294
295 include/html2bbcode.php:        call_hooks('html2bbcode', $text);
296
297 include/Contact.php:    call_hooks('remove_user',$r[0]);
298
299 include/Contact.php:    call_hooks('contact_photo_menu', $args);
300
301 include/conversation.php:       call_hooks('conversation_start',$cb);
302
303 include/conversation.php:                               call_hooks('render_location',$locate);
304
305 include/conversation.php:                               call_hooks('display_item', $arr);
306
307 include/conversation.php:                               call_hooks('render_location',$locate);
308
309 include/conversation.php:                               call_hooks('display_item', $arr);
310
311 include/conversation.php:       call_hooks('item_photo_menu', $args);
312
313 include/conversation.php:       call_hooks('jot_tool', $jotplugins);
314
315 include/conversation.php:       call_hooks('jot_networks', $jotnets);
316
317 include/plugin.php:if(! function_exists('call_hooks')) {
318
319 include/plugin.php:function call_hooks($name, &$data = null) {
320
321 index.php:      call_hooks('init_1');
322
323 index.php:call_hooks('app_menu', $arr);
324
325 index.php:call_hooks('page_end', $a->page['content']);
326
327 mod/photos.php: call_hooks('photo_post_init', $_POST);
328
329 mod/photos.php: call_hooks('photo_post_file',$ret);
330
331 mod/photos.php:         call_hooks('photo_post_end',$foo);
332
333 mod/photos.php:         call_hooks('photo_post_end',$foo);
334
335 mod/photos.php:         call_hooks('photo_post_end',$foo);
336
337 mod/photos.php: call_hooks('photo_post_end',intval($item_id));
338
339 mod/photos.php:         call_hooks('photo_upload_form',$ret);
340
341 mod/friendica.php:      call_hooks('about_hook', $o);   
342
343 mod/editpost.php:       call_hooks('jot_tool', $jotplugins);
344
345 mod/editpost.php:       call_hooks('jot_networks', $jotnets);
346
347 mod/parse_url.php:      call_hooks('parse_link', $arr);
348
349 mod/home.php:   call_hooks('home_init',$ret);
350
351 mod/home.php:   call_hooks("home_content",$o);
352
353 mod/contacts.php:       call_hooks('contact_edit_post', $_POST);
354
355 mod/contacts.php:               call_hooks('contact_edit', $arr);
356
357 mod/settings.php:               call_hooks('plugin_settings_post', $_POST);
358
359 mod/settings.php:               call_hooks('connector_settings_post', $_POST);
360
361 mod/settings.php:       call_hooks('settings_post', $_POST);
362
363 mod/settings.php:               call_hooks('plugin_settings', $settings_addons);
364
365 mod/settings.php:               call_hooks('connector_settings', $settings_connectors);
366
367 mod/settings.php:       call_hooks('settings_form',$o);
368
369 mod/register.php:       call_hooks('register_account', $newuid);
370
371 mod/like.php:   call_hooks('post_local_end', $arr);
372
373 mod/xrd.php:    call_hooks('personal_xrd', $arr);
374
375 mod/item.php:   call_hooks('post_local_start', $_REQUEST);
376
377 mod/item.php:   call_hooks('post_local',$datarray);
378
379 mod/item.php:   call_hooks('post_local_end', $datarray);
380
381 mod/profile.php:                        call_hooks('profile_advanced',$o);
382
383 mod/profiles.php:       call_hooks('profile_post', $_POST);
384
385 mod/profiles.php:               call_hooks('profile_edit', $arr);
386
387 mod/tagger.php: call_hooks('post_local_end', $arr);
388
389 mod/cb.php:     call_hooks('cb_init');
390
391 mod/cb.php:     call_hooks('cb_post', $_POST);
392
393 mod/cb.php:     call_hooks('cb_afterpost');
394
395 mod/cb.php:     call_hooks('cb_content', $o);
396
397 mod/directory.php:                      call_hooks('directory_item', $arr);
398