| Current Path : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/content_slide/ |
| Current File : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/content_slide/config.php |
<?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')
);
}
}