| Current File : /home/digitaw/www/wp-content/plugins/wordpress-popup/inc/metas/sshare/hustle-sshare-display.php |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
* Hustle_SShare_Display class
*
* @package Hustle
*/
/**
* Class Hustle_SShare_Display
*/
class Hustle_SShare_Display extends Hustle_Meta_Base_Display {
/**
* Get the defaults for this meta.
*
* @since 4.2.0
* @return array
*/
public function get_defaults() {
$base = parent::get_defaults();
// Specific for slidein.
$settings = array_merge(
$base,
array(
'inline_align' => 'left',
'float_desktop_enabled' => '1',
'float_desktop_position' => 'right',
'float_desktop_offset' => 'screen',
'float_desktop_offset_x' => '0',
'float_desktop_position_y' => 'top',
'float_desktop_offset_y' => '0',
'float_desktop_css_selector' => '',
'float_mobile_enabled' => '1',
'float_mobile_position' => 'left',
'float_mobile_offset' => 'screen',
'float_mobile_position_x' => 'left',
'float_mobile_offset_x' => '0',
'float_mobile_position_y' => 'top',
'float_mobile_offset_y' => '0',
'float_mobile_css_selector' => '',
)
);
return $settings;
}
}