示例#1
0
<?php

require_once 'inc/Tweetgater/Display.php';
Tweetgater_Display::feed();
示例#2
0
<?php

require_once 'inc/Tweetgater/Display.php';
$page = 1;
if (isset($_GET['page'])) {
    $page = (int) $_GET['page'];
}
?>
<html>
<head>
    <title>My Organization's Tweets</title>
    <link href="public/css/base.css" rel="stylesheet"/>
</head>
<body>
    <h2 class="tweetHeader">My Organization's Tweets</h2> 
    <?php 
echo Tweetgater_Display::timeline($page);
?>
</body>
</html>
示例#3
0
<?php

require_once 'inc/Tweetgater/Display.php';
?>
<html>
<head>
    <title>My Organization's TwitPics</title>
    <link href="public/css/base.css" rel="stylesheet"/>
</head>
<body>
    <?php 
echo Tweetgater_Display::twitpic(10, 'mini');
?>
</body>
</html>
示例#4
0
<?php

require_once 'inc/Tweetgater/Display.php';
$page = 1;
if (isset($_GET['page'])) {
    $page = (int) $_GET['page'];
}
?>
<html>
<head>
    <title>Tweets about My Organization</title>
    <link href="public/css/base.css" rel="stylesheet"/>
</head>
<body>
    <?php 
echo Tweetgater_Display::search('ncstate', $page);
?>
</body>
</html>
示例#5
0
<?php

require_once 'inc/Tweetgater/Display.php';
?>
<html>
<head>
    <title>My Organization's Tweeple</title>
    <link href="public/css/base.css" rel="stylesheet"/>
</head>
<body>
    <?php 
echo Tweetgater_Display::accounts();
?>
</body>
</html>