Extension Hooks

comment_form_end

Hook Added in Version:

EE 1.5.2

Hook File Location:

mod.comment.php

Hook Description:

Modify, add, etc. something to the comment form at end of processing

Hook Parameters

  • $res = The current tag data for the form

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['comment_form_end']))
{
 $res = $EXT->call_extension('comment_form_end', $res);
 if ($EXT->end_script === TRUE) return $res;
}