HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/wordpress-popup/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;
	}

}