diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php
index 4b95a9f5d..595cf33ee 100644
--- a/Zotlabs/Lib/Apps.php
+++ b/Zotlabs/Lib/Apps.php
@@ -159,6 +159,8 @@ class Apps {
if(array_key_exists('version',$ret))
$ret['version'] = str_replace(array('\'','"'),array(''','&dquot;'),$ret['version']);
+ if(array_key_exists('categories',$ret))
+ $ret['categories'] = str_replace(array('\'','"'),array(''','&dquot;'),$ret['categories']);
if(array_key_exists('requires',$ret)) {
$requires = explode(',',$ret['requires']);
diff --git a/Zotlabs/Module/Ffsapi.php b/Zotlabs/Module/Ffsapi.php
deleted file mode 100644
index f3ade73c2..000000000
--- a/Zotlabs/Module/Ffsapi.php
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
- var baseurl = '$baseurl';
-
- var data = {
- "origin": baseurl,
- // currently required
- "name": '$name',
- "iconURL": baseurl+"/images/hz-16.png",
- "icon32URL": baseurl+"/images/hz-32.png",
- "icon64URL": baseurl+"/images/hz-64.png",
-
- // at least one of these must be defined
- // "workerURL": baseurl+"/worker.js",
- // "sidebarURL": baseurl+"/sidebar.htm",
- "shareURL": baseurl+"/rpost?f=&url=%{url}",
-
- // status buttons are scheduled for Firefox 26 or 27
- //"statusURL": baseurl+"/statusPanel.html",
-
- // social bookmarks are available in Firefox 26
- "markURL": baseurl+"/rbmark?f=&url=%{url}&title=%{title}",
- // icons should be 32x32 pixels
- // "markedIcon": baseurl+"/images/checkbox-checked-32.png",
- // "unmarkedIcon": baseurl+"/images/checkbox-unchecked-32.png",
- "unmarkedIcon": baseurl+"/images/hz-bookmark-32.png",
-
- // should be available for display purposes
- "description": "$description",
- "author": "$author",
- "homepageURL": "$homepage",
-
- // optional
- "version": "1.0"
- }
-
- function activate(node) {
- var event = new CustomEvent("ActivateSocialFeature");
- var jdata = JSON.stringify(data);
- node.setAttribute("data-service", JSON.stringify(data));
- node.dispatchEvent(event);
- }
-
-
-
-
-EOT;
-
- return $s;
-
- }
-
-}
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php
index 48992a676..4725ecb38 100644
--- a/Zotlabs/Module/Item.php
+++ b/Zotlabs/Module/Item.php
@@ -523,7 +523,7 @@ class Item extends \Zotlabs\Web\Controller {
//
// if($uid && $uid == $profile_uid && feature_enabled($uid,'markdown')) {
- // require_once('include/bb2diaspora.php');
+ // require_once('include/markdown.php');
// $body = escape_tags(trim($body));
// $body = str_replace("\n",'
', $body);
// $body = preg_replace_callback('/\[share(.*?)\]/ism','\share_shield',$body);
diff --git a/Zotlabs/Module/Match.php b/Zotlabs/Module/Match.php
deleted file mode 100644
index 63bdb60a4..000000000
--- a/Zotlabs/Module/Match.php
+++ /dev/null
@@ -1,84 +0,0 @@
-' . t('Profile Match') . '';
-
- $r = q("SELECT keywords FROM profile WHERE is_default = 1 AND uid = %d LIMIT 1",
- intval(local_channel())
- );
- if (! count($r))
- return;
-
- if (! $r[0]['keywords']) {
- notice( t('No keywords to match. Please add keywords to your default profile.') . EOL);
- return;
- }
-
- $params = array();
- $tags = trim($r[0]['keywords']);
-
- if ($tags) {
- $params['s'] = $tags;
- if (\App::$pager['page'] != 1)
- $params['p'] = \App::$pager['page'];
-
- // if(strlen(get_config('system','directory_submit_url')))
- // $x = post_url('http://dir.friendica.com/msearch', $params);
- // else
- // $x = post_url(z_root() . '/msearch', $params);
-
- $j = json_decode($x);
-
- if ($j->total) {
- \App::set_pager_total($j->total);
- \App::set_pager_itemspage($j->items_page);
- }
-
- if (count($j->results)) {
- $tpl = get_markup_template('match.tpl');
- foreach ($j->results as $jj) {
- $connlnk = z_root() . '/follow/?url=' . $jj->url;
- $o .= replace_macros($tpl,array(
- '$url' => zid($jj->url),
- '$name' => $jj->name,
- '$photo' => $jj->photo,
- '$inttxt' => ' ' . t('is interested in:'),
- '$conntxt' => t('Connect'),
- '$connlnk' => $connlnk,
- '$tags' => $jj->tags
- ));
- }
- } else {
- info( t('No matches') . EOL);
- }
- }
-
- $o .= cleardiv();
- $o .= paginate($a);
-
- return $o;
- }
-
-}
diff --git a/Zotlabs/Module/Opensearch.php b/Zotlabs/Module/Opensearch.php
deleted file mode 100644
index 8e76038c9..000000000
--- a/Zotlabs/Module/Opensearch.php
+++ /dev/null
@@ -1,24 +0,0 @@
- z_root(),
- '$nodename' => \App::get_hostname(),
- ));
-
- echo $o;
-
- killme();
-
- }
-
-}
diff --git a/Zotlabs/Module/Rsd_xml.php b/Zotlabs/Module/Rsd_xml.php
deleted file mode 100644
index e5059834b..000000000
--- a/Zotlabs/Module/Rsd_xml.php
+++ /dev/null
@@ -1,17 +0,0 @@
- \Zotlabs\Lib\System::get_platform_name(),
- '$baseurl' => z_root(),
- '$apipath' => z_root() . '/api/'
- ));
- killme();
- }
-
-}
-
diff --git a/Zotlabs/Module/Settings/Channel.php b/Zotlabs/Module/Settings/Channel.php
index a73aa2e60..a89d83544 100644
--- a/Zotlabs/Module/Settings/Channel.php
+++ b/Zotlabs/Module/Settings/Channel.php
@@ -448,7 +448,10 @@ class Channel {
$always_show_in_notices = get_pconfig(local_channel(),'system','always_show_in_notices');
if($vnotify === false)
$vnotify = (-1);
-
+
+ $plugin = [ 'basic' => '', 'security' => '', 'notify' => '', 'misc' => '' ];
+ call_hooks('channel_settings',$plugin);
+
$o .= replace_macros($stpl,array(
'$ptitle' => t('Channel Settings'),
@@ -537,6 +540,10 @@ class Channel {
'$always_show_in_notices' => array('always_show_in_notices', t('Also show new wall posts, private messages and connections under Notices'), $always_show_in_notices, 1, '', $yes_no),
'$evdays' => array('evdays', t('Notify me of events this many days in advance'), $evdays, t('Must be greater than 0')),
+ '$basic_addon' => $plugin['basic'],
+ '$sec_addon' => $plugin['security'],
+ '$notify_addon' => $plugin['notify'],
+ '$misc_addon' => $plugin['misc'],
'$h_advn' => t('Advanced Account/Page Type Settings'),
'$h_descadvn' => t('Change the behaviour of this account for special situations'),
diff --git a/boot.php b/boot.php
index 8d007d805..e42c41546 100755
--- a/boot.php
+++ b/boot.php
@@ -802,6 +802,7 @@ class App {
public static $identities;
public static $css_sources = array();
public static $js_sources = array();
+ public static $linkrel = array();
public static $theme_info = array();
public static $is_sys = false;
public static $nav_sel;
@@ -1164,6 +1165,11 @@ class App {
self::$meta->set('generator', Zotlabs\Lib\System::get_platform_name());
+ head_add_link(['rel' => 'shortcut icon', 'href' => head_get_icon()]);
+
+ $x = [ 'header' => '' ];
+ call_hooks('build_pagehead',$x);
+
/* put the head template at the beginning of page['htmlhead']
* since the code added by the modules frequently depends on it
* being first
@@ -1176,11 +1182,12 @@ class App {
'$baseurl' => self::get_baseurl(),
'$local_channel' => local_channel(),
'$metas' => self::$meta->get(),
+ '$plugins' => $x['header'],
'$update_interval' => $interval,
'osearch' => sprintf( t('Search %1$s (%2$s)','opensearch'), Zotlabs\Lib\System::get_site_name(), t('$Projectname','opensearch')),
- '$icon' => head_get_icon(),
'$head_css' => head_get_css(),
'$head_js' => head_get_js(),
+ '$linkrel' => head_get_links(),
'$js_strings' => js_strings(),
'$zid' => get_my_address(),
'$channel_id' => self::$profile['uid'],
diff --git a/doc/hook/build_pagehead.bb b/doc/hook/build_pagehead.bb
new file mode 100644
index 000000000..8fc3486c7
--- /dev/null
+++ b/doc/hook/build_pagehead.bb
@@ -0,0 +1,2 @@
+[b]build_pagehead[/b]
+
diff --git a/doc/hooklist.bb b/doc/hooklist.bb
index 59d370117..fcd0e2aff 100644
--- a/doc/hooklist.bb
+++ b/doc/hooklist.bb
@@ -76,12 +76,18 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the
[zrl=[baseurl]/help/hook/bb_translate_video]bb_translate_video[/zrl]
Called when extracting embedded services from bbcode video elements (rarely used)
+[zrl=[baseurl]/help/hook/build_pagehead]build_pagehead[/zrl]
+ Called when creating the HTML page header
+
[zrl=[baseurl]/help/hook/change_channel]change_channel[/zrl]
Called when logging in to a channel (either during login or afterward through the channel manager)
[zrl=[baseurl]/help/hook/channel_remove]channel_remove[/zrl]
Called when removing a channel
+[zrl=[baseurl]/help/hook/channel_settings]channel_settings[/zrl]
+ Called when displaying the channel settings page
+
[zrl=[baseurl]/help/hook/chat_message]chat_message[/zrl]
Called to create a chat message.
diff --git a/doc/hooks.html b/doc/hooks.html
index f4a5a7630..6009127f6 100644
--- a/doc/hooks.html
+++ b/doc/hooks.html
@@ -1 +1 @@
-
Function | Source File | Arg |
$a->module . _mod_aftercontent | index.php | $arr |
$a->module . _mod_content | index.php | $arr |
$a->module . _mod_init | index.php | $placeholder |
$a->module . _mod_post | index.php | $_POST |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$name | include/plugin.php | &$data = null |
about_hook | mod/siteinfo.php | $o |
accept_follow | mod/connedit.php | $arr |
account_downgrade | include/account.php | $ret |
account_downgrade | include/account.php | $ret |
account_settings | mod/settings.php | $account_settings |
activity_received | include/zot.php | $parr |
affinity_labels | include/widgets.php | $labels |
affinity_labels | mod/connedit.php | $labels |
api_perm_is_allowed | include/permissions.php | $arr |
app_menu | index.php | $arr |
atom_author | include/items.php | $o |
atom_entry | include/items.php | $o |
atom_feed | include/items.php | $atom |
atom_feed_end | include/items.php | $atom |
attach_upload_file | include/attach.php | $f |
authenticate | include/auth.php | $addon_auth |
avatar_lookup | include/network.php | $avatar |
bb2diaspora | include/bb2diaspora.php | $Text |
bbcode | include/bbcode.php | $Text |
channel_remove | include/Contact.php | $r[0] |
chat_message | include/chat.php | $arr |
chat_post | mod/chatsvc.php | $arr |
check_account_email | include/account.php | $arr |
check_account_invite | include/account.php | $arr |
check_account_password | include/account.php | $arr |
connect_premium | mod/connect.php | $arr |
connector_settings | mod/settings.php | $settings_connectors |
construct_page | boot.php | $arr |
contact_block_end | include/text.php | $arr |
contact_edit | mod/connedit.php | $arr |
contact_edit_post | mod/connedit.php | $_POST |
contact_select_options | include/acl_selectors.php | $x |
conversation_start | include/conversation.php | $cb |
create_identity | include/channel.php | $newuid |
cron | include/cronhooks.php | $d |
cron_daily | include/poller.php | datetime_convert() |
cron_weekly | include/poller.php | datetime_convert() |
directory_item | mod/directory.php | $arr |
discover_by_webbie | include/network.php | $arr |
display_item | include/ItemObject.php | $arr |
display_item | include/conversation.php | $arr |
display_settings | mod/settings.php | $o |
display_settings_post | mod/settings.php | $_POST |
donate_contributors | extend/addon/matrix/donate/donate.php | $contributors |
donate_plugin | extend/addon/matrix/donate/donate.php | $o |
donate_sponsors | extend/addon/matrix/donate/donate.php | $sponsors |
dreport_is_storable | include/zot.php | $dr |
drop_item | include/items.php | $arr |
enotify | include/enotify.php | $h |
enotify_mail | include/enotify.php | $datarray |
enotify_store | include/enotify.php | $datarray |
event_created | include/event.php | $event[id] |
event_updated | include/event.php | $event[id] |
externals_url_select | include/externals.php | $arr |
feature_enabled | include/features.php | $arr |
feature_settings | mod/settings.php | $settings_addons |
feature_settings_post | mod/settings.php | $_POST |
follow | include/follow.php | $arr |
follow | include/follow.php | $arr |
follow_allow | include/follow.php | $x |
gender_selector | include/profile_selectors.php | $select |
gender_selector_min | include/profile_selectors.php | $select |
generate_map | include/text.php | $arr |
generate_named_map | include/text.php | $arr |
get_all_api_perms | include/permissions.php | $arr |
get_all_perms | include/permissions.php | $arr |
get_features | include/features.php | $arr |
get_role_perms | include/permissions.php | $ret |
get_widgets | boot.php | $arr |
get_widgets | boot.php | $arr |
global_permissions | include/permissions.php | $ret |
home_content | mod/home.php | $o |
home_init | mod/home.php | $ret |
hostxrd | mod/hostxrd.php | $arr |
html2bbcode | include/html2bbcode.php | $message |
identity_basic_export | include/channel.php | $addon |
import_author_xchan | include/items.php | $arr |
import_channel | mod/import.php | $addon |
import_directory_profile | include/zot.php | $d |
import_xchan | include/zot.php | $arr |
item_photo_menu | include/conversation.php | $args |
item_store | include/items.php | $d |
item_store | include/items.php | $arr |
item_store_update | include/items.php | $d |
item_translate | include/items.php | $translate |
item_translate | include/items.php | $translate |
jot_networks | include/acl_selectors.php | $jotnets |
jot_networks | include/conversation.php | $jotnets |
jot_networks | mod/editblock.php | $jotnets |
jot_networks | mod/editpost.php | $jotnets |
jot_networks | mod/editwebpage.php | $jotnets |
jot_networks | mod/editlayout.php | $jotnets |
jot_tool | include/conversation.php | $jotplugins |
jot_tool | mod/editblock.php | $jotplugins |
jot_tool | mod/editpost.php | $jotplugins |
jot_tool | mod/editwebpage.php | $jotplugins |
jot_tool | mod/editlayout.php | $jotplugins |
load_pdl | boot.php | $arr |
local_dir_update | include/dir_fns.php | $arr |
logged_in | include/oauth.php | $a->user |
logged_in | include/api.php | $a->user |
logged_in | include/security.php | $a->account |
logged_in | include/security.php | $user_record |
logging_out | include/auth.php | $args |
login_hook | boot.php | $o |
magic_auth | mod/magic.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_success | mod/post.php | $arr |
main_slider | include/widgets.php | $arr |
marital_selector | include/profile_selectors.php | $select |
marital_selector_min | include/profile_selectors.php | $select |
module_loaded | index.php | $x |
mood_verbs | include/text.php | $arr |
nav | include/nav.php | $x |
network_content_init | mod/network.php | $arr |
network_ping | mod/ping.php | $arr |
network_tabs | include/conversation.php | $arr |
network_to_name | include/contact_selectors.php | $nets |
notifier_end | include/notifier.php | $target_item |
notifier_hub | include/notifier.php | $narr |
notifier_normal | include/deliver_hooks.php | $r[0] |
obj_verbs | include/taxonomy.php | $arr |
oembed_probe | include/oembed.php | $x |
page_content_top | index.php | $a->page[content] |
page_end | index.php | $a->page[content] |
page_header | include/nav.php | $a->page[nav] |
parse_atom | include/items.php | $arr |
parse_link | mod/linkinfo.php | $arr |
pdl_selector | include/comanche.php | $arr |
perm_is_allowed | include/permissions.php | $arr |
permissions_create | include/notifier.php | $perm_update |
permissions_update | include/notifier.php | $perm_update |
personal_xrd | mod/xrd.php | $arr |
photo_post_end | include/photos.php | $ret |
photo_post_end | include/photos.php | $ret |
photo_upload_begin | include/attach.php | $arr |
photo_upload_begin | include/photos.php | $args |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_file | include/attach.php | $f |
photo_upload_file | include/photos.php | $f |
photo_upload_form | mod/photos.php | $ret |
poke_verbs | include/text.php | $arr |
post_local | include/zot.php | $arr |
post_local | include/items.php | $arr |
post_local | mod/item.php | $datarray |
post_local_end | include/items.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | mod/mood.php | $arr |
post_local_end | mod/like.php | $arr |
post_local_end | mod/item.php | $datarray |
post_local_end | mod/subthread.php | $arr |
post_local_start | mod/item.php | $_REQUEST |
post_mail | include/items.php | $arr |
post_mail_end | include/items.php | $arr |
post_remote | include/items.php | $arr |
post_remote_end | include/items.php | $arr |
post_remote_update | include/items.php | $arr |
post_remote_update_end | include/items.php | $arr |
prepare_body | include/text.php | $prep_arr |
prepare_body_final | include/text.php | $prep_arr |
prepare_body_init | include/text.php | $item |
probe_well_known | include/probe.php | $ret |
proc_run | boot.php | $arr |
process_channel_sync_delivery | include/zot.php | $addon |
profile_advanced | mod/profile.php | $o |
profile_edit | mod/profiles.php | $arr |
profile_photo_content_end | mod/profile_photo.php | $o |
profile_post | mod/profiles.php | $_POST |
profile_sidebar | include/channel.php | $arr |
profile_sidebar_enter | include/channel.php | $profile |
profile_tabs | include/conversation.php | $arr |
register_account | include/account.php | $result |
render_location | include/conversation.php | $locate |
replace_macros | include/text.php | $arr |
reverse_magic_auth | mod/rmagic.php | $arr |
settings_account | mod/settings.php | $_POST |
settings_form | mod/settings.php | $o |
settings_post | mod/settings.php | $_POST |
sexpref_selector | include/profile_selectors.php | $select |
sexpref_selector_min | include/profile_selectors.php | $select |
smilie | include/text.php | $params |
smilie | extend/addon/matrix/smileybutton/smileybutton.php | $params |
tagged | include/items.php | $arr |
validate_channelname | include/channel.php | $arr |
webfinger | mod/wfinger.php | $arr |
well_known | mod/_well_known.php | $arr |
zid | include/channel.php | $arr |
zid_init | include/channel.php | $arr |
zot_finger | include/zot.php | $ret |
Generated Tue Nov 03 21:19:02 PST 2015
Function | Source File | Arg |
$a->module . _mod_aftercontent | index.php | $arr |
$a->module . _mod_content | index.php | $arr |
$a->module . _mod_init | index.php | $placeholder |
$a->module . _mod_post | index.php | $_POST |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _post_ . $selname | include/acl_selectors.php | $o |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$a->module . _pre_ . $selname | include/acl_selectors.php | $arr |
$name | include/plugin.php | &$data = null |
about_hook | mod/siteinfo.php | $o |
accept_follow | mod/connedit.php | $arr |
account_downgrade | include/account.php | $ret |
account_downgrade | include/account.php | $ret |
account_settings | mod/settings.php | $account_settings |
activity_received | include/zot.php | $parr |
affinity_labels | include/widgets.php | $labels |
affinity_labels | mod/connedit.php | $labels |
api_perm_is_allowed | include/permissions.php | $arr |
app_menu | index.php | $arr |
atom_author | include/items.php | $o |
atom_entry | include/items.php | $o |
atom_feed | include/items.php | $atom |
atom_feed_end | include/items.php | $atom |
attach_upload_file | include/attach.php | $f |
authenticate | include/auth.php | $addon_auth |
avatar_lookup | include/network.php | $avatar |
bb2diaspora | include/markdown.php | $Text |
bbcode | include/bbcode.php | $Text |
channel_remove | include/Contact.php | $r[0] |
chat_message | include/chat.php | $arr |
chat_post | mod/chatsvc.php | $arr |
check_account_email | include/account.php | $arr |
check_account_invite | include/account.php | $arr |
check_account_password | include/account.php | $arr |
connect_premium | mod/connect.php | $arr |
connector_settings | mod/settings.php | $settings_connectors |
construct_page | boot.php | $arr |
contact_block_end | include/text.php | $arr |
contact_edit | mod/connedit.php | $arr |
contact_edit_post | mod/connedit.php | $_POST |
contact_select_options | include/acl_selectors.php | $x |
conversation_start | include/conversation.php | $cb |
create_identity | include/channel.php | $newuid |
cron | include/cronhooks.php | $d |
cron_daily | include/poller.php | datetime_convert() |
cron_weekly | include/poller.php | datetime_convert() |
directory_item | mod/directory.php | $arr |
discover_by_webbie | include/network.php | $arr |
display_item | include/ItemObject.php | $arr |
display_item | include/conversation.php | $arr |
display_settings | mod/settings.php | $o |
display_settings_post | mod/settings.php | $_POST |
donate_contributors | extend/addon/matrix/donate/donate.php | $contributors |
donate_plugin | extend/addon/matrix/donate/donate.php | $o |
donate_sponsors | extend/addon/matrix/donate/donate.php | $sponsors |
dreport_is_storable | include/zot.php | $dr |
drop_item | include/items.php | $arr |
enotify | include/enotify.php | $h |
enotify_mail | include/enotify.php | $datarray |
enotify_store | include/enotify.php | $datarray |
event_created | include/event.php | $event[id] |
event_updated | include/event.php | $event[id] |
externals_url_select | include/externals.php | $arr |
feature_enabled | include/features.php | $arr |
feature_settings | mod/settings.php | $settings_addons |
feature_settings_post | mod/settings.php | $_POST |
follow | include/follow.php | $arr |
follow | include/follow.php | $arr |
follow_allow | include/follow.php | $x |
gender_selector | include/profile_selectors.php | $select |
gender_selector_min | include/profile_selectors.php | $select |
generate_map | include/text.php | $arr |
generate_named_map | include/text.php | $arr |
get_all_api_perms | include/permissions.php | $arr |
get_all_perms | include/permissions.php | $arr |
get_features | include/features.php | $arr |
get_role_perms | include/permissions.php | $ret |
get_widgets | boot.php | $arr |
get_widgets | boot.php | $arr |
global_permissions | include/permissions.php | $ret |
home_content | mod/home.php | $o |
home_init | mod/home.php | $ret |
hostxrd | mod/hostxrd.php | $arr |
html2bbcode | include/html2bbcode.php | $message |
identity_basic_export | include/channel.php | $addon |
import_author_xchan | include/items.php | $arr |
import_channel | mod/import.php | $addon |
import_directory_profile | include/zot.php | $d |
import_xchan | include/zot.php | $arr |
item_photo_menu | include/conversation.php | $args |
item_store | include/items.php | $d |
item_store | include/items.php | $arr |
item_store_update | include/items.php | $d |
item_translate | include/items.php | $translate |
item_translate | include/items.php | $translate |
jot_networks | include/acl_selectors.php | $jotnets |
jot_networks | include/conversation.php | $jotnets |
jot_networks | mod/editblock.php | $jotnets |
jot_networks | mod/editpost.php | $jotnets |
jot_networks | mod/editwebpage.php | $jotnets |
jot_networks | mod/editlayout.php | $jotnets |
jot_tool | include/conversation.php | $jotplugins |
jot_tool | mod/editblock.php | $jotplugins |
jot_tool | mod/editpost.php | $jotplugins |
jot_tool | mod/editwebpage.php | $jotplugins |
jot_tool | mod/editlayout.php | $jotplugins |
load_pdl | boot.php | $arr |
local_dir_update | include/dir_fns.php | $arr |
logged_in | include/oauth.php | $a->user |
logged_in | include/api.php | $a->user |
logged_in | include/security.php | $a->account |
logged_in | include/security.php | $user_record |
logging_out | include/auth.php | $args |
login_hook | boot.php | $o |
magic_auth | mod/magic.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_openid_success | mod/openid.php | $arr |
magic_auth_success | mod/post.php | $arr |
main_slider | include/widgets.php | $arr |
marital_selector | include/profile_selectors.php | $select |
marital_selector_min | include/profile_selectors.php | $select |
module_loaded | index.php | $x |
mood_verbs | include/text.php | $arr |
nav | include/nav.php | $x |
network_content_init | mod/network.php | $arr |
network_ping | mod/ping.php | $arr |
network_tabs | include/conversation.php | $arr |
network_to_name | include/contact_selectors.php | $nets |
notifier_end | include/notifier.php | $target_item |
notifier_hub | include/notifier.php | $narr |
notifier_normal | include/deliver_hooks.php | $r[0] |
obj_verbs | include/taxonomy.php | $arr |
oembed_probe | include/oembed.php | $x |
page_content_top | index.php | $a->page[content] |
page_end | index.php | $a->page[content] |
page_header | include/nav.php | $a->page[nav] |
parse_atom | include/items.php | $arr |
parse_link | mod/linkinfo.php | $arr |
pdl_selector | include/comanche.php | $arr |
perm_is_allowed | include/permissions.php | $arr |
permissions_create | include/notifier.php | $perm_update |
permissions_update | include/notifier.php | $perm_update |
personal_xrd | mod/xrd.php | $arr |
photo_post_end | include/photos.php | $ret |
photo_post_end | include/photos.php | $ret |
photo_upload_begin | include/attach.php | $arr |
photo_upload_begin | include/photos.php | $args |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/attach.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_end | include/photos.php | $ret |
photo_upload_file | include/attach.php | $f |
photo_upload_file | include/photos.php | $f |
photo_upload_form | mod/photos.php | $ret |
poke_verbs | include/text.php | $arr |
post_local | include/zot.php | $arr |
post_local | include/items.php | $arr |
post_local | mod/item.php | $datarray |
post_local_end | include/items.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | include/attach.php | $arr |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | extend/addon/matrix/randpost/randpost.php | $x |
post_local_end | mod/mood.php | $arr |
post_local_end | mod/like.php | $arr |
post_local_end | mod/item.php | $datarray |
post_local_end | mod/subthread.php | $arr |
post_local_start | mod/item.php | $_REQUEST |
post_mail | include/items.php | $arr |
post_mail_end | include/items.php | $arr |
post_remote | include/items.php | $arr |
post_remote_end | include/items.php | $arr |
post_remote_update | include/items.php | $arr |
post_remote_update_end | include/items.php | $arr |
prepare_body | include/text.php | $prep_arr |
prepare_body_final | include/text.php | $prep_arr |
prepare_body_init | include/text.php | $item |
probe_well_known | include/probe.php | $ret |
proc_run | boot.php | $arr |
process_channel_sync_delivery | include/zot.php | $addon |
profile_advanced | mod/profile.php | $o |
profile_edit | mod/profiles.php | $arr |
profile_photo_content_end | mod/profile_photo.php | $o |
profile_post | mod/profiles.php | $_POST |
profile_sidebar | include/channel.php | $arr |
profile_sidebar_enter | include/channel.php | $profile |
profile_tabs | include/conversation.php | $arr |
register_account | include/account.php | $result |
render_location | include/conversation.php | $locate |
replace_macros | include/text.php | $arr |
reverse_magic_auth | mod/rmagic.php | $arr |
settings_account | mod/settings.php | $_POST |
settings_form | mod/settings.php | $o |
settings_post | mod/settings.php | $_POST |
sexpref_selector | include/profile_selectors.php | $select |
sexpref_selector_min | include/profile_selectors.php | $select |
smilie | include/text.php | $params |
smilie | extend/addon/matrix/smileybutton/smileybutton.php | $params |
tagged | include/items.php | $arr |
validate_channelname | include/channel.php | $arr |
webfinger | mod/wfinger.php | $arr |
well_known | mod/_well_known.php | $arr |
zid | include/channel.php | $arr |
zid_init | include/channel.php | $arr |
zot_finger | include/zot.php | $ret |
Generated Tue Nov 03 21:19:02 PST 2015