Current Path :
/
home
/
develito
/
httpdocs
/
components
/
com_abook
/
views
/
tags
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/httpdocs/components/com_abook/views/tags/tmpl/default.php
<?php /** * @package Joomla * @subpackage Abook * @copyright (C) 2010-2019 Federica Ugolotti * @license GNU/GPL, see LICENSE.php * Abook is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License 3 * as published by the Free Software Foundation. * Abook is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with Abook; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ // no direct access defined('_JEXEC') or die; $pageClass = $this->params->get('pageclass_sfx'); ?> <div class="contact-category<?php echo $pageClass;?>"> <?php if ($this->params->def('show_page_heading', 1)) : ?> <h1> <?php echo $this->params->get( 'page_heading', $this->params->def('comp_name'));?> </h1> <?php endif; ?> <?php if($this->params->get('show_category_title', 1) && $this->params->get('page_subheading')) : ?> <h2> <?php echo $this->escape($this->params->get('page_subheading')); ?> </h2> <?php endif; ?> <?php if ($this->params->get( 'breadcrumb', 2 )== 2) { ?> <div class="abook-path"> <?php echo JHTML::_('icon.breadcrumb', $this->path);?> </div> <div class="clr"></div> <?php } ?> <?php echo $this->loadTemplate('items'); ?> </div> <div class="clearfix"></div>