mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
remove references
This commit is contained in:
parent
f9f2c9e4b2
commit
b8b1b1c1b3
3 changed files with 34 additions and 21 deletions
|
@ -83,7 +83,6 @@
|
|||
"include/dba.php",
|
||||
"include/enotify.php",
|
||||
"include/items.php",
|
||||
"include/text.php",
|
||||
"boot.php"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -503,16 +503,6 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
|
|||
Hook::callAll('item_photo_menu', $args);
|
||||
Hook::callAll('jot_tool', $jotplugins);
|
||||
|
||||
### 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);
|
||||
|
||||
### include/items.php
|
||||
|
||||
Hook::callAll('page_info_data', $data);
|
||||
|
@ -649,6 +639,11 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
|
|||
Hook::callAll('post_remote_end', $posted_item);
|
||||
Hook::callAll('tagged', $arr);
|
||||
Hook::callAll('post_local_end', $new_item);
|
||||
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);
|
||||
|
||||
### src/Model/Contact.php
|
||||
|
||||
|
@ -673,6 +668,10 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
|
|||
Hook::callAll('register_account', $uid);
|
||||
Hook::callAll('remove_user', $user);
|
||||
|
||||
### src/Content/ContactBlock.php
|
||||
|
||||
Hook::callAll('contact_block_end', $arr);
|
||||
|
||||
### src/Content/Text/BBCode.php
|
||||
|
||||
Hook::callAll('bbcode', $text);
|
||||
|
@ -746,6 +745,10 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
|
|||
|
||||
self::callSingle(self::getApp(), 'hook_fork', $fork_hook, $hookdata);
|
||||
|
||||
### src/Core/L10n/L10n.php
|
||||
|
||||
Hook::callAll('poke_verbs', $arr);
|
||||
|
||||
### src/Core/Worker.php
|
||||
|
||||
Hook::callAll("proc_run", $arr);
|
||||
|
|
|
@ -226,16 +226,6 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
|||
Hook::callAll('item_photo_menu', $args);
|
||||
Hook::callAll('jot_tool', $jotplugins);
|
||||
|
||||
### 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);
|
||||
|
||||
### include/items.php
|
||||
|
||||
Hook::callAll('page_info_data', $data);
|
||||
|
@ -365,6 +355,11 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
|||
Hook::callAll('post_remote_end', $posted_item);
|
||||
Hook::callAll('tagged', $arr);
|
||||
Hook::callAll('post_local_end', $new_item);
|
||||
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);
|
||||
|
||||
### src/Model/Contact.php
|
||||
|
||||
|
@ -388,6 +383,10 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
|||
Hook::callAll('register_account', $uid);
|
||||
Hook::callAll('remove_user', $user);
|
||||
|
||||
### src/Content/ContactBlock.php
|
||||
|
||||
Hook::callAll('contact_block_end', $arr);
|
||||
|
||||
### src/Content/Text/BBCode.php
|
||||
|
||||
Hook::callAll('bbcode', $text);
|
||||
|
@ -457,6 +456,18 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
|||
Hook::callAll($a->module.'_post_'.$selname, $o);
|
||||
Hook::callAll('jot_networks', $jotnets);
|
||||
|
||||
### src/Core/Authentication.php
|
||||
|
||||
Hook::callAll('logged_in', $a->user);
|
||||
|
||||
### src/Core/Hook.php
|
||||
|
||||
self::callSingle(self::getApp(), 'hook_fork', $fork_hook, $hookdata);
|
||||
|
||||
### src/Core/L10n/L10n.php
|
||||
|
||||
Hook::callAll('poke_verbs', $arr);
|
||||
|
||||
### src/Core/Worker.php
|
||||
|
||||
Hook::callAll("proc_run", $arr);
|
||||
|
|
Loading…
Reference in a new issue