1 Friendica Addon/Plugin development
6 Please see the sample addon 'randplace' for a working example of using some of these features.
7 Addons work by intercepting event hooks - which must be registered.
8 Modules work by intercepting specific page requests (by URL path).
10 Plugin names cannot contain spaces or other punctuation and are used as filenames and function names.
11 You may supply a "friendly" name within the comment block.
12 Each addon must contain both an install and an uninstall function based on the addon/plugin name.
13 For instance "plugin1name_install()".
14 These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your plugin will require.
15 The install and uninstall functions will also be called (i.e. re-installed) if the plugin changes after installation.
16 Therefore your uninstall should not destroy data and install should consider that data may already exist.
17 Future extensions may provide for "setup" amd "remove".
19 Plugins should contain a comment block with the four following parameters:
22 * Name: My Great Plugin
23 * Description: This is what my plugin does. It's really cool.
25 * Author: John Q. Public <john@myfriendicasite.com>
28 Register your plugin hooks during installation.
30 register_hook($hookname, $file, $function);
32 $hookname is a string and corresponds to a known Friendica hook.
34 $file is a pathname relative to the top-level Friendica directory.
35 This *should* be 'addon/plugin_name/plugin_name.php' in most cases.
37 $function is a string and is the name of the function which will be executed when the hook is called.
41 Your hook callback functions will be called with at least one and possibly two arguments
43 function myhook_function(App $a, &$b) {
48 If you wish to make changes to the calling data, you must declare them as reference variables (with '&') during function declaration.
51 $a is the Friendica 'App' class.
52 It contains a wealth of information about the current state of Friendica:
54 * which module has been called,
55 * configuration information,
56 * the page contents at the point the hook was invoked,
57 * profile and user information, etc.
59 It is recommeded you call this '$a' to match its usage elsewhere.
62 $b can be called anything you like.
63 This is information specific to the hook currently being processed, and generally contains information that is being immediately processed or acted on that you can use, display, or alter.
64 Remember to declare it with '&' if you wish to alter it.
69 Plugins/addons may also act as "modules" and intercept all page requests for a given URL path.
70 In order for a plugin to act as a module it needs to define a function "plugin_name_module()" which takes no arguments and needs not do anything.
72 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.
73 These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components.
74 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).
78 $a->argv = array(0 => 'plugin', 1 => 'arg1', 2 => 'arg2');
80 Your module functions will often contain the function plugin_name_content(App $a), which defines and returns the page body content.
81 They may also contain plugin_name_post(App $a) which is called before the _content function and typically handles the results of POST forms.
82 You may also have plugin_name_init(App $a) which is called very early on and often does module initialisation.
87 If your plugin needs some template, you can use the Friendica template system.
88 Friendica uses [smarty3](http://www.smarty.net/) as a template engine.
90 Put your tpl files in the *templates/* subfolder of your plugin.
92 In your code, like in the function plugin_name_content(), load the template file and execute it passing needed values:
94 # load template file. first argument is the template name,
95 # second is the plugin path relative to friendica top folder
96 $tpl = get_markup_template('mytemplate.tpl', 'addon/plugin_name/');
98 # apply template. first argument is the loaded template,
99 # second an array of 'name'=>'values' to pass to template
100 $output = replace_macros($tpl,array(
101 'title' => 'My beautiful plugin',
104 See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide).
110 'authenticate' is called when a user attempts to login.
111 $b is an array containing:
113 'username' => the supplied username
114 'password' => the supplied password
115 'authenticated' => set this to non-zero to authenticate the user.
116 'user_record' => successful authentication must also return a valid user record from the database
119 'logged_in' is called after a user has successfully logged in.
120 $b contains the $a->user array.
123 'display_item' is called when formatting a post for display.
126 'item' => The item (array) details pulled from the database
127 'output' => the (string) HTML representation of this item prior to adding it to the page
130 * called when a status post or comment is entered on the local system
131 * $b is the item array of the information to be stored in the database
132 * Please note: body contents are bbcode - not HTML
135 * called when a local status post or comment has been stored on the local system
136 * $b is the item array of the information which has just been stored in the database
137 * Please note: body contents are bbcode - not HTML
140 * called when receiving a post from another source. This may also be used to post local activity or system generated messages.
141 * $b is the item array of information to be stored in the database and the item body is bbcode.
144 * called when generating the HTML for the user Settings page
145 * $b is the (string) HTML of the settings page before the final '</form>' tag.
148 * called when the Settings pages are submitted
149 * $b is the $_POST array
151 ### 'plugin_settings'
152 * called when generating the HTML for the addon settings page
153 * $b is the (string) HTML of the addon settings page before the final '</form>' tag.
155 ### 'plugin_settings_post'
156 * called when the Addon Settings pages are submitted
157 * $b is the $_POST array
160 * called when posting a profile page
161 * $b is the $_POST array
164 'profile_edit' is called prior to output of profile edit page.
165 $b is an array containing:
167 'profile' => profile (array) record from the database
168 'entry' => the (string) HTML of the generated entry
170 ### 'profile_advanced'
171 * called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page
172 * $b is the (string) HTML representation of the generated profile
173 * The profile array details are in $a->profile.
176 'directory_item' is called from the Directory page when formatting an item for display.
179 'contact' => contact (array) record for the person from the database
180 'entry' => the (string) HTML of the generated entry
182 ### 'profile_sidebar_enter'
183 * called prior to generating the sidebar "short" profile for a page
184 * $b is the person's profile array
186 ### 'profile_sidebar'
187 'profile_sidebar is called when generating the sidebar "short" profile for a page.
190 'profile' => profile (array) record for the person from the database
191 'entry' => the (string) HTML of the generated entry
193 ### 'contact_block_end'
194 is called when formatting the block of contacts/friends on a profile sidebar has completed.
197 'contacts' => array of contacts
198 'output' => the (string) generated HTML of the contact block
201 * called during conversion of bbcode to html
202 * $b is a string converted text
205 * called during conversion of html to bbcode (e.g. remote message posting)
206 * $b is a string converted text
209 * called after building the page navigation section
210 * $b is a string HTML of nav region
213 'personal_xrd' is called prior to output of personal XRD file.
216 'user' => the user record for the person
217 'xml' => the complete XML to be output
220 * called prior to output home page content, shown to unlogged users
221 * $b is (string) HTML of section region
224 is called when editing contact details on an individual from the Contacts page.
227 'contact' => contact record (array) of target contact
228 'output' => the (string) generated HTML of the contact edit page
230 ### 'contact_edit_post'
231 * called when posting the contact edit page.
232 * $b is the $_POST array
235 * called just after DB has been opened and before session start
236 * $b is not used or passed
239 * called after HTML content functions have completed
240 * $b is (string) HTML of content div
243 'avatar_lookup' is called when looking up the avatar.
246 'size' => the size of the avatar that will be looked up
247 'email' => email to look up the avatar for
248 'url' => the (string) generated URL of the avatar
250 ### 'emailer_send_prepare'
251 'emailer_send_prepare' called from Emailer::send() before building the mime message.
252 $b is an array, params to Emailer::send()
254 'fromName' => name of the sender
255 'fromEmail' => email fo the sender
256 'replyTo' => replyTo address to direct responses
257 'toEmail' => destination email address
258 'messageSubject' => subject of the message
259 'htmlVersion' => html version of the message
260 'textVersion' => text only version of the message
261 'additionalMailHeader' => additions to the smtp mail header
264 is called before calling PHP's mail().
265 $b is an array, params to mail()
273 is called after the navigational menu is build in include/nav.php.
274 $b is an array containing $nav from nav.php.
277 is called before vars are passed to the template engine to render the page.
278 The registered function can add,change or remove variables passed to template.
281 'template' => filename of template
282 'vars' => array of vars passed to template
284 ### ''acl_lookup_end'
285 is called after the other queries have passed.
286 The registered function can add, change or remove the acl_lookup() variables.
288 'results' => array of the acl_lookup() vars
291 Complete list of hook callbacks
294 Here is a complete list of all hook callbacks with file locations (as of 14-Feb-2012). Please see the source for details of any hooks not documented above.
296 boot.php: call_hooks('login_hook',$o);
298 boot.php: call_hooks('profile_sidebar_enter', $profile);
300 boot.php: call_hooks('profile_sidebar', $arr);
302 boot.php: call_hooks("proc_run", $arr);
304 include/contact_selectors.php: call_hooks('network_to_name', $nets);
306 include/api.php: call_hooks('logged_in', $a->user);
308 include/api.php: call_hooks('logged_in', $a->user);
310 include/queue.php: call_hooks('queue_predeliver', $a, $r);
312 include/queue.php: call_hooks('queue_deliver', $a, $params);
314 include/text.php: call_hooks('contact_block_end', $arr);
316 include/text.php: call_hooks('smilie', $s);
318 include/text.php: call_hooks('prepare_body_init', $item);
320 include/text.php: call_hooks('prepare_body', $prep_arr);
322 include/text.php: call_hooks('prepare_body_final', $prep_arr);
324 include/nav.php: call_hooks('page_header', $a->page['nav']);
326 include/auth.php: call_hooks('authenticate', $addon_auth);
328 include/bbcode.php: call_hooks('bbcode',$Text);
330 include/oauth.php: call_hooks('logged_in', $a->user);
332 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
334 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
336 include/acl_selectors.php: call_hooks('contact_select_options', $x);
338 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
340 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
342 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
344 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
346 include/acl_selectors.php call_hooks('acl_lookup_end', $results);
348 include/notifier.php: call_hooks('notifier_normal',$target_item);
350 include/notifier.php: call_hooks('notifier_end',$target_item);
352 include/items.php: call_hooks('atom_feed', $atom);
354 include/items.php: call_hooks('atom_feed_end', $atom);
356 include/items.php: call_hooks('atom_feed_end', $atom);
358 include/items.php: call_hooks('parse_atom', $arr);
360 include/items.php: call_hooks('post_remote',$arr);
362 include/items.php: call_hooks('atom_author', $o);
364 include/items.php: call_hooks('atom_entry', $o);
366 include/bb2diaspora.php: call_hooks('bb2diaspora',$Text);
368 include/cronhooks.php: call_hooks('cron', $d);
370 include/security.php: call_hooks('logged_in', $a->user);
372 include/html2bbcode.php: call_hooks('html2bbcode', $text);
374 include/Contact.php: call_hooks('remove_user',$r[0]);
376 include/Contact.php: call_hooks('contact_photo_menu', $args);
378 include/conversation.php: call_hooks('conversation_start',$cb);
380 include/conversation.php: call_hooks('render_location',$locate);
382 include/conversation.php: call_hooks('display_item', $arr);
384 include/conversation.php: call_hooks('render_location',$locate);
386 include/conversation.php: call_hooks('display_item', $arr);
388 include/conversation.php: call_hooks('item_photo_menu', $args);
390 include/conversation.php: call_hooks('jot_tool', $jotplugins);
392 include/conversation.php: call_hooks('jot_networks', $jotnets);
394 include/plugin.php:if(! function_exists('call_hooks')) {
396 include/plugin.php:function call_hooks($name, &$data = null) {
398 index.php: call_hooks('init_1');
400 index.php:call_hooks('app_menu', $arr);
402 index.php:call_hooks('page_end', $a->page['content']);
404 mod/photos.php: call_hooks('photo_post_init', $_POST);
406 mod/photos.php: call_hooks('photo_post_file',$ret);
408 mod/photos.php: call_hooks('photo_post_end',$foo);
410 mod/photos.php: call_hooks('photo_post_end',$foo);
412 mod/photos.php: call_hooks('photo_post_end',$foo);
414 mod/photos.php: call_hooks('photo_post_end',intval($item_id));
416 mod/photos.php: call_hooks('photo_upload_form',$ret);
418 mod/friendica.php: call_hooks('about_hook', $o);
420 mod/editpost.php: call_hooks('jot_tool', $jotplugins);
422 mod/editpost.php: call_hooks('jot_networks', $jotnets);
424 mod/parse_url.php: call_hooks('parse_link', $arr);
426 mod/home.php: call_hooks('home_init',$ret);
428 mod/home.php: call_hooks("home_content",$o);
430 mod/contacts.php: call_hooks('contact_edit_post', $_POST);
432 mod/contacts.php: call_hooks('contact_edit', $arr);
434 mod/settings.php: call_hooks('plugin_settings_post', $_POST);
436 mod/settings.php: call_hooks('connector_settings_post', $_POST);
438 mod/settings.php: call_hooks('settings_post', $_POST);
440 mod/settings.php: call_hooks('plugin_settings', $settings_addons);
442 mod/settings.php: call_hooks('connector_settings', $settings_connectors);
444 mod/settings.php: call_hooks('settings_form',$o);
446 mod/register.php: call_hooks('register_account', $newuid);
448 mod/like.php: call_hooks('post_local_end', $arr);
450 mod/xrd.php: call_hooks('personal_xrd', $arr);
452 mod/item.php: call_hooks('post_local_start', $_REQUEST);
454 mod/item.php: call_hooks('post_local',$datarray);
456 mod/item.php: call_hooks('post_local_end', $datarray);
458 mod/profile.php: call_hooks('profile_advanced',$o);
460 mod/profiles.php: call_hooks('profile_post', $_POST);
462 mod/profiles.php: call_hooks('profile_edit', $arr);
464 mod/tagger.php: call_hooks('post_local_end', $arr);
466 mod/cb.php: call_hooks('cb_init');
468 mod/cb.php: call_hooks('cb_post', $_POST);
470 mod/cb.php: call_hooks('cb_afterpost');
472 mod/cb.php: call_hooks('cb_content', $o);
474 mod/directory.php: call_hooks('directory_item', $arr);