Extension Hooks

edit_entries_modify_tablerow

Hook Added in Version:

1.4.0

Hook File Location:

cp.publish.php

Hook Description:

Allows modifying or rewrite of entry row in Edit section.

Hook Parameters

  • $tr - The HTML for the current entry's row in the table

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['edit_entries_modify_tablerow']))
{
 $r .= $EXT->call_extension('edit_entries_modify_tablerow', $tr);
 if ($EXT->end_script === TRUE) return;
}
else
{
 $r .= $tr;
}