You are here

twitter-profile-widget.tpl.php in Twitter Profile Widget 6

Same filename and directory in other branches
  1. 7 twitter-profile-widget.tpl.php

Block content template for twitter widget

File

twitter-profile-widget.tpl.php
View source
<?php

/**
 * @file
 * Block content template for twitter widget
 *
 * @param $twitter_script
 *   A JavaScript with widget settings *
 * @param $external_js
 *   Boolean. Shows whether include external js or not *
 * @param $follow_us_enabled
 *   Boolean. Shows whether include follow us button or not *
 * @param $follow_us_link
 *   Link to follow
 */
?>
<div class = "twitter_profile_widget">

  <?php

if ($twitter_script) {
  ?>
    <?php

  if ($external_js) {
    ?>
      <script type="text/javascript" src="http://widgets.twimg.com/j/2/widget.js"></script>
    <?php

  }
  ?>
    <script type = "text/javascript"><?php

  print $twitter_script;
  ?></script>
  <?php

}
?>
  
  <?php

if ($follow_us_enabled) {
  ?>
    <div class = "twp_bottom">
      <?php

  print $follow_us_link;
  ?>
    </div>
  <?php

}
?>
  
</div>