aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_contents/twitter.php
blob: f9b6f5d5451bafd1a8a75f85b95a669748737e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Elgg twitter view page
 */

$twitter_username = $vars['entity']->twitter;

// if the twitter username is empty, then do not show
if($twitter_username){
?>
<div id="profile_content">
	<ul id="twitter_update_list"></ul>
	<p class="visit_twitter"><a href="http://twitter.com/<?php echo $twitter_username; ?>" target="_blank"><?php echo elgg_echo("twitter:visit"); ?></a></p>
	<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
	<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/<?php echo $twitter_username; ?>.json?callback=twitterCallback2&count=10"></script>
</div>

<?php
}