aboutsummaryrefslogtreecommitdiff
path: root/mod/twitter/views/default/widgets/twitter/content.php
blob: c616d944cfb6b0abcd0b8c2058056eca9cf5d028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

/**
 * Elgg twitter view page
 *
 * @package ElggTwitter
 */

//some required params

$username = $vars['entity']->twitter_username;
$num = $vars['entity']->twitter_num;

// if the twitter username is empty, then do not show
if ($username) {

?>

<div id="twitter_widget">
	<ul id="twitter_update_list"></ul>
	<p class="visit_twitter"><a href="http://twitter.com/<?php echo $username; ?>"><?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="https://api.twitter.com/1/statuses/user_timeline/<?php echo $username; ?>.json?callback=twitterCallback2&count=<?php echo $num; ?>"></script>
</div>

<?php
} else {

	echo "<p>" . elgg_echo("twitter:notset") . ".</p>";

}