| Current Path : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/row/ |
| Current File : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/row/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_row_config extends Su_Data {
function __construct() {
parent::__construct();
}
static function get_config() {
return array(
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ROW'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ROW_DESC'),
'icon' => 'columns',
'type' => 'wrap',
'group' => 'box',
'content' => sprintf('%s',"\n\n\t[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n\t[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n\t[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"),
'atts' => array(
'gutter' => array(
'type' => 'select',
'values' => array(
'default' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DEFAULT'),
'large' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LARGE'),
'small' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SMALL'),
'no' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_NO')
),
'default' => 'default',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_GUTTER'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_GUTTER_DESC')
),
'divider' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DIVIDER'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DIVIDER_DESC'),
'child' => array(
'equal_height' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_EQUAL_HEIGHT'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_EQUAL_HEIGHT_DESC')
),
'column_margin_small' => array(
'type' => 'bool',
'default' => 'yes',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_COLUMN_MARGIN_SMALL'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_COLUMN_MARGIN_SMALL_DESC')
)
)
),
'scroll_reveal' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SCROLL_REVEAL'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SCROLL_REVEAL_DESC')
),
'class' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CLASS'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CLASS_DESC')
)
)
);
}
}