Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/components/com_phocagallery/views/categories/tmpl/ |
<?php
/*
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
*
* @component Phoca Gallery
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined('_JEXEC') or die('Restricted access');
echo '<div id="phocagallery" class="pg-categories-view'.$this->params->get( 'pageclass_sfx' ).' pg-csv">';
if ( $this->params->get( 'show_page_heading' ) ) {
echo '<div class="page-header"><h1>'. $this->escape($this->params->get('page_heading')) . '</h1></div>';
}
echo '<div id="pg-icons">';
echo PhocaGalleryRenderFront::renderFeedIcon('categories');
echo '</div>';
echo '<div class="ph-cb"></div>';
if ($this->t['categories_description'] != '') {
echo '<div class="pg-csv-desc" >'.Joomla\CMS\HTML\HTMLHelper::_('content.prepare', $this->t['categories_description']).'</div>';
}
// Obsolete methods
switch($this->t['display_image_categories']) {
case 0:
echo $this->loadTemplate('obs_catimgdetailtitleonly');
break;
case 2:
echo $this->loadTemplate('obs_catimgdetail');
break;
case 3:
echo $this->loadTemplate('obs_catimgdetailfloat');
break;
case 4:
echo $this->loadTemplate('obs_catimgdesc');
break;
case 5:
echo $this->loadTemplate('obs_custom');
break;
case 1:
default:
echo $this->loadTemplate('categories');
break;
}
echo $this->loadTemplate('pagination');
echo PhocaGalleryUtils::getExtInfo();
echo '</div>';