| Current Path : /home/musicpassiondjs40/djandreidis/modules/mod_easy_fbembeddedvideos/ |
| Current File : /home/musicpassiondjs40/djandreidis/modules/mod_easy_fbembeddedvideos/mod_easy_fbembeddedvideos.php |
<?php
/**
* @package Easy Facebook Embedded Videos
* @version 1.0.1
* @author JoomBoost
* @website https://www.joomboost.com
* @copyright Copyright � 2012 - 2017 JoomBoost
* @license GNU/GPL http://www.gnu.org/copyleft/gpl.html
**/
defined('_JEXEC') or die;
$document = JFactory::getDocument();
$document->addStyleSheet(JURI::base(true) . "/modules/mod_easy_fbembeddedvideos/assets/css/style.css");
// Facebook Params
$bsv = $params->get('bsv',2);
$cols = $params->get('columns',1);
$language = $params->get('language','en_GB');
$items = (array) $params->get('manageitems','');
$span = 12/$cols;
if($bsv == 2){
$brow = "row-fluid";
$bspan= "span";
}else {
$brow = "row";
$bspan= "col-md-";
}
// load layout
require JModuleHelper::getLayoutPath('mod_easy_fbembeddedvideos', $params->get('layout', 'default'));