You are here

twitter-pull-listing.tpl.php in Twitter Pull 6.2

Theme template for a list of tweets.

Available variables in the theme include:

1) An array of $tweets, where each tweet object has: $tweet->id $tweet->username $tweet->userphoto $tweet->text $tweet->timestamp

2) $twitkey string containing initial keyword.

3) $title

File

twitter-pull-listing.tpl.php
View source
<?php

/**
 * @file
 * Theme template for a list of tweets.
 *
 * Available variables in the theme include:
 *
 * 1) An array of $tweets, where each tweet object has:
 *   $tweet->id
 *   $tweet->username
 *   $tweet->userphoto
 *   $tweet->text
 *   $tweet->timestamp
 *
 * 2) $twitkey string containing initial keyword.
 *
 * 3) $title
 *
 */
?>
<div class="tweets-pulled-listing">

  <?php

if (!empty($title)) {
  ?>
    <h2><?php

  print $title;
  ?></h2>
  <?php

}
?>

  <?php

if (is_array($tweets)) {
  ?>
    <?php

  $tweet_count = count($tweets);
  ?>

    <ul class="tweets-pulled-listing">
    <?php

  foreach ($tweets as $tweet_key => $tweet) {
    ?>
      <li>
        <div class="tweet-authorphoto"><img src="<?php

    print $tweet->userphoto;
    ?>" alt="<?php

    print $tweet->username;
    ?>" /></div>
        <span class="tweet-author"><?php

    print l($tweet->username, 'http://twitter.com/' . $tweet->screenname);
    ?></span>
        <span class="tweet-text"><?php

    print twitter_pull_add_links($tweet->text);
    ?></span>
        <div class="tweet-time"><?php

    print l($tweet->time_ago, 'http://twitter.com/' . $tweet->screenname . '/status/' . $tweet->id);
    ?></div>

        <?php

    if ($tweet_key < $tweet_count - 1) {
      ?>
          <div class="tweet-divider"></div>
        <?php

    }
    ?>

      </li>
    <?php

  }
  ?>
    </ul>
  <?php

}
?>
</div>