false, 'sourceContent' => $this->_getTemplateContent() ); } protected function _getTemplateContent() { $content = array(); $content[] = '
'; $content[] = ' « Back to ' . $this->_pluralModuleName . ''; $content[] = ' {if $item->image}'; $content[] = ' {html_image_fs'; $content[] = ' class = "list_fullimg"'; $content[] = ' name = $item->image'; $content[] = ' width = $item->config.image.width'; $content[] = ' height = $item->config.image.height'; $content[] = ' method = $item->config.image.resizeMethod'; $content[] = ' alt = $item->title'; $content[] = ' title = $item->title'; $content[] = ' }'; $content[] = ' {/if}'; $content[] = '

{$item->title|htmlspecialchars}

'; $content[] = '
'; return implode(self::LINE_FEED, $content); } }