Extension Hooks

gallery_parse_entries_template

Hook Added in Version:

EE 1.4.2

Hook File Location:

mod.gallery.php

Hook Description:

Allows parsing of contents in template variable (if columns approach, each entry)

Hook Parameters

  • $row - Entry data
  • $template - Current contents of template variable

Hook Returns Data?

Yes

Appearance of Hook in the Code

if (isset($EXT->extensions['gallery_parse_entries_template']))
{
 $template = $EXT->call_extension('gallery_parse_entries_template', $row, $template);
}