Extension Hooks

gallery_cp_entry_form_add_row

Hook Added in Version:

EE 1.4.2

Hook File Location:

mcp.gallery.php

Hook Description:

Allows adding of new rows to the New Entry or Edit form

Hook Parameters

  • $entry_id - Entry ID of entry if one is being edited
  • $r - Current contents of page

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['gallery_cp_entry_form_add_row']))
{
 $r .= $EXT->call_extension('gallery_cp_entry_form_add_row', $entry_id, $r);
}