diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2014-02-19 10:50:21 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2014-02-19 10:50:21 -0600 |
commit | 60de5e66de98c190c1d8168e1db38023d819fe81 (patch) | |
tree | 16b4a6490ba3f2a3091f8dda1bdd28054c658fad /phpBB/includes | |
parent | c30668b010a6ea3787cb64b3ac7c8b8decaa39dc (diff) | |
parent | 01bf27f78901aa50fb0a3d59b3e877b38829f3e8 (diff) | |
download | forums-60de5e66de98c190c1d8168e1db38023d819fe81.tar forums-60de5e66de98c190c1d8168e1db38023d819fe81.tar.gz forums-60de5e66de98c190c1d8168e1db38023d819fe81.tar.bz2 forums-60de5e66de98c190c1d8168e1db38023d819fe81.tar.xz forums-60de5e66de98c190c1d8168e1db38023d819fe81.zip |
Merge pull request #2030 from rxu/ticket/12190
Add core event "core.modify_submit_post_data"
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_posting.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 30ffbb55dc..8e9cc3a950 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1479,6 +1479,22 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u { global $db, $auth, $user, $config, $phpEx, $template, $phpbb_root_path, $phpbb_container, $phpbb_dispatcher; + /** + * Modify the data for post submitting + * + * @event core.modify_submit_post_data + * @var string mode Variable containing posting mode value + * @var string subject Variable containing post subject value + * @var string username Variable containing post author name + * @var int topic_type Variable containing topic type value + * @var array poll Array with the poll data for the post + * @var array data Array with the data for the post + * @var bool update_message Flag indicating if the post will be updated + * @var bool update_search_index Flag indicating if the search index will be updated + * @since 3.1.0-a4 + */ + extract($phpbb_dispatcher->trigger_event('core.modify_submit_post_data', compact(array('mode', 'subject', 'username', 'topic_type', 'poll', 'data', 'update_message', 'update_search_index')))); + // We do not handle erasing posts here if ($mode == 'delete') { |