Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
5776af30e8
4
app/firefoxshare.apd
Normal file
4
app/firefoxshare.apd
Normal file
@ -0,0 +1,4 @@
|
||||
url: $baseurl/ffsapi
|
||||
requires: local_channel
|
||||
name: Firefox Share
|
||||
photo: $baseurl/app/firefoxshare.png
|
BIN
app/firefoxshare.png
Normal file
BIN
app/firefoxshare.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
@ -9,6 +9,7 @@
|
||||
[zrl=[baseurl]/help/Widgets]Widgets[/zrl]
|
||||
[zrl=[baseurl]/help/plugins]Plugins[/zrl]
|
||||
[zrl=[baseurl]/help/hooks]Hooks[/zrl]
|
||||
[zrl=[baseurl]/help/hooklist]Hooks (detailed - under construction)[/zrl]
|
||||
[zrl=[baseurl]/help/doco]Contributing Documentation[/zrl]
|
||||
[zrl=[baseurl]/help/DerivedTheme1]Creating Derivative Themes[/zrl]
|
||||
[zrl=[baseurl]/help/schema_development]Schemas[/zrl]
|
||||
|
1
doc/hook/about_hook.bb
Normal file
1
doc/hook/about_hook.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]about_hook[/h2]
|
1
doc/hook/accept_follow.bb
Normal file
1
doc/hook/accept_follow.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]accept_follow[/h2]
|
1
doc/hook/account_downgrade.bb
Normal file
1
doc/hook/account_downgrade.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]account_downgrade[/h2]
|
1
doc/hook/account_settings.bb
Normal file
1
doc/hook/account_settings.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]account_settings[/h2]
|
1
doc/hook/account_settings_post.bb
Normal file
1
doc/hook/account_settings_post.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]account_settings_post[/h2]
|
1
doc/hook/activity_received.bb
Normal file
1
doc/hook/activity_received.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]activity_received[/h2]
|
1
doc/hook/affinity_labels.bb
Normal file
1
doc/hook/affinity_labels.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]affinity_labels[/h2]
|
1
doc/hook/api_perm_is_allowed.bb
Normal file
1
doc/hook/api_perm_is_allowed.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]api_perm_is_allowed[/h2]
|
1
doc/hook/app_menu.bb
Normal file
1
doc/hook/app_menu.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]app_menu[/h2]
|
1
doc/hook/atom_author.bb
Normal file
1
doc/hook/atom_author.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]atom_author[/h2]
|
1
doc/hook/atom_entry.bb
Normal file
1
doc/hook/atom_entry.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]atom_entry[/h2]
|
1
doc/hook/atom_feed.bb
Normal file
1
doc/hook/atom_feed.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]atom_feed[/h2]
|
1
doc/hook/atom_feed_end.bb
Normal file
1
doc/hook/atom_feed_end.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]atom_feed_end[/h2]
|
1
doc/hook/attach_upload_file.bb
Normal file
1
doc/hook/attach_upload_file.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]attach_upload_file[/h2]
|
29
doc/hook/authenticate.bb
Normal file
29
doc/hook/authenticate.bb
Normal file
@ -0,0 +1,29 @@
|
||||
[h2]authenticate[/h2]
|
||||
|
||||
Invoked when a POST request is made with non-null $_POST['auth-params'] such as from the login form.
|
||||
If the hook handler does not set the 'authenticated' parameter of the passed array, normal login functions continue;
|
||||
|
||||
The 'user_record' is in fact an account DB record. To provide automatic provisioning of accounts from other authentication realms, this record should be generated and stored during the verification phase.
|
||||
|
||||
|
||||
[code]
|
||||
$addon_auth = array(
|
||||
'username' => trim($_POST['username']),
|
||||
'password' => trim($_POST['password']),
|
||||
'authenticated' => 0,
|
||||
'user_record' => null
|
||||
);
|
||||
|
||||
/**
|
||||
*
|
||||
* A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record
|
||||
* Plugins should never set 'authenticated' except to indicate success - as hooks may be chained
|
||||
* and later plugins should not interfere with an earlier one that succeeded.
|
||||
*
|
||||
*/
|
||||
|
||||
call_hooks('authenticate', $addon_auth);
|
||||
[/code]
|
||||
|
||||
|
||||
See include/auth.php
|
1
doc/hook/avatar_lookup.bb
Normal file
1
doc/hook/avatar_lookup.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]avatar_lookup[/h2]
|
1
doc/hook/bb2diaspora.bb
Normal file
1
doc/hook/bb2diaspora.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]bb2diaspora[/h2]
|
1
doc/hook/bbcode.bb
Normal file
1
doc/hook/bbcode.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]bbcode[/h2]
|
1
doc/hook/channel_remove.bb
Normal file
1
doc/hook/channel_remove.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]channel_remove[/h2]
|
1
doc/hook/chat_message.bb
Normal file
1
doc/hook/chat_message.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]chat_message[/h2]
|
1
doc/hook/chat_post.bb
Normal file
1
doc/hook/chat_post.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]chat_post[/h2]
|
1
doc/hook/check_account_email.bb
Normal file
1
doc/hook/check_account_email.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]check_account_email[/h2]
|
1
doc/hook/check_account_invite.bb
Normal file
1
doc/hook/check_account_invite.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]check_account_invite[/h2]
|
1
doc/hook/check_account_password.bb
Normal file
1
doc/hook/check_account_password.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]check_account_password[/h2]
|
1
doc/hook/connect_premium.bb
Normal file
1
doc/hook/connect_premium.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]connect_premium[/h2]
|
1
doc/hook/connector_settings.bb
Normal file
1
doc/hook/connector_settings.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]connector_settings[/h2]
|
1
doc/hook/construct_page.bb
Normal file
1
doc/hook/construct_page.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]construct_page[/h2]
|
1
doc/hook/contact_block_end.bb
Normal file
1
doc/hook/contact_block_end.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]contact_block_end[/h2]
|
1
doc/hook/contact_edit.bb
Normal file
1
doc/hook/contact_edit.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]contact_edit[/h2]
|
1
doc/hook/contact_edit_post.bb
Normal file
1
doc/hook/contact_edit_post.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]contact_edit_post[/h2]
|
1
doc/hook/contact_select_options.bb
Normal file
1
doc/hook/contact_select_options.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]contact_select_options[/h2]
|
1
doc/hook/conversation_start.bb
Normal file
1
doc/hook/conversation_start.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]conversation_start[/h2]
|
1
doc/hook/create_identity.bb
Normal file
1
doc/hook/create_identity.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]create_identity[/h2]
|
1
doc/hook/cron.bb
Normal file
1
doc/hook/cron.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]cron[/h2]
|
1
doc/hook/cron_daily.bb
Normal file
1
doc/hook/cron_daily.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]cron_daily[/h2]
|
1
doc/hook/cron_weekly.bb
Normal file
1
doc/hook/cron_weekly.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]cron_weekly[/h2]
|
1
doc/hook/directory_item.bb
Normal file
1
doc/hook/directory_item.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]directory_item[/h2]
|
1
doc/hook/discover_by_webbie.bb
Normal file
1
doc/hook/discover_by_webbie.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]discover_by_webbie[/h2]
|
1
doc/hook/display_item.bb
Normal file
1
doc/hook/display_item.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]display_item[/h2]
|
1
doc/hook/display_settings.bb
Normal file
1
doc/hook/display_settings.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]display_settings[/h2]
|
1
doc/hook/display_settings_post.bb
Normal file
1
doc/hook/display_settings_post.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]display_settings_post[/h2]
|
1
doc/hook/donate_contributors.bb
Normal file
1
doc/hook/donate_contributors.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]donate_contributors[/h2]
|
1
doc/hook/donate_plugin.bb
Normal file
1
doc/hook/donate_plugin.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]donate_plugin[/h2]
|
1
doc/hook/donate_sponsors.bb
Normal file
1
doc/hook/donate_sponsors.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]donate_sponsors[/h2]
|
1
doc/hook/dreport_is_storable.bb
Normal file
1
doc/hook/dreport_is_storable.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]dreport_is_storable[/h2]
|
1
doc/hook/drop_item.bb
Normal file
1
doc/hook/drop_item.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]drop_item[/h2]
|
1
doc/hook/enotify.bb
Normal file
1
doc/hook/enotify.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]enotify[/h2]
|
1
doc/hook/enotify_mail.bb
Normal file
1
doc/hook/enotify_mail.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]enotify_mail[/h2]
|
1
doc/hook/enotify_store.bb
Normal file
1
doc/hook/enotify_store.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]enotify_store[/h2]
|
1
doc/hook/event_created.bb
Normal file
1
doc/hook/event_created.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]event_created[/h2]
|
1
doc/hook/event_updated.bb
Normal file
1
doc/hook/event_updated.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]event_updated[/h2]
|
1
doc/hook/externals_url_select.bb
Normal file
1
doc/hook/externals_url_select.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]externals_url_select[/h2]
|
1
doc/hook/feature_enabled.bb
Normal file
1
doc/hook/feature_enabled.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]feature_enabled[/h2]
|
1
doc/hook/feature_settings.bb
Normal file
1
doc/hook/feature_settings.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]feature_settings[/h2]
|
1
doc/hook/feature_settings_post.bb
Normal file
1
doc/hook/feature_settings_post.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]feature_settings_post[/h2]
|
1
doc/hook/follow.bb
Normal file
1
doc/hook/follow.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]follow[/h2]
|
1
doc/hook/follow_allow.bb
Normal file
1
doc/hook/follow_allow.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]follow_allow[/h2]
|
1
doc/hook/gender_selector.bb
Normal file
1
doc/hook/gender_selector.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]gender_selector[/h2]
|
1
doc/hook/gender_selector_min.bb
Normal file
1
doc/hook/gender_selector_min.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]gender_selector_min[/h2]
|
1
doc/hook/generate_map.bb
Normal file
1
doc/hook/generate_map.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]generate_map[/h2]
|
1
doc/hook/generate_named_map.bb
Normal file
1
doc/hook/generate_named_map.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]generate_named_map[/h2]
|
1
doc/hook/get_all_api_perms.bb
Normal file
1
doc/hook/get_all_api_perms.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]get_all_api_perms[/h2]
|
1
doc/hook/get_all_perms.bb
Normal file
1
doc/hook/get_all_perms.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]get_all_perms[/h2]
|
1
doc/hook/get_features.bb
Normal file
1
doc/hook/get_features.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]get_features[/h2]
|
1
doc/hook/get_role_perms.bb
Normal file
1
doc/hook/get_role_perms.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]get_role_perms[/h2]
|
1
doc/hook/get_widgets.bb
Normal file
1
doc/hook/get_widgets.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]get_widgets[/h2]
|
1
doc/hook/global_permissions.bb
Normal file
1
doc/hook/global_permissions.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]global_permissions[/h2]
|
1
doc/hook/home_content.bb
Normal file
1
doc/hook/home_content.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]home_content[/h2]
|
1
doc/hook/home_init.bb
Normal file
1
doc/hook/home_init.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]home_init[/h2]
|
1
doc/hook/hostxrd.bb
Normal file
1
doc/hook/hostxrd.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]hostxrd[/h2]
|
1
doc/hook/html2bbcode.bb
Normal file
1
doc/hook/html2bbcode.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]html2bbcode[/h2]
|
1
doc/hook/identity_basic_export.bb
Normal file
1
doc/hook/identity_basic_export.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]identity_basic_export[/h2]
|
1
doc/hook/import_author_xchan.bb
Normal file
1
doc/hook/import_author_xchan.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]import_author_xchan[/h2]
|
1
doc/hook/import_channel.bb
Normal file
1
doc/hook/import_channel.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]import_channel[/h2]
|
1
doc/hook/import_directory_profile.bb
Normal file
1
doc/hook/import_directory_profile.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]import_directory_profile[/h2]
|
1
doc/hook/import_xchan.bb
Normal file
1
doc/hook/import_xchan.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]import_xchan[/h2]
|
1
doc/hook/item_photo_menu.bb
Normal file
1
doc/hook/item_photo_menu.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]item_photo_menu[/h2]
|
1
doc/hook/item_store.bb
Normal file
1
doc/hook/item_store.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]item_store[/h2]
|
1
doc/hook/item_store_update.bb
Normal file
1
doc/hook/item_store_update.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]item_store_update[/h2]
|
1
doc/hook/item_translate.bb
Normal file
1
doc/hook/item_translate.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]item_translate[/h2]
|
1
doc/hook/jot_networks.bb
Normal file
1
doc/hook/jot_networks.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]jot_networks[/h2]
|
1
doc/hook/jot_tool.bb
Normal file
1
doc/hook/jot_tool.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]jot_tool[/h2]
|
1
doc/hook/load_pdl.bb
Normal file
1
doc/hook/load_pdl.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]load_pdl[/h2]
|
1
doc/hook/local_dir_update.bb
Normal file
1
doc/hook/local_dir_update.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]local_dir_update[/h2]
|
1
doc/hook/logged_in.bb
Normal file
1
doc/hook/logged_in.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]logged_in[/h2]
|
1
doc/hook/logging_out.bb
Normal file
1
doc/hook/logging_out.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]logging_out[/h2]
|
1
doc/hook/login_hook.bb
Normal file
1
doc/hook/login_hook.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]login_hook[/h2]
|
1
doc/hook/magic_auth.bb
Normal file
1
doc/hook/magic_auth.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]magic_auth[/h2]
|
1
doc/hook/magic_auth_openid_success.bb
Normal file
1
doc/hook/magic_auth_openid_success.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]magic_auth_openid_success[/h2]
|
1
doc/hook/magic_auth_success.bb
Normal file
1
doc/hook/magic_auth_success.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]magic_auth_success[/h2]
|
1
doc/hook/main_slider.bb
Normal file
1
doc/hook/main_slider.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]main_slider[/h2]
|
1
doc/hook/marital_selector.bb
Normal file
1
doc/hook/marital_selector.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]marital_selector[/h2]
|
1
doc/hook/marital_selector_min.bb
Normal file
1
doc/hook/marital_selector_min.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]marital_selector_min[/h2]
|
1
doc/hook/module_loaded.bb
Normal file
1
doc/hook/module_loaded.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]module_loaded[/h2]
|
12
doc/hook/module_mod_aftercontent.bb
Normal file
12
doc/hook/module_mod_aftercontent.bb
Normal file
@ -0,0 +1,12 @@
|
||||
[h2]module_mod_aftercontent[/h2]
|
||||
|
||||
|
||||
|
||||
The hook data for this call consists of an array
|
||||
|
||||
$arr['content']
|
||||
|
||||
This element contains the HTML content which was prepared for this page by calling the module_content() function. It is invoked after the content has been created. It does not contain the result of AJAX or asynchronous page load calls.
|
||||
|
||||
The current module may be determined by lookin at $a->module
|
||||
|
10
doc/hook/module_mod_content.bb
Normal file
10
doc/hook/module_mod_content.bb
Normal file
@ -0,0 +1,10 @@
|
||||
[h2]module_mod_content[/h2]
|
||||
|
||||
The hook data for this call consists of an array
|
||||
|
||||
$arr['content']
|
||||
|
||||
This element contains the HTML content before calling the module_content() function. It is invoked before the content region has been populated. This may or may not be empty as there may be other processes or addons generating content prior to your hook handler is run. Be certain to preserve any current content. Typically anything you add here will be placed at the top of the content region of the page, but in any event prior to the main content region being generated.
|
||||
|
||||
The current module may be determined by lookin at $a->module
|
||||
|
1
doc/hook/module_mod_init.bb
Normal file
1
doc/hook/module_mod_init.bb
Normal file
@ -0,0 +1 @@
|
||||
[h2]module_mod_init[/h2]
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user