<?php /** * @package atomix * @subpackage mod_atom_facebook_likebox * @author - Thomas Andrew Erickson * @copyright - Copyright (C) 2012 - 2014 Atomix Studios, Inc. All rights reserved. * @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL * Websites: www.atomixstudios.com * Technical Support: www.atomixstudios.com/support.html */ defined('_JEXEC') or die('Restricted Access'); $likeboxurl = $params->get('likeboxurl'); $display_method = $params->get('display_method'); $width = $params->get('width'); $height = $params->get('height'); $header = $params->get('header'); $show_faces = $params->get('show_faces'); $show_stream = $params->get('show_stream'); $moduleclass_sfx = $params->get('moduleclass_sfx'); ?> <div class="atom_facebook_likebox <?php echo $moduleclass_sfx; ?>" style="width:<?php echo $width; ?>px;"> <?php ModAtomFacebookLikeBox::display_facebook_likebox_html5($likeboxurl, $width, $height, $header, $show_faces, $show_stream); ?> </div>