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/content_slide.tar

config.php000064400000002345152434147770006544 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_content_slide_config extends Su_Data {

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

       return array(
            'name'     => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CONTENT_SLIDE'),
            'type'     => 'wrap',
            'group'    => 'extra gallery',
            'desc'     => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CONTENT_SLIDE_DESC'),
            'icon'     => 'desktop',
            'function' => array( 'Shortcodes_Ultimate_Extra_Shortcodes', 'content_slide' ),
            '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.html000064400000000032152434150040006532 0ustar00<html><body></body></html>shortcode.php000064400000001331152434150040007243 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_content_slide extends Su_Shortcodes {

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

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