friendica/doc/Addons.md

731 lines
21 KiB
Markdown
Raw Normal View History

Friendica Addon development
==============
* [Home](help)
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
Please see the sample addon 'randplace' for a working example of using some of these features.
Addons work by intercepting event hooks - which must be registered.
2015-11-06 19:33:14 +01:00
Modules work by intercepting specific page requests (by URL path).
2015-04-19 18:41:42 +02:00
Addon names cannot contain spaces or other punctuation and are used as filenames and function names.
2015-04-19 18:41:42 +02:00
You may supply a "friendly" name within the comment block.
2018-01-18 01:38:14 +01:00
Each addon must contain both an install and an uninstall function based on the addon name.
For instance "addon1name_install()".
These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your addon will require.
The install and uninstall functions will also be called (i.e. re-installed) if the addon changes after installation.
2015-04-19 18:41:42 +02:00
Therefore your uninstall should not destroy data and install should consider that data may already exist.
2015-11-06 19:33:14 +01:00
Future extensions may provide for "setup" amd "remove".
2012-02-14 04:06:15 +01:00
Addons should contain a comment block with the four following parameters:
2012-02-14 04:06:15 +01:00
/*
* Name: My Great Addon
* Description: This is what my addon does. It's really cool.
* Version: 1.0
* Author: John Q. Public <john@myfriendicasite.com>
*/
2012-02-14 04:06:15 +01:00
Please also add a README or README.md file to the addon directory.
It will be displayed in the admin panel and should include some further information in addition to the header information.
2018-07-14 19:50:57 +02:00
## PHP addon hooks
Register your addon hooks during installation.
2011-04-13 16:07:21 +02:00
Addon::registerHook($hookname, $file, $function);
2011-04-13 16:07:21 +02:00
$hookname is a string and corresponds to a known Friendica PHP hook.
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
$file is a pathname relative to the top-level Friendica directory.
This *should* be 'addon/*addon_name*/*addon_name*.php' in most cases.
2011-04-13 16:07:21 +02:00
$function is a string and is the name of the function which will be executed when the hook is called.
2018-07-14 19:50:57 +02:00
### Arguments
2011-04-13 16:07:21 +02:00
Your hook callback functions will be called with at least one and possibly two arguments
function myhook_function(App $a, &$b) {
2011-04-13 16:07:21 +02:00
}
2018-07-14 19:50:57 +02:00
If you wish to make changes to the calling data, you must declare them as reference variables (with `&`) during function declaration.
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
#### $a
$a is the Friendica `App` class.
2015-04-19 18:41:42 +02:00
It contains a wealth of information about the current state of Friendica:
* which module has been called,
* configuration information,
* the page contents at the point the hook was invoked,
2015-11-06 19:33:14 +01:00
* profile and user information, etc.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
It is recommeded you call this `$a` to match its usage elsewhere.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
#### $b
2015-04-19 18:41:42 +02:00
$b can be called anything you like.
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.
2018-07-14 19:50:57 +02:00
Remember to declare it with `&` if you wish to alter it.
2011-04-13 16:07:21 +02:00
## Global stylesheets
2018-07-14 19:50:57 +02:00
If your addon requires adding a stylesheet on all pages of Friendica, add the following hook:
```php
function <addon>_install()
{
Addon::registerHook('head', __FILE__, '<addon>_head');
...
}
function <addon>_head(App $a)
{
$a->registerStylesheet(__DIR__ . '/relative/path/to/addon/stylesheet.css');
}
2018-07-14 19:50:57 +02:00
```
`__DIR__` is the folder path of your addon.
## JavaScript
### Global scripts
If your addon requires adding a script on all pages of Friendica, add the following hook:
2018-07-14 19:50:57 +02:00
```php
function <addon>_install()
{
Addon::registerHook('footer', __FILE__, '<addon>_footer');
...
}
function <addon>_footer(App $a)
2018-07-14 19:50:57 +02:00
{
$a->registerFooterScript(__DIR__ . '/relative/path/to/addon/script.js');
2018-07-14 19:50:57 +02:00
}
```
`__DIR__` is the folder path of your addon.
### JavaScript hooks
The main Friendica script provides hooks via events dispatched on the `document` property.
In your Javascript file included as described above, add your event listener like this:
2018-07-14 19:50:57 +02:00
```js
document.addEventListener(name, callback);
2018-07-14 19:50:57 +02:00
```
- *name* is the name of the hook and corresponds to a known Friendica JavaScript hook.
- *callback* is a JavaScript anonymous function to execute.
More info about Javascript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
#### Current JavaScript hooks
##### postprocess_liveupdate
Called at the end of the live update process (XmlHttpRequest) and on a post preview.
No additional data is provided.
2018-07-14 19:50:57 +02:00
## Modules
2011-04-13 16:07:21 +02:00
2018-01-18 01:38:14 +01:00
Addons may also act as "modules" and intercept all page requests for a given URL path.
In order for a addon to act as a module it needs to define a function "addon_name_module()" which takes no arguments and needs not do anything.
2015-04-19 18:41:42 +02:00
If this function exists, you will now receive all page requests for "http://my.web.site/addon_name" - with any number of URL components as additional arguments.
2015-04-19 18:41:42 +02:00
These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components.
So http://my.web.site/addon/arg1/arg2 would look for a module named "addon" and pass its module functions the $a App structure (which is available to many components).
2015-04-19 18:41:42 +02:00
This will include:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
```php
$a->argc = 3
$a->argv = array(0 => 'addon', 1 => 'arg1', 2 => 'arg2');
```
2011-04-13 16:07:21 +02:00
Your module functions will often contain the function addon_name_content(App $a), which defines and returns the page body content.
They may also contain addon_name_post(App $a) which is called before the _content function and typically handles the results of POST forms.
You may also have addon_name_init(App $a) which is called very early on and often does module initialisation.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
## Templates
2011-04-13 16:07:21 +02:00
If your addon needs some template, you can use the Friendica template system.
2015-04-19 18:41:42 +02:00
Friendica uses [smarty3](http://www.smarty.net/) as a template engine.
Put your tpl files in the *templates/* subfolder of your addon.
In your code, like in the function addon_name_content(), load the template file and execute it passing needed values:
2018-07-14 19:50:57 +02:00
```php
# load template file. first argument is the template name,
# second is the addon path relative to friendica top folder
$tpl = Renderer::getMarkupTemplate('mytemplate.tpl', 'addon/addon_name/');
2018-07-14 19:50:57 +02:00
# apply template. first argument is the loaded template,
# second an array of 'name' => 'values' to pass to template
$output = Renderer::replaceMacros($tpl, array(
2018-07-14 19:50:57 +02:00
'title' => 'My beautiful addon',
));
```
2015-04-19 18:41:42 +02:00
See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide).
2018-07-14 19:50:57 +02:00
## Current PHP hooks
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
### authenticate
Called when a user attempts to login.
`$b` is an array containing:
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
- **username**: the supplied username
- **password**: the supplied password
- **authenticated**: set this to non-zero to authenticate the user.
- **user_record**: successful authentication must also return a valid user record from the database
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
### logged_in
Called after a user has successfully logged in.
`$b` contains the `$a->user` array.
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
### display_item
Called when formatting a post for display.
2015-04-19 18:41:42 +02:00
$b is an array:
2018-07-14 19:50:57 +02:00
- **item**: The item (array) details pulled from the database
- **output**: the (string) HTML representation of this item prior to adding it to the page
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
### post_local
Called when a status post or comment is entered on the local system.
`$b` is the item array of the information to be stored in the database.
Please note: body contents are bbcode - not HTML.
2015-04-19 18:41:42 +02:00
2018-07-14 19:50:57 +02:00
### post_local_end
Called when a local status post or comment has been stored on the local system.
`$b` is the item array of the information which has just been stored in the database.
Please note: body contents are bbcode - not HTML
2018-07-14 19:50:57 +02:00
### post_remote
Called when receiving a post from another source. This may also be used to post local activity or system generated messages.
`$b` is the item array of information to be stored in the database and the item body is bbcode.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### settings_form
Called when generating the HTML for the user Settings page.
`$b` is the HTML string of the settings page before the final `</form>` tag.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### settings_post
Called when the Settings pages are submitted.
`$b` is the $_POST array.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### addon_settings
Called when generating the HTML for the addon settings page.
`$b` is the (string) HTML of the addon settings page before the final `</form>` tag.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### addon_settings_post
Called when the Addon Settings pages are submitted.
`$b` is the $_POST array.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### profile_post
Called when posting a profile page.
`$b` is the $_POST array.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### profile_edit
Called prior to output of profile edit page.
`$b` is an array containing:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **profile**: profile (array) record from the database
- **entry**: the (string) HTML of the generated entry
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### profile_advanced
Called when the HTML is generated for the Advanced profile, corresponding to the Profile tab within a person's profile page.
`$b` is the HTML string representation of the generated profile.
The profile array details are in `$a->profile`.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### directory_item
Called from the Directory page when formatting an item for display.
`$b` is an array:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **contact**: contact record array for the person from the database
- **entry**: the HTML string of the generated entry
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### profile_sidebar_enter
Called prior to generating the sidebar "short" profile for a page.
`$b` is the person's profile array
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### profile_sidebar
Called when generating the sidebar "short" profile for a page.
`$b` is an array:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **profile**: profile record array for the person from the database
- **entry**: the HTML string of the generated entry
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### contact_block_end
Called when formatting the block of contacts/friends on a profile sidebar has completed.
`$b` is an array:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **contacts**: array of contacts
- **output**: the generated HTML string of the contact block
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### bbcode
Called after conversion of bbcode to HTML.
`$b` is an HTML string converted text.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### html2bbcode
Called after tag conversion of HTML to bbcode (e.g. remote message posting)
`$b` is a string converted text
2011-04-13 16:07:21 +02:00
### head
Called when building the `<head>` sections.
Stylesheets should be registered using this hook.
`$b` is an HTML string of the `<head>` tag.
2018-07-14 19:50:57 +02:00
### page_header
Called after building the page navigation section.
`$b` is a string HTML of nav region.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### personal_xrd
Called prior to output of personal XRD file.
`$b` is an array:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **user**: the user record array for the person
- **xml**: the complete XML string to be output
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### home_content
Called prior to output home page content, shown to unlogged users.
`$b` is the HTML sring of section region.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### contact_edit
Called when editing contact details on an individual from the Contacts page.
2015-04-19 18:41:42 +02:00
$b is an array:
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **contact**: contact record (array) of target contact
- **output**: the (string) generated HTML of the contact edit page
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### contact_edit_post
Called when posting the contact edit page.
`$b` is the `$_POST` array
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### init_1
Called just after DB has been opened and before session start.
No hook data.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
### page_end
Called after HTML content functions have completed.
`$b` is (string) HTML of content div.
2011-04-13 16:07:21 +02:00
### footer
Called after HTML content functions have completed.
Deferred Javascript files should be registered using this hook.
`$b` is (string) HTML of footer div/element.
2018-07-14 19:50:57 +02:00
### avatar_lookup
Called when looking up the avatar. `$b` is an array:
- **size**: the size of the avatar that will be looked up
- **email**: email to look up the avatar for
- **url**: the (string) generated URL of the avatar
### emailer_send_prepare
Called from `Emailer::send()` before building the mime message.
`$b` is an array of params to `Emailer::send()`.
2011-04-13 16:07:21 +02:00
2018-07-14 19:50:57 +02:00
- **fromName**: name of the sender
- **fromEmail**: email fo the sender
- **replyTo**: replyTo address to direct responses
- **toEmail**: destination email address
- **messageSubject**: subject of the message
- **htmlVersion**: html version of the message
- **textVersion**: text only version of the message
- **additionalMailHeader**: additions to the smtp mail header
### emailer_send
Called before calling PHP's `mail()`.
`$b` is an array of params to `mail()`.
- **to**
- **subject**
- **body**
- **headers**
2018-07-01 21:27:05 +02:00
### load_config
Called during `App` initialization to allow addons to load their own configuration file(s) with `App::loadConfigFile()`.
2018-07-14 19:50:57 +02:00
### nav_info
Called after the navigational menu is build in `include/nav.php`.
`$b` is an array containing `$nav` from `include/nav.php`.
### template_vars
Called before vars are passed to the template engine to render the page.
2015-11-06 19:33:14 +01:00
The registered function can add,change or remove variables passed to template.
2018-07-14 19:50:57 +02:00
`$b` is an array with:
2018-07-14 19:50:57 +02:00
- **template**: filename of template
- **vars**: array of vars passed to the template
2018-07-14 19:50:57 +02:00
### acl_lookup_end
Called after the other queries have passed.
The registered function can add, change or remove the `acl_lookup()` variables.
2016-04-28 23:18:38 +02:00
2018-07-14 19:50:57 +02:00
- **results**: array of the acl_lookup() vars
2015-11-06 19:33:14 +01:00
2018-07-14 19:50:57 +02:00
### prepare_body_init
2018-04-01 08:29:05 +02:00
Called at the start of prepare_body
Hook data:
2018-07-14 19:50:57 +02:00
- **item** (input/output): item array
### prepare_body_content_filter
2018-04-01 08:29:05 +02:00
Called before the HTML conversion in prepare_body. If the item matches a content filter rule set by an addon, it should
just add the reason to the filter_reasons element of the hook data.
Hook data:
2018-07-14 19:50:57 +02:00
- **item**: item array (input)
- **filter_reasons** (input/output): reasons array
### prepare_body
Called after the HTML conversion in `prepare_body()`.
2018-04-01 08:29:05 +02:00
Hook data:
2018-07-14 19:50:57 +02:00
- **item** (input): item array
- **html** (input/output): converted item body
- **is_preview** (input): post preview flag
- **filter_reasons** (input): reasons array
### prepare_body_final
Called at the end of `prepare_body()`.
2018-04-01 08:29:05 +02:00
Hook data:
2015-11-06 19:33:14 +01:00
2018-07-14 19:50:57 +02:00
- **item**: item array (input)
- **html**: converted item body (input/output)
### put_item_in_cache
Called after `prepare_text()` in `put_item_in_cache()`.
Hook data:
2018-07-14 19:50:57 +02:00
- **item** (input): item array
- **rendered-html** (input/output): final item body HTML
- **rendered-hash** (input/output): original item body hash
### magic_auth_success
Called when a magic-auth was successful.
Hook data:
2018-07-14 19:50:57 +02:00
visitor => array with the contact record of the visitor
url => the query string
## Complete list of hook callbacks
2012-02-14 04:06:15 +01:00
Here is a complete list of all hook callbacks with file locations (as of 24-Sep-2018). Please see the source for details of any hooks not documented above.
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### index.php
Hook::callAll('init_1');
Hook::callAll('app_menu', $arr);
Hook::callAll('page_content_top', $a->page['content']);
Hook::callAll($a->module.'_mod_init', $placeholder);
Hook::callAll($a->module.'_mod_init', $placeholder);
Hook::callAll($a->module.'_mod_post', $_POST);
Hook::callAll($a->module.'_mod_afterpost', $placeholder);
Hook::callAll($a->module.'_mod_content', $arr);
Hook::callAll($a->module.'_mod_aftercontent', $arr);
Hook::callAll('page_end', $a->page['content']);
2018-04-23 17:20:16 +02:00
### include/api.php
2018-04-24 13:21:16 +02:00
Hook::callAll('logged_in', $a->user);
Hook::callAll('authenticate', $addon_auth);
Hook::callAll('logged_in', $a->user);
2018-04-23 17:20:16 +02:00
### include/enotify.php
Hook::callAll('enotify', $h);
Hook::callAll('enotify_store', $datarray);
Hook::callAll('enotify_mail', $datarray);
Hook::callAll('check_item_notification', $notification_data);
2018-04-23 17:20:16 +02:00
### include/conversation.php
Hook::callAll('conversation_start', $cb);
Hook::callAll('render_location', $locate);
Hook::callAll('display_item', $arr);
Hook::callAll('display_item', $arr);
Hook::callAll('item_photo_menu', $args);
Hook::callAll('jot_tool', $jotplugins);
2018-04-23 17:20:16 +02:00
### include/text.php
Hook::callAll('contact_block_end', $arr);
Hook::callAll('poke_verbs', $arr);
Hook::callAll('put_item_in_cache', $hook_data);
Hook::callAll('prepare_body_init', $item);
Hook::callAll('prepare_body_content_filter', $hook_data);
Hook::callAll('prepare_body', $hook_data);
Hook::callAll('prepare_body_final', $hook_data);
2018-04-23 17:20:16 +02:00
### include/items.php
2018-04-25 11:29:56 +02:00
Hook::callAll('page_info_data', $data);
2018-04-23 17:20:16 +02:00
### mod/directory.php
2018-04-25 11:29:56 +02:00
Hook::callAll('directory_item', $arr);
2018-04-23 17:20:16 +02:00
### mod/xrd.php
2018-04-25 11:29:56 +02:00
Hook::callAll('personal_xrd', $arr);
2018-04-23 17:20:16 +02:00
### mod/ping.php
2018-04-25 11:29:56 +02:00
Hook::callAll('network_ping', $arr);
2018-04-23 17:20:16 +02:00
### mod/parse_url.php
2018-04-25 11:29:56 +02:00
Hook::callAll("parse_link", $arr);
2018-04-23 17:20:16 +02:00
### mod/manage.php
2018-04-25 11:29:56 +02:00
Hook::callAll('home_init', $ret);
2018-04-23 17:20:16 +02:00
### mod/acl.php
2018-04-25 11:29:56 +02:00
Hook::callAll('acl_lookup_end', $results);
2018-04-23 17:20:16 +02:00
### mod/network.php
2018-04-25 11:29:56 +02:00
Hook::callAll('network_content_init', $arr);
Hook::callAll('network_tabs', $arr);
2018-04-23 17:20:16 +02:00
### mod/friendica.php
2018-04-25 11:29:56 +02:00
Hook::callAll('about_hook', $o);
2018-04-23 17:20:16 +02:00
### mod/subthread.php
2018-04-25 11:29:56 +02:00
Hook::callAll('post_local_end', $arr);
2018-04-23 17:20:16 +02:00
### mod/profiles.php
2018-04-25 11:29:56 +02:00
Hook::callAll('profile_post', $_POST);
Hook::callAll('profile_edit', $arr);
2018-04-23 17:20:16 +02:00
### mod/settings.php
2018-04-25 11:29:56 +02:00
Hook::callAll('addon_settings_post', $_POST);
Hook::callAll('connector_settings_post', $_POST);
Hook::callAll('display_settings_post', $_POST);
Hook::callAll('settings_post', $_POST);
Hook::callAll('addon_settings', $settings_addons);
Hook::callAll('connector_settings', $settings_connectors);
Hook::callAll('display_settings', $o);
Hook::callAll('settings_form', $o);
2018-04-23 17:20:16 +02:00
### mod/photos.php
2018-04-25 11:29:56 +02:00
Hook::callAll('photo_post_init', $_POST);
Hook::callAll('photo_post_file', $ret);
Hook::callAll('photo_post_end', $foo);
Hook::callAll('photo_post_end', $foo);
Hook::callAll('photo_post_end', $foo);
Hook::callAll('photo_post_end', $foo);
Hook::callAll('photo_post_end', intval($item_id));
Hook::callAll('photo_upload_form', $ret);
2018-04-23 17:20:16 +02:00
### mod/profile.php
2018-04-25 11:29:56 +02:00
Hook::callAll('profile_advanced', $o);
2018-04-23 17:20:16 +02:00
### mod/home.php
2018-04-25 11:29:56 +02:00
Hook::callAll('home_init', $ret);
Hook::callAll("home_content", $content);
2018-04-23 17:20:16 +02:00
### mod/poke.php
2018-04-25 11:29:56 +02:00
Hook::callAll('post_local_end', $arr);
2018-04-23 17:20:16 +02:00
### mod/contacts.php
2018-04-25 11:29:56 +02:00
Hook::callAll('contact_edit_post', $_POST);
Hook::callAll('contact_edit', $arr);
2018-04-23 17:20:16 +02:00
### mod/tagger.php
2018-04-25 11:29:56 +02:00
Hook::callAll('post_local_end', $arr);
2018-04-23 17:20:16 +02:00
### mod/lockview.php
2018-04-25 11:29:56 +02:00
Hook::callAll('lockview_content', $item);
2018-04-23 17:20:16 +02:00
### mod/uexport.php
2018-04-25 11:29:56 +02:00
Hook::callAll('uexport_options', $options);
2018-04-23 17:20:16 +02:00
### mod/register.php
2018-04-25 11:29:56 +02:00
Hook::callAll('register_post', $arr);
Hook::callAll('register_form', $arr);
2018-04-23 17:20:16 +02:00
### mod/item.php
Hook::callAll('post_local_start', $_REQUEST);
Hook::callAll('post_local', $datarray);
Hook::callAll('post_local_end', $datarray);
2018-04-25 11:29:56 +02:00
### mod/editpost.php
2018-04-23 17:20:16 +02:00
Hook::callAll('jot_tool', $jotplugins);
2018-04-23 17:20:16 +02:00
### src/Network/FKOAuth1.php
2018-04-25 11:29:56 +02:00
Hook::callAll('logged_in', $a->user);
2018-04-23 17:20:16 +02:00
### src/Render/FriendicaSmartyEngine.php
2018-04-25 11:29:56 +02:00
Hook::callAll("template_vars", $arr);
2018-04-23 17:20:16 +02:00
2018-07-01 21:27:05 +02:00
### src/App.php
Hook::callAll('load_config');
Hook::callAll('head');
Hook::callAll('footer');
2018-07-01 21:27:05 +02:00
2018-04-23 17:20:16 +02:00
### src/Model/Item.php
Hook::callAll('post_local', $item);
Hook::callAll('post_remote', $item);
Hook::callAll('post_local_end', $posted_item);
Hook::callAll('post_remote_end', $posted_item);
Hook::callAll('tagged', $arr);
Hook::callAll('post_local_end', $new_item);
2018-04-23 17:20:16 +02:00
### src/Model/Contact.php
Hook::callAll('contact_photo_menu', $args);
Hook::callAll('follow', $arr);
2018-04-23 17:20:16 +02:00
### src/Model/Profile.php
Hook::callAll('profile_sidebar_enter', $profile);
Hook::callAll('profile_sidebar', $arr);
Hook::callAll('profile_tabs', $arr);
Hook::callAll('zrl_init', $arr);
Hook::callAll('magic_auth_success', $arr);
2018-04-23 17:20:16 +02:00
### src/Model/Event.php
2018-04-25 11:29:56 +02:00
Hook::callAll('event_updated', $event['id']);
Hook::callAll("event_created", $event['id']);
2018-04-23 17:20:16 +02:00
### src/Model/User.php
2018-04-25 11:29:56 +02:00
Hook::callAll('register_account', $uid);
Hook::callAll('remove_user', $user);
2018-04-23 17:20:16 +02:00
### src/Content/Text/BBCode.php
2018-04-25 11:29:56 +02:00
Hook::callAll('bbcode', $text);
Hook::callAll('bb2diaspora', $text);
2018-04-23 17:20:16 +02:00
### src/Content/Text/HTML.php
2018-04-25 11:29:56 +02:00
Hook::callAll('html2bbcode', $message);
2018-04-23 17:20:16 +02:00
### src/Content/Smilies.php
2018-04-25 11:29:56 +02:00
Hook::callAll('smilie', $params);
2018-04-01 08:29:05 +02:00
2018-04-23 17:20:16 +02:00
### src/Content/Feature.php
2018-04-25 11:29:56 +02:00
Hook::callAll('isEnabled', $arr);
Hook::callAll('get', $arr);
2018-04-01 08:29:05 +02:00
2018-04-23 17:20:16 +02:00
### src/Content/ContactSelector.php
2018-04-01 08:29:05 +02:00
Hook::callAll('network_to_name', $nets);
Hook::callAll('gender_selector', $select);
Hook::callAll('sexpref_selector', $select);
Hook::callAll('marital_selector', $select);
2018-04-25 11:29:56 +02:00
### src/Content/OEmbed.php
2011-11-09 00:38:06 +01:00
Hook::callAll('oembed_fetch_url', $embedurl, $j);
2011-11-09 00:38:06 +01:00
### src/Content/Nav.php
2011-04-13 16:07:21 +02:00
Hook::callAll('page_header', $a->page['nav']);
Hook::callAll('nav_info', $nav);
2011-04-13 16:07:21 +02:00
2018-04-23 17:20:16 +02:00
### src/Worker/Directory.php
2018-04-25 11:29:56 +02:00
Hook::callAll('globaldir_update', $arr);
2011-04-13 16:07:21 +02:00
2018-04-23 17:20:16 +02:00
### src/Worker/Notifier.php
2011-11-09 00:38:06 +01:00
Hook::callAll('notifier_end', $target_item);
2018-04-25 11:29:56 +02:00
### src/Worker/Queue.php
2012-02-14 04:06:15 +01:00
Hook::callAll('queue_predeliver', $r);
Hook::callAll('queue_deliver', $params);
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### src/Module/Login.php
2011-11-09 00:38:06 +01:00
Hook::callAll('authenticate', $addon_auth);
Hook::callAll('login_hook', $o);
2011-11-09 00:38:06 +01:00
### src/Module/Logout.php
2011-11-09 00:38:06 +01:00
Hook::callAll("logging_out");
2011-04-13 16:07:21 +02:00
2018-04-23 17:20:16 +02:00
### src/Object/Post.php
2018-04-25 11:29:56 +02:00
Hook::callAll('render_location', $locate);
Hook::callAll('display_item', $arr);
2011-04-13 16:07:21 +02:00
2018-04-23 17:20:16 +02:00
### src/Core/ACL.php
2018-04-25 11:29:56 +02:00
Hook::callAll('contact_select_options', $x);
Hook::callAll($a->module.'_pre_'.$selname, $arr);
Hook::callAll($a->module.'_post_'.$selname, $o);
Hook::callAll($a->module.'_pre_'.$selname, $arr);
Hook::callAll($a->module.'_post_'.$selname, $o);
Hook::callAll('jot_networks', $jotnets);
2011-04-13 16:07:21 +02:00
### src/Core/Authentication.php
Hook::callAll('logged_in', $a->user);
2018-11-10 17:55:12 +01:00
### src/Core/Hook.php
self::callSingle(self::getApp(), 'hook_fork', $fork_hook, $hookdata);
2018-04-23 17:20:16 +02:00
### src/Core/Worker.php
2018-04-25 11:29:56 +02:00
Hook::callAll("proc_run", $arr);
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### src/Util/Emailer.php
2018-04-25 11:29:56 +02:00
Hook::callAll('emailer_send_prepare', $params);
Hook::callAll("emailer_send", $hookdata);
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### src/Util/Map.php
2018-04-25 11:29:56 +02:00
Hook::callAll('generate_map', $arr);
Hook::callAll('generate_named_map', $arr);
Hook::callAll('Map::getCoordinates', $arr);
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### src/Util/Network.php
2018-04-25 11:29:56 +02:00
Hook::callAll('avatar_lookup', $avatar);
2011-11-09 00:38:06 +01:00
2018-04-23 17:20:16 +02:00
### src/Util/ParseUrl.php
2018-04-25 11:29:56 +02:00
Hook::callAll("getsiteinfo", $siteinfo);
2011-04-13 16:07:21 +02:00
2018-04-23 17:20:16 +02:00
### src/Protocol/DFRN.php
2018-04-25 11:29:56 +02:00
Hook::callAll('atom_feed_end', $atom);
Hook::callAll('atom_feed_end', $atom);
### view/js/main.js
document.dispatchEvent(new Event('postprocess_liveupdate'));