NexusLeads Webshell
NexusLeads


Server : LiteSpeed
System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64
User : alsaif ( 1057)
PHP Version : 7.4.33
Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Directory :  /home/alsaif/public_html/administrator/components/com_sppagebuilder/builder/settings/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alsaif/public_html/administrator/components/com_sppagebuilder/builder/settings/addon.php
<?php
/**
 * @package SP Page Builder
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2022 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
 */
//no direct accees
defined('_JEXEC') or die('Restricted access');

use Joomla\CMS\Language\Text;

$addon_global_settings = array(
	'style' => array(
		'global_options' => array(
			'type'  => 'separator',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_OPTIONS'),
		),
		'global_text_color' => array(
			'type'  => 'color',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
		),
		'global_link_color' => array(
			'type'  => 'color',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LINK_COLOR'),
		),
		'global_link_hover_color' => array(
			'type'  => 'color',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LINK_COLOR_HOVER'),
		),
		'global_background_type' => array(
			'type'   => 'buttons',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
			'std'    => 'none',
			'values' => array(
				array(
					'label' => 'None',
					'value' => 'none',
				),
				array(
					'label' => 'Color',
					'value' => 'color',
				),
				array(
					'label' => 'Image',
					'value' => 'image',
				),
				array(
					'label' => 'Gradient',
					'value' => 'gradient',
				),
			),
		),
		'global_background_color' => array(
			'type'    => 'color',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
			'depends' => array(
				array('global_background_type', '!=', 'none'),
				array('global_background_type', '!=', 'video'),
				array('global_background_type', '!=', 'gradient'),
			),
		),
		'global_background_gradient' => array(
			'type'  => 'gradient',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
			'std'   => array(
				"color"  => "#00c6fb",
				"color2" => "#005bea",
				"deg"    => "45",
				"type"   => "linear",
			),
			'depends' => array(
				array('global_background_type', '=', 'gradient'),
			),
		),
		'global_background_image' => array(
			'type'    => 'media',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_IMAGE'),
			'depends' => array(
				array('global_background_type', '=', 'image'),
			),
			'std' => array(
				'src' => '',
			),
		),
		'global_background_repeat' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT'),
			'values' => array(
				'no-repeat' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_NO_REPEAT'),
				'repeat'    => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_ALL'),
				'repeat-x'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_HORIZONTALLY'),
				'repeat-y'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_VERTICALLY'),
				'inherit'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_INHERIT'),
			),
			'std'     => 'no-repeat',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_background_image', '!=', ''),
			),
		),
		'global_background_size' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_SIZE'),
			'desc'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_SIZE_DESC'),
			'values' => array(
				'cover'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_SIZE_COVER'),
				'contain' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_SIZE_CONTAIN'),
				'inherit' => Text::_('COM_SPPAGEBUILDER_GLOBAL_INHERIT'),
			),
			'std'     => 'cover',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_background_image', '!=', ''),
			),
		),
		'global_background_attachment' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_ATTACHMENT'),
			'desc'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_ATTACHMENT_DESC'),
			'values' => array(
				'fixed'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_ATTACHMENT_FIXED'),
				'scroll'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_ATTACHMENT_SCROLL'),
				'inherit' => Text::_('COM_SPPAGEBUILDER_GLOBAL_INHERIT'),
			),
			'std'     => 'inherit',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_background_image', '!=', ''),
			),
		),
		'global_background_position' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_POSITION'),
			'values' => array(
				'0 0'       => Text::_('COM_SPPAGEBUILDER_LEFT_TOP'),
				'0 50%'     => Text::_('COM_SPPAGEBUILDER_LEFT_CENTER'),
				'0 100%'    => Text::_('COM_SPPAGEBUILDER_LEFT_BOTTOM'),
				'50% 0'     => Text::_('COM_SPPAGEBUILDER_CENTER_TOP'),
				'50% 50%'   => Text::_('COM_SPPAGEBUILDER_CENTER_CENTER'),
				'50% 100%'  => Text::_('COM_SPPAGEBUILDER_CENTER_BOTTOM'),
				'100% 0'    => Text::_('COM_SPPAGEBUILDER_RIGHT_TOP'),
				'100% 50%'  => Text::_('COM_SPPAGEBUILDER_RIGHT_CENTER'),
				'100% 100%' => Text::_('COM_SPPAGEBUILDER_RIGHT_BOTTOM'),
			),
			'std'     => '50% 50%',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_background_image', '!=', ''),
			),
		),
		'global_overlay_separator' => array(
			'type'    => 'separator',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_OVERLAY_OPTIONS'),
			'depends' => array(
				array('global_background_type', '=', 'image'),
			),
		),
		'global_use_overlay' => array(
			'type'    => 'checkbox',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OVERLAY'),
			'std'     => 0,
			'depends' => array(
				array('global_background_type', '=', 'image'),
			),
		),
		'global_overlay_type' => array(
			'type'   => 'buttons',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_CHOOSE'),
			'std'    => 'overlay_none',
			'values' => array(
				array(
					'label' => 'None',
					'value' => 'overlay_none',
				),
				array(
					'label' => 'Color',
					'value' => 'overlay_color',
				),
				array(
					'label' => 'Gradient',
					'value' => 'overlay_gradient',
				),
				array(
					'label' => 'Pattern',
					'value' => 'overlay_pattern',
				),
			),
			'depends' => array(
				array('global_use_overlay', '!=', 0),
			),
		),
		'global_background_overlay' => array(
			'type'    => 'color',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY'),
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_use_overlay', '=', 1),
				array('global_overlay_type', '=', 'overlay_color'),
			),
		),
		'global_gradient_overlay' => array(
			'type'  => 'gradient',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_GRADIENT'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_GRADIENT_DESC'),
			'std'   => array(
				"color"  => "rgba(127, 0, 255, 0.8)",
				"color2" => "rgba(225, 0, 255, 0.7)",
				"deg"    => "45",
				"type"   => "linear",
			),
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_use_overlay', '=', 1),
				array('global_overlay_type', '=', 'overlay_gradient'),
			),
		),
		'global_pattern_overlay' => array(
			'type'  => 'media',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_PATTERN'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_PATTERN_DESC'),
			'std'   => array(
				'src' => '',
			),
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_use_overlay', '=', 1),
				array('global_overlay_type', '=', 'overlay_pattern'),
			),
		),
		'global_overlay_pattern_color' => array(
			'type'    => 'color',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_PATTERN_COLOR'),
			'desc'    => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY_PATTERN_COLOR_DESC'),
			'std'     => '',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_use_overlay', '=', 1),
				array('global_overlay_type', '=', 'overlay_pattern'),
			),
		),
		'blend_mode' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BLEND_MODE'),
			'desc'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BLEND_MODE_DESC'),
			'values' => array(
				'normal'      => 'Normal',
				'color'       => 'Color',
				'color-burn'  => 'Color Burn',
				'color-dodge' => 'Color Dodge',
				'darken'      => 'Darken',
				'difference'  => 'Difference',
				'exclusion'   => 'Exclusion',
				'hard-light'  => 'Hard Light',
				'hue'         => 'Hue',
				'lighten'     => 'Lighten',
				'luminosity'  => 'Luminosity',
				'multiply'    => 'Multiply',
				'overlay'     => 'Overlay',
				'saturation'  => 'Saturation',
				'screen'      => 'Screen',
				'soft-light'  => 'Soft Light',
			),
			'std'     => 'normal',
			'depends' => array(
				array('global_background_type', '=', 'image'),
				array('global_use_overlay', '=', 1),
			),
		),

		'global_user_border' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_USE_BORDER'),
			'std'   => 0,
		),
		'global_border_width' => array(
			'type'       => 'slider',
			'title'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
			'std'        => '',
			'depends'    => array('global_user_border' => 1),
			'responsive' => true,
		),
		'global_border_color' => array(
			'type'    => 'color',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
			'depends' => array('global_user_border' => 1),
		),
		'global_boder_style' => array(
			'type'   => 'select',
			'title'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE'),
			'values' => array(
				'none'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_NONE'),
				'solid'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_SOLID'),
				'double' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DOUBLE'),
				'dotted' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DOTTED'),
				'dashed' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DASHED'),
			),
			'depends' => array('global_user_border' => 1),
		),
		'global_border_radius' => array(
			'type'       => 'slider',
			'title'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
			'std'        => 0,
			'max'        => 500,
			'responsive' => true,
		),
		'global_margin' => array(
			'type'       => 'margin',
			'title'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
			'std'        => array('md' => '0px 0px 30px 0px', 'sm' => '', 'xs' => ''),
			'responsive' => true,
		),
		'global_padding' => array(
			'type'       => 'padding',
			'title'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
			'std'        => '',
			'responsive' => true,
		),
		'global_boxshadow' => array(
			'type'  => 'boxshadow',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOXSHADOW'),
			'std'   => '0 0 0 0 #ffffff',
		),
		'global_use_animation' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_USE_ANIMATION'),
			'std'   => 0,
		),
		'global_animation' => array(
			'type'    => 'animation',
			'title'   => Text::_('COM_SPPAGEBUILDER_ANIMATION'),
			'desc'    => Text::_('COM_SPPAGEBUILDER_ANIMATION_DESC'),
			'depends' => array('global_use_animation' => 1),
		),

		'global_animationduration' => array(
			'type'        => 'number',
			'title'       => Text::_('COM_SPPAGEBUILDER_ANIMATION_DURATION'),
			'desc'        => Text::_('COM_SPPAGEBUILDER_ANIMATION_DURATION_DESC'),
			'std'         => '300',
			'placeholder' => '300',
			'depends'     => array('global_use_animation' => 1),
		),

		'global_animationdelay' => array(
			'type'        => 'number',
			'title'       => Text::_('COM_SPPAGEBUILDER_ANIMATION_DELAY'),
			'desc'        => Text::_('COM_SPPAGEBUILDER_ANIMATION_DELAY_DESC'),
			'std'         => '0',
			'placeholder' => '300',
			'depends'     => array('global_use_animation' => 1),
		),

		'global_custom_css' => array(
			'type'  => 'css',
			'title' => Text::_('COM_SPPAGEBUILDER_CUSTOM_CSS'),
			'std'   => '',
		),
	),

	'advanced' => array(
		'global_custom_position' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM_POSITION'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM_POSITION_DESC'),
			'std'   => 0,
		),
		'global_seclect_position' => array(
			'type'    => 'select',
			'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_SELECT_POSITION'),
			'desc'    => Text::_('COM_SPPAGEBUILDER_GLOBAL_SELECT_POSITION_DESC'),
			'depends' => array('global_custom_position' => 1),
			'values'  => array(
				'absolute' => Text::_('COM_SPPAGEBUILDER_GLOBAL_POSITION_ABSOLUTE'),
				'fixed'    => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_ATTACHMENT_FIXED'),
				'relative' => Text::_('COM_SPPAGEBUILDER_GLOBAL_POSITION_RELATIVE'),
			),
			'std' => 'relative',
		),
		'global_addon_position_left' => array(
			'type'    => 'slider',
			'title'   => Text::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FROM_LEFT'),
			'depends' => array(
				array('global_custom_position', '=', 1),
			),
			'unit'       => true,
			'max'        => 2000,
			'min'        => -2000,
			'responsive' => true,
			'std'        => array('unit' => 'px'),
		),
		'global_addon_position_top' => array(
			'type'    => 'slider',
			'title'   => Text::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FROM_TOP'),
			'depends' => array(
				array('global_custom_position', '=', 1),
			),
			'unit'       => true,
			'max'        => 1000,
			'min'        => -1000,
			'responsive' => true,
			'std'        => array('unit' => 'px'),
		),
		'global_addon_z_index' => array(
			'type'    => 'slider',
			'title'   => Text::_('COM_SPPAGEBUILDER_ADDON_ZINDEX'),
			'desc'    => Text::_('COM_SPPAGEBUILDER_ADDON_ZINDEX_DESC'),
			'depends' => array(
				array('global_custom_position', '=', 1),
			),
			'max' => 1000,
			'min' => 1,
		),
		'global_section_z_index' => array(
			'type'    => 'slider',
			'title'   => Text::_('COM_SPPAGEBUILDER_SECTION_ZINDEX'),
			'depends' => array(
				array('global_custom_position', '=', 1),
			),
			'max' => 1000,
			'min' => 1,
		),
		'use_global_width' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_USE_WIDTH'),
			'std'   => '0',
		),
		'global_width' => array(
			'type'       => 'slider',
			'title'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_WIDTH'),
			'max'        => 100,
			'responsive' => true,
			'depends'    => array('use_global_width' => 1),
		),
		'hidden_md' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_MD'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_MD_DESC'),
			'std'   => '0',
			),

		'hidden_sm' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_SM'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_SM_DESC'),
			'std'   => '0',
		),

		'hidden_xs' => array(
			'type'  => 'checkbox',
			'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_XS'),
			'desc'  => Text::_('COM_SPPAGEBUILDER_GLOBAL_HIDDEN_XS_DESC'),
			'std'   => '0',
		),

		'acl' => array(
			'type'        => 'accesslevel',
			'title'       => Text::_('COM_SPPAGEBUILDER_ACCESS'),
			'desc'        => Text::_('COM_SPPAGEBUILDER_ACCESS_DESC'),
			'placeholder' => '',
			'std' 			     => '',
			'multiple'    => true,
		),
	),
		'interaction' => array(
			'while_scroll_view' => array(
				'type'  => 'interaction_view',
				'title' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_VIEW'),
				"desc"  => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_VIEW_DESC'),
				'attr'  => array(
					'enable_while_scroll_view' => array(
						'type'  => 'checkbox',
						'title' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_VIEW_TITLE'),
						'desc'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_VIEW_TITLE_DESC'),
						'std'   => 0,
					),

					'on_scroll_actions' => array(
						'type'    => 'timeline',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_TITLE'),
						'desc'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_TITLE_DESC'),
						'depends' => array('enable_while_scroll_view' => 1),
						'std'     => array(
							array(
								'id'       => "b3fdc1c1e6bfde5942ea",
								'index'    => 0,
								'keyframe' => 0,
								'name'     => 'move',
								'property' => array(
									'x' => '0',
									'y' => '-100',
									'z' => '0',
								),
								'range' => array(
									'max'  => 500,
									'min'  => -500,
									'stop' => 1,
								),
								'single' => true,
								'title'  => "Move",
							),
							array(
								'id'       => "936e0225e6dc8edfba7d",
								'index'    => 1,
								'keyframe' => 100,
								'name'     => 'move',
								'property' => array(
									'x' => 0,
									'y' => 0,
									'z' => 0,
								),
								'range' => array(
									'max'  => 500,
									'min'  => -500,
									'stop' => 1,
								),
								'single' => true,
								'title'  => "Move",
							),
						),
						'options' => array(
							array(
								'name'     => 'move',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_MOVE'),
								'property' => array(
									'x' => '0',
									'y' => '0',
									'z' => '0',
								),
								'range' => array(
									'max'  => 500,
									'min'  => -500,
									'step' => 1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_MOVE_WARNING'),
							),
							array(
								'name'     => 'scale',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_SCALE'),
								'property' => array(
									'x' => '1',
									'y' => '1',
									'z' => '1',
								),
								'range' => array(
									'max'  => 2,
									'min'  => 0,
									'step' => 0.1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_SCALE_WARNING'),
							),
							array(
								'name'     => 'rotate',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_ROTATE'),
								'property' => array(
									'x' => '0',
									'y' => '0',
									'z' => '0',
								),
								'range' => array(
									'max'  => 180,
									'min'  => -180,
									'step' => 1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_ROTATE_WARNING'),
							),
							array(
								'name'     => 'skew',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_SKEW'),
								'property' => array(
									'x' => '0',
									'y' => '0',
								),
								'range' => array(
									'max'  => 80,
									'min'  => -80,
									'step' => 1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_SKEW_WARNING'),
							),
							array(
								'name'     => 'opacity',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_OPACITY'),
								'property' => array('value' => '0'),
								'range'    => array(
									'max'  => 1,
									'min'  => 0,
									'step' => 0.1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_OPACITY_WARNING'),
							),
							array(
								'name'     => 'blur',
								'title'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_BLUR'),
								'property' => array('value' => '0'),
								'range'    => array(
									'max'  => 100,
									'min'  => 0,
									'step' => 1,
								),
								'warning_message' => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_ACTION_BLUR_WARNING'),
							),
						),
					),

					'transition_origin_x' => array(
						'type'   => 'select',
						'title'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_TRANSITION_ANCHOR_X_TITLE'),
						'values' => array(
							'left'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_TRANSITION_ANCHOR_X_LEFT'),
							'center' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
							'right'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_TRANSITION_ANCHOR_X_RIGHT'),
						),
						'std'     => 'center',
						'depends' => array('enable_while_scroll_view' => 1),
					),
					'transition_origin_y' => array(
						'type'   => 'select',
						'title'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_TRANSITION_ANCHOR_Y_TITLE'),
						'values' => array(
							'top'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_WHILTE_SCROLL_TRANSITION_ANCHOR_Y_TOP'),
							'center' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
							'bottom' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOTTOM'),
						),
						'std'     => 'center',
						'depends' => array('enable_while_scroll_view' => 1),
					),

					'enable_tablet' => array(
						'type'    => 'checkbox',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TABLET'),
						'desc'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TABLET_DESC'),
						'depends' => array('enable_while_scroll_view' => 1),
						'std'     => 0,
					),
					'enable_mobile' => array(
						'type'    => 'checkbox',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_MOBILE'),
						'desc'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_MOBILE_DESC'),
						'depends' => array('enable_while_scroll_view' => 1),
						'std'     => 0,
					),
				),
			),
           'mouse_movement' => array(
				'type'        => 'interaction_view',
				'title'       => Text::_('COM_SPPAGEBUILDER_INTERACTION_MOUSE_MOVEMENT'),
				"description" => Text::_('COM_SPPAGEBUILDER_INTERACTION_MOUSE_MOVEMENT_DESC'),
				"attr"        => array(
					'enable_tilt_effect' => array(
						'type'  => 'checkbox',
						'title' => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_TITLE'),
						'desc'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_TITLE_DESC'),
						'std'   => 0,
					),
					'mouse_tilt_direction' => array(
						'type'   => 'select',
						'title'  => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_DIRECTION_TITLE'),
						'values' => array(
							'direct'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_DIRECTION_FORWARD'),
							'opposite' => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_DIRECTION_OPPOSITE'),
						),
						'std'     => 'direct',
						'depends' => array('enable_tilt_effect' => 1),
					),
					'mouse_tilt_speed' => array(
						'type'    => 'slider',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_SPEED_TITLE'),
						'std'     => '1',
						'min'     => 1,
						'max'     => 10,
						'step'    => 0.5,
						'depends' => array('enable_tilt_effect' => 1),
					),
					'mouse_tilt_max' => array(
						'type'    => 'slider',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TILT_EFFECT_MAX_TITLE'),
						'std'     => '15',
						'min'     => 5,
						'max'     => 75,
						'step'    => 5,
						'depends' => array('enable_tilt_effect' => 1),
					),
					'enable_tablet' => array(
						'type'    => 'checkbox',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TABLET'),
						'desc'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_TABLET_DESC'),
						'depends' => array('enable_tilt_effect' => 1),
						'std'     => 0,
					),
					'enable_mobile' => array(
						'type'    => 'checkbox',
						'title'   => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_MOBILE'),
						'desc'    => Text::_('COM_SPPAGEBUILDER_INTERACTION_ENABLE_MOBILE_DESC'),
						'depends' => array('enable_tilt_effect' => 1),
						'std'     => 0,
					),
				),
		   ),
        ),
	);

NexusLeads