insert_comment_insert_array
Hook Added in Version:
EE 1.5.0
Hook File Location:
mod.comment.php
Hook Description:
Modify any of the soon to be inserted values for a new comment
Hook Parameters
- $data - Array of the data for the new comment
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['insert_comment_insert_array']))
{
$data = $EXT->call_extension('insert_comment_insert_array', $data);
if ($EXT->end_script === TRUE) return $edata;
}
