You are here

twitter.tpl.php in Social Feed 7.2

Same filename and directory in other branches
  1. 7 templates/twitter.tpl.php

This template handles the layout of Social Feed twitter block.

Variables available:

  • $twitter_tweet: An array of the Twitter tweets.
  • $twitter_tweet['full_username']: Use this to print full_username of the

Twitter with base url.

  • $twitter_tweet['username']: Use this to print username of the Twitter.
  • $twitter_tweet['extra_links']: Use this to print hash tags.
  • $twitter_tweet['tweet']: Use this to print tweet.
  • $twitter_tweet['twitter_date']: Use this to print tweet date.

File

templates/twitter.tpl.php
View source
<?php

/**
 * @file
 * This template handles the layout of Social Feed twitter block.
 *
 * Variables available:
 * - $twitter_tweet: An array of the Twitter tweets.
 * - $twitter_tweet['full_username']: Use this to print full_username of the
 * Twitter with base url.
 * - $twitter_tweet['username']: Use this to print username of the Twitter.
 * - $twitter_tweet['extra_links']: Use this to print hash tags.
 * - $twitter_tweet['tweet']: Use this to print tweet.
 * - $twitter_tweet['twitter_date']: Use this to print tweet date.
 */
?>
<ul>
  <?php

if (isset($twitter)) {
  ?>
    <?php

  foreach ($twitter as $twitter_tweet) {
    ?>
      <li>
        <a class="tw-username"
           href="<?php

    echo $twitter_tweet['full_username'];
    ?>"><span>@</span><?php

    echo $twitter_tweet['username'];
    ?>
        </a>
        <?php

    if (array_key_exists('extra_links', $twitter_tweet)) {
      foreach ($twitter_tweet['extra_links'] as $extra_link) {
        ?>
          <a class="tw-links"
             href="<?php

        echo $extra_link;
        ?>"><?php

        echo $extra_link;
        ?></a>
          <br/>
        <?php

      }
    }
    ?>
        <div class="tw-tweet"><?php

    echo $twitter_tweet['tweet'];
    ?></div>
        <?php

    if (isset($twitter_tweet['twitter_date']) && !empty($twitter_tweet['twitter_date'])) {
      ?>
          <div
            class="tw-date"><?php

      print $twitter_tweet['twitter_date'];
      ?></div>
        <?php

    }
    if (isset($twitter_tweet['tweet_url']) && !empty($twitter_tweet['tweet_url'])) {
      ?>
          <?php

      print $twitter_tweet['tweet_url'];
      ?>
        <?php

    }
    ?>
      </li>
    <?php

  }
  ?>
  <?php

}
?>
</ul>