t['display_category'] == 0) {
echo Text::_('COM_PHOCAGALLERY_CATEGORY was not selected in parameters');
} else {
echo '
'. "\n";
// Heading
$heading = '';
if ($this->params->get( 'page_title' ) != '') {
$heading .= $this->params->get( 'page_title' );
}
if ( $this->t['displaycatnametitle'] == 1) {
if ($this->category->title != '') {
if ($heading != '') {
$heading .= ' - ';
}
$heading .= $this->category->title;
}
}
// Pagetitle
if ($this->t['showpageheading'] != 0) {
if ( $heading != '') {
echo '
'. $this->escape($heading) . '
';
}
}
// Category Description
if ( $this->category->description != '' ) {
echo '
';
echo $this->category->description.'
'. "\n";
}
?>
';
echo PhocaGalleryUtils::getExtInfo();
echo '';
?>