PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/afmediosc/modules/mod_jatwitter/tmpl/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/afmediosc/modules/mod_jatwitter/tmpl/default.php |
<?php
/*
# ------------------------------------------------------------------------
# JA Twitter module for joomla 1.5
# ------------------------------------------------------------------------
# Copyright (C) 2004-2010 JoomlArt.com. All Rights Reserved.
# @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
# Author: JoomlArt.com
# Websites: http://www.joomlart.com - http://www.joomlancers.com.
# ------------------------------------------------------------------------
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
$show_list_tweet = $params->get ( 'show_tweet','1' );
?>
<div class="ja-twitter">
<?php if( $params->get('showtextheading') ) : ?>
<h4><?php echo $params->get('headingtext'); ?></h4>
<?php endif; ?>
<!-- ACCOUNT INFOMATION -->
<?php if( $useDisplayAccount && !empty($accountInfo)): ?>
<div class="ja-twitter-account">
<?php include( JModuleHelper::getLayoutPath( 'mod_jatwitter', 'screen_name') ); ?>
</div>
<?php endif; ?>
<!-- // ACCOUNT INFOMATION -->
<!-- LISTING TWEETS -->
<?php if( is_array($list) && !empty($list) ) : ?>
<div class="ja-twitter-tweets">
<?php foreach( $list as $item ) : ?>
<div class="ja-twitter-item clearfix">
<?php if( $showIcon ) : ?>
<div class="ja-twitter-image">
<a href="http://twitter.com/<?php echo $item->screen_name; ?>" target="_blank">
<img src="<?php echo $item->profile_image_url; ?>" width="<?php echo $iconsize; ?>" alt="<?php echo $item->name; ?>" class="ja-twitter-avatar" />
</a>
</div>
<?php endif ; ?>
<?php if( $show_list_tweet == '1') : ?>
<span class="ja-twitter-bubble-arrow"> </span>
<div class="ja-twwitter-desc">
<?php if( $showSource ) : ?>
<div class="ja-twitter-source">
<?php echo JText::_( 'FROM' ); ?> <span><?php echo $item->source; ?></span>
</div>
<?php endif ; ?>
<div class="ja-twitter-text">
<?php if( $showUsername ) : ?>
<a href="http://twitter.com/<?php echo $item->screen_name; ?>" target="_blank"><?php echo $item->name; ?></a>
<?php endif ; ?>
<?php echo $jatHelper->convert( $item->text ); ?>
</div>
<div class="ja-twitter-date" style="">
<?php echo $jatHelper->getDate( $item->created_at ); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>
<!-- //LISTING TWEETS -->
<!-- LISTING FRIENDS -->
<?php if ( $useFriends && isset($friends) && is_array($friends) ): ?>
<div class="ja-twitter-friends clearfix">
<h4><?php echo JText::_( 'MY FRIENDS' ); ?></h4>
<?php foreach( $friends as $friend ) : ?>
<?php if(!empty($friend)):?>
<a href="http://twitter.com/<?php echo $friend->screen_name; ?>" title="<?php echo $friend->name; ?>" target="_blank">
<img width="<?php echo $sizeIconfriend; ?>" alt="<?php echo $friend->name; ?>" src="<?php echo $friend->profile_image_url; ?>" />
</a>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php endif; ?>
<!-- //LISTING FRIENDS -->
<?php if ( $showfollowlink == "1" ){
echo $jatHelper->getFollowButton($params);
} ?>
</div>