Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/hustle/inc/metas/popup/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/hustle/inc/metas/popup/hustle-popup-settings.php

<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * Hustle_Popup_Settings class
 *
 * @package Hustle
 */

/**
 * Class Hustle_Popup_Settings
 */
class Hustle_Popup_Settings extends Hustle_Meta_Base_Settings {

	/**
	 * Get the default settings.
	 *
	 * @return array
	 */
	public function get_defaults() {
		$base = parent::get_defaults();

		// Specific for popups.
		$settings = array_merge(
			$base,
			array(
				'allow_scroll_page'         => '0',
				'close_on_background_click' => '1',
				'auto_hide'                 => '0',
				'auto_hide_unit'            => 'seconds',
				'auto_hide_time'            => '5',
			)
		);

		return $settings;
	}

}