This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/twitter_soc/theme.php

26 lines
586 B
PHP
Raw Normal View History

2012-01-16 01:35:36 +00:00
<?php
class TwitterSocTheme extends Themelet {
/*
* Show $text on the $page
*/
2012-02-10 04:04:37 +00:00
public function display_feed(Page $page, /*string*/ $username) {
2012-01-16 01:35:36 +00:00
$page->add_block(new Block("Tweets", '
<div class="tweet_soc"></div>
<p><a href="http://twitter.com/'.url_escape($username).'">Follow us on Twitter</a>
<script type="text/javascript">
$(function() {
$(".tweet_soc").tweet({
username: "'.html_escape($username).'",
join_text: "auto",
template: "{text} -- {time}",
count: 6,
loading_text: "loading tweets..."
});
});
</script>
', "left", 25));
}
}
?>