Current Path :
/
home
/
develito
/
www
/
components
/
com_tlpteam
/
views
/
team
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/components/com_tlpteam/views/team/tmpl/default.php
<?php /** * @version 2.0 * @package com_tlpteam * @copyright Copyright (C) 2013. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @author TechLabPro <techlabpro@gmail.com> - http://www.techlabpro.com */ // no direct access defined('_JEXEC') or die; $app = JFactory::getApplication(); $input = $app ->input; $tlpteam_params = JComponentHelper::getParams('com_tlpteam'); $image_storiage_path = $tlpteam_params->get('image_path','images/tlpteam'); $image_storiage_folder = JPATH_ROOT.'/'. $image_storiage_path.'/'; $image_grid = $tlpteam_params->get('detailpage_image_grid'); $content_grid = 12-$image_grid; $image_grid = 'rt-col-lg-'.$image_grid . ' rt-col-md-'.$image_grid . ' rt-col-sm-6 rt-col-xs-12'; $content_grid = 'rt-col-lg-'.$content_grid . ' rt-col-md-'.$content_grid . ' rt-col-sm-6 rt-col-xs-12'; ?> <?php if ($this->item) : ?> <div class="container-fluid"> <div class="team-detail"> <div class="rt-row"> <div class="<?php echo $image_grid;?>"> <div class="image-area"> <?php if (!empty($this->item->profile_image)){ ?> <img src="<?php echo JUri::base().$image_storiage_path.'/l_'.$this->item->profile_image;?>" /></a> <?php }else{ ?> <?php }?> <div class="tlp-team-social"> <ul> <?php if($this->item->facebook!=''){?><li ><a class="tlp-facebook-icon" href="<?php echo $this->item->facebook;?>" target="_new">facebook </a></li><?php }?> <?php if($this->item->twitter!=''){?><li ><a class="tlp-twitter-icon" href="<?php echo $this->item->twitter;?>" target="_new">twitter</a></li><?php }?> <?php if($this->item->googleplus!=''){?><li ><a class="tlp-googleplus-icon" href="<?php echo $this->item->googleplus;?>" target="_new">googleplus </a></li><?php }?> <?php if($this->item->linkedin!=''){?><li ><a class="tlp-linkedin-icon" href="<?php echo $this->item->linkedin;?>" target="_new">linkedin</a></li><?php }?> </ul> </div> </div> </div> <div class="<?php echo $content_grid;?>"> <div class="profile-area"> <h3><?php echo $this->item->name; ?></h3> <h4><?php echo $this->item->position; ?></h4> <?php if($this->item->email!=''){?><div class="tlp-email-icon"><a href="mailto:<?php echo $this->item->email; ?>"><?php echo $this->item->email; ?></a></div><?php }?> <?php if($this->item->web!=''){?><div class="tlp-web-icon"><a href="<?php echo $this->item->web; ?>" target="_new"><?php echo $this->item->web; ?></a></div><?php }?> <?php if($this->item->phone!=''){?><div class="tlp-tel-icon"><a href="tell:<?php echo $this->item->phone; ?>"><?php echo $this->item->phone; ?></a></div><?php }?> <?php echo $this->item->detail_bio; ?> </div> </div> </div> </div> </div> <?php else: echo JText::_('COM_TLPTEAM_ITEM_NOT_LOADED'); endif; ?>