Your IP : 216.73.216.50


Current Path : /proc/1908984/root/proc/self/root/proc/self/root/proc/2411249/cwd/
Upload File :
Current File : //proc/1908984/root/proc/self/root/proc/self/root/proc/2411249/cwd/carousel_item.tar

config.php000064400000002210152434113550006520 0ustar00<?php 

/**
* @package   Shortcode Ultimate
* @author    BdThemes http://www.bdthemes.com
* @copyright Copyright (C) BdThemes Ltd
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

defined( '_JEXEC' ) or die( 'Restricted access' );

class Su_Shortcode_carousel_item_config extends Su_Data {

    function __construct() {
        parent::__construct();
    }
    static function get_config() {

       return array(
            'name'     => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CAROUSEL_ITEM'),
            'type'     => 'wrap',
            'group'    => 'extra gallery',
            'desc'     => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CAROUSEL_ITEM_DESC'),
            'icon'     => 'desktop',
            'atts'     => array(
                'class' => array(
                    'default' => '',
                    'name'    => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CLASS'),
                    'desc'    => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CLASS_DESC')
                )
            ),
            'content' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CONTENT_DEFAULT')
        );
    }

}
index.html000064400000000032152434113620006535 0ustar00<html><body></body></html>shortcode.php000064400000001350152434113670007254 0ustar00<?php 

/**
* @package   Shortcode Ultimate
* @author    BdThemes http://www.bdthemes.com
* @copyright Copyright (C) BdThemes Ltd
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

defined( '_JEXEC' ) or die( 'Restricted access' );

class Su_Shortcode_carousel_item extends Su_Shortcodes {

    function __construct() {
        parent::__construct();
    }

  
    public static function carousel_item($atts = null, $content = null) {
        $atts = su_shortcode_atts(array(
            'class' => ''
                ), $atts, 'carousel_item');
        return '<div class="su-custom-carousel-item su-clearfix su-custom-carousel-wrap' . su_ecssc($atts) . '">' . su_do_shortcode($content) . '</div>';
    }
}