| Current Path : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/qrcode/ |
| Current File : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/qrcode/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_qrcode_config extends Su_Data {
function __construct() {
parent::__construct();
}
static function get_config() {
return array(
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE'),
'type' => 'single',
'group' => 'content',
'atts' => array(
'data' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_DATA'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_DATA_DESC')
),
'title' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_TITLE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_TITLE_DESC')
),
'size' => array(
'type' => 'slider',
'min' => 10,
'max' => 1000,
'step' => 10,
'default' => 200,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SIZE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_SIZE_DESC')
),
'margin' => array(
'type' => 'slider',
'min' => 0,
'max' => 50,
'step' => 5,
'default' => 0,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_MARGIN'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QUCODE_MARGIN_DESC')
),
'align' => array(
'type' => 'select',
'values' => array(
'none' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_NONE'),
'left' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LEFT'),
'center' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CENTER'),
'right' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_RIGHT'),
),
'default' => 'none',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ALIGN'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ALIGN_DESC')
),
'link' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LINK'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_LINK_DESC'),
'child' => array(
'target' => array(
'type' => 'select',
'values' => array(
'self' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SELF'),
'blank' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_BLANK'),
),
'default' => 'blank',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_TARGET'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_TARGET_DESC')
)
)
),
'color' => array(
'type' => 'color',
'default' => '#000000',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CODE_COLOR'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CODE_COLOR_DESC'),
'child' => array(
'background' => array(
'type' => 'color',
'default' => '#ffffff',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_BACKGROUND'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_BACKGROUND_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')
)
),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_QR_CODE_DESC'),
'icon' => 'qrcode'
);
}
}