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(&$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(&$a), which defines and returns the page body content.
81 They may also contain plugin_name_post(&$a) which is called before the _content function and typically handles the results of POST forms.
82 You may also have plugin_name_init(&$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
286 Complete list of hook callbacks
289 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.
291 boot.php: call_hooks('login_hook',$o);
293 boot.php: call_hooks('profile_sidebar_enter', $profile);
295 boot.php: call_hooks('profile_sidebar', $arr);
297 boot.php: call_hooks("proc_run", $arr);
299 include/contact_selectors.php: call_hooks('network_to_name', $nets);
301 include/api.php: call_hooks('logged_in', $a->user);
303 include/api.php: call_hooks('logged_in', $a->user);
305 include/queue.php: call_hooks('queue_predeliver', $a, $r);
307 include/queue.php: call_hooks('queue_deliver', $a, $params);
309 include/text.php: call_hooks('contact_block_end', $arr);
311 include/text.php: call_hooks('smilie', $s);
313 include/text.php: call_hooks('prepare_body_init', $item);
315 include/text.php: call_hooks('prepare_body', $prep_arr);
317 include/text.php: call_hooks('prepare_body_final', $prep_arr);
319 include/nav.php: call_hooks('page_header', $a->page['nav']);
321 include/auth.php: call_hooks('authenticate', $addon_auth);
323 include/bbcode.php: call_hooks('bbcode',$Text);
325 include/oauth.php: call_hooks('logged_in', $a->user);
327 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
329 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
331 include/acl_selectors.php: call_hooks('contact_select_options', $x);
333 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
335 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
337 include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr);
339 include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o);
341 include/notifier.php: call_hooks('notifier_normal',$target_item);
343 include/notifier.php: call_hooks('notifier_end',$target_item);
345 include/items.php: call_hooks('atom_feed', $atom);
347 include/items.php: call_hooks('atom_feed_end', $atom);
349 include/items.php: call_hooks('atom_feed_end', $atom);
351 include/items.php: call_hooks('parse_atom', $arr);
353 include/items.php: call_hooks('post_remote',$arr);
355 include/items.php: call_hooks('atom_author', $o);
357 include/items.php: call_hooks('atom_entry', $o);
359 include/bb2diaspora.php: call_hooks('bb2diaspora',$Text);
361 include/cronhooks.php: call_hooks('cron', $d);
363 include/security.php: call_hooks('logged_in', $a->user);
365 include/html2bbcode.php: call_hooks('html2bbcode', $text);
367 include/Contact.php: call_hooks('remove_user',$r[0]);
369 include/Contact.php: call_hooks('contact_photo_menu', $args);
371 include/conversation.php: call_hooks('conversation_start',$cb);
373 include/conversation.php: call_hooks('render_location',$locate);
375 include/conversation.php: call_hooks('display_item', $arr);
377 include/conversation.php: call_hooks('render_location',$locate);
379 include/conversation.php: call_hooks('display_item', $arr);
381 include/conversation.php: call_hooks('item_photo_menu', $args);
383 include/conversation.php: call_hooks('jot_tool', $jotplugins);
385 include/conversation.php: call_hooks('jot_networks', $jotnets);
387 include/plugin.php:if(! function_exists('call_hooks')) {
389 include/plugin.php:function call_hooks($name, &$data = null) {
391 index.php: call_hooks('init_1');
393 index.php:call_hooks('app_menu', $arr);
395 index.php:call_hooks('page_end', $a->page['content']);
397 mod/photos.php: call_hooks('photo_post_init', $_POST);
399 mod/photos.php: call_hooks('photo_post_file',$ret);
401 mod/photos.php: call_hooks('photo_post_end',$foo);
403 mod/photos.php: call_hooks('photo_post_end',$foo);
405 mod/photos.php: call_hooks('photo_post_end',$foo);
407 mod/photos.php: call_hooks('photo_post_end',intval($item_id));
409 mod/photos.php: call_hooks('photo_upload_form',$ret);
411 mod/friendica.php: call_hooks('about_hook', $o);
413 mod/editpost.php: call_hooks('jot_tool', $jotplugins);
415 mod/editpost.php: call_hooks('jot_networks', $jotnets);
417 mod/parse_url.php: call_hooks('parse_link', $arr);
419 mod/home.php: call_hooks('home_init',$ret);
421 mod/home.php: call_hooks("home_content",$o);
423 mod/contacts.php: call_hooks('contact_edit_post', $_POST);
425 mod/contacts.php: call_hooks('contact_edit', $arr);
427 mod/settings.php: call_hooks('plugin_settings_post', $_POST);
429 mod/settings.php: call_hooks('connector_settings_post', $_POST);
431 mod/settings.php: call_hooks('settings_post', $_POST);
433 mod/settings.php: call_hooks('plugin_settings', $settings_addons);
435 mod/settings.php: call_hooks('connector_settings', $settings_connectors);
437 mod/settings.php: call_hooks('settings_form',$o);
439 mod/register.php: call_hooks('register_account', $newuid);
441 mod/like.php: call_hooks('post_local_end', $arr);
443 mod/xrd.php: call_hooks('personal_xrd', $arr);
445 mod/item.php: call_hooks('post_local_start', $_REQUEST);
447 mod/item.php: call_hooks('post_local',$datarray);
449 mod/item.php: call_hooks('post_local_end', $datarray);
451 mod/profile.php: call_hooks('profile_advanced',$o);
453 mod/profiles.php: call_hooks('profile_post', $_POST);
455 mod/profiles.php: call_hooks('profile_edit', $arr);
457 mod/tagger.php: call_hooks('post_local_end', $arr);
459 mod/cb.php: call_hooks('cb_init');
461 mod/cb.php: call_hooks('cb_post', $_POST);
463 mod/cb.php: call_hooks('cb_afterpost');
465 mod/cb.php: call_hooks('cb_content', $o);
467 mod/directory.php: call_hooks('directory_item', $arr);