| Current Path : /home/azimutno/www/demo/plugins/nextendslideritem/iframe/ |
| Current File : /home/azimutno/www/demo/plugins/nextendslideritem/iframe/iframe.php |
<?php
/*
# author Roland Soos
# copyright Copyright (C) Nextendweb.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-3.0.txt GNU/GPL
*/
defined('_JEXEC') or die('Restricted access'); ?><?php
nextendimportsmartslider2('nextend.smartslider.plugin.slideritem');
class plgNextendSliderItemiframe extends plgNextendSliderItemAbstract {
var $_identifier = 'iframe';
var $_title = 'iframe';
function getTemplate(){
return '<iframe frameborder="0" width="{width}" height="{height}" src="{url}" scrolling="{scroll}" data-click="{onmouseclick}" data-enter="{onmouseenter}" data-leave="{onmouseleave}" ></iframe>';
}
function getValues(){
return array(
'url' => 'about:blank',
'width' => '100%',
'height' => '100%',
'scroll' => 'yes',
'onmouseclick' => '',
'onmouseenter' => '',
'onmouseleave' => ''
);
}
function getPath(){
return dirname(__FILE__).DIRECTORY_SEPARATOR.$this->_identifier.DIRECTORY_SEPARATOR;
}
}
NextendPlugin::addPlugin('nextendslideritem', 'plgNextendSliderItemiframe');