]> git.mxchange.org Git - friendica.git/commitdiff
Rename hook to "prepare_body_content_filter"
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 01:56:42 +0000 (21:56 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 03:08:48 +0000 (23:08 -0400)
doc/Addons.md
doc/de/Addons.md
include/text.php

index 756ded800a8f9fd03ada08e2cf73e868658431c0..4df91864bc1392adbea93b983c605f0dcc2961e9 100644 (file)
@@ -295,7 +295,7 @@ Called at the start of prepare_body
 Hook data:
     'item' => item array (input/output)
 
-### 'content_filter'
+### 'prepare_body_content_filter'
 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:
@@ -353,7 +353,7 @@ include/security.php:       Addon::callHooks('logged_in', $a->user);
 include/text.php:      Addon::callHooks('contact_block_end', $arr);
 include/text.php:      Addon::callHooks('poke_verbs', $arr);
 include/text.php:      Addon::callHooks('prepare_body_init', $item);
-include/text.php:      Addon::callHooks('content_filter', $hook_data);
+include/text.php:      Addon::callHooks('prepare_body_content_filter', $hook_data);
 include/text.php:      Addon::callHooks('prepare_body', $hook_data);
 include/text.php:      Addon::callHooks('prepare_body_final', $hook_data);
 
index 4e4beefaded404911dcc3b1901fb419b3d076698..7651840f4113c06e7dc2c3e8ab9cf07e83e5ea48 100644 (file)
@@ -223,7 +223,7 @@ include/security.php:       Addon::callHooks('logged_in', $a->user);
 include/text.php:      Addon::callHooks('contact_block_end', $arr);
 include/text.php:      Addon::callHooks('poke_verbs', $arr);
 include/text.php:      Addon::callHooks('prepare_body_init', $item);
-include/text.php:      Addon::callHooks('content_filter', $hook_data);
+include/text.php:      Addon::callHooks('prepare_body_content_filter', $hook_data);
 include/text.php:      Addon::callHooks('prepare_body', $hook_data);
 include/text.php:      Addon::callHooks('prepare_body_final', $hook_data);
 
index b1a9f70d02d5f55a80cfe4f956f8457cdd888039..8a6fd003129456c944117c42a9c9799c09458196 100644 (file)
@@ -1214,7 +1214,7 @@ function put_item_in_cache(&$item, $update = false)
  * @param boolean $is_preview
  * @return string item body html
  * @hook prepare_body_init item array before any work
- * @hook content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
+ * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
  * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
  * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
  */
@@ -1279,7 +1279,7 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
                        'item' => $item,
                        'filter_reasons' => $filter_reasons
                ];
-               Addon::callHooks('content_filter', $hook_data);
+               Addon::callHooks('prepare_body_content_filter', $hook_data);
                $filter_reasons = $hook_data['filter_reasons'];
                unset($hook_data);
        }