Completed
Push — add/dismissable-notices ( d15757...eae3c3 )
by
unknown
134:42 queued 125:22
created

Jetpack_Sync_Settings::is_importing()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 4
c 1
b 0
f 0
nc 3
nop 0
dl 0
loc 7
rs 9.4285
1
<?php
2
3
require_once dirname( __FILE__ ) . '/class.jetpack-sync-defaults.php';
4
5
class Jetpack_Sync_Settings {
6
	const SETTINGS_OPTION_PREFIX = 'jetpack_sync_settings_';
7
8
	static $valid_settings = array(
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $valid_settings.

The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using

class A {
    var $property;
}

the property is implicitly global.

To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.

Loading history...
9
		'dequeue_max_bytes'   => true,
10
		'upload_max_bytes'    => true,
11
		'upload_max_rows'     => true,
12
		'sync_wait_time'      => true,
13
		'sync_wait_threshold' => true,
14
		'max_queue_size'      => true,
15
		'max_queue_lag'       => true,
16
	);
17
18
	static $is_importing;
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $is_importing.

The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using

class A {
    var $property;
}

the property is implicitly global.

To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.

Loading history...
19
20
	static function get_settings() {
21
		$settings = array();
22
		foreach ( array_keys( self::$valid_settings ) as $setting ) {
23
			$settings[ $setting ] = self::get_setting( $setting );
24
		}
25
26
		return $settings;
27
	}
28
29
	// Fetches the setting. It saves it if the setting doesn't exist, so that it gets
30
	// autoloaded on page load rather than re-queried every time.
31
	static function get_setting( $setting ) {
32
		if ( ! isset( self::$valid_settings[ $setting ] ) ) {
33
			return false;
34
		}
35
36
		$value = get_option( self::SETTINGS_OPTION_PREFIX . $setting );
37
38
		if ( false === $value ) {
39
			$default_name = "default_$setting"; // e.g. default_dequeue_max_bytes
40
			$value        = Jetpack_Sync_Defaults::$$default_name;
41
			update_option( self::SETTINGS_OPTION_PREFIX . $setting, $value, true );
42
		}
43
44
		return (int) $value;
45
	}
46
47
	static function update_settings( $new_settings ) {
48
		$validated_settings = array_intersect_key( $new_settings, self::$valid_settings );
49
		foreach ( $validated_settings as $setting => $value ) {
50
			update_option( self::SETTINGS_OPTION_PREFIX . $setting, $value, true );
51
		}
52
	}
53
54
	static function reset_data() {
55
		$valid_settings  = self::$valid_settings;
56
		$settings_prefix = self::SETTINGS_OPTION_PREFIX;
57
		foreach ( $valid_settings as $option => $value ) {
58
			delete_option( $settings_prefix . $option );
59
		}
60
		self::set_importing( null );
61
	}
62
63
	static function set_importing( $is_importing ) {
64
		// set to NULL to revert to WP_IMPORTING, the standard behaviour
65
		self::$is_importing = $is_importing;
66
	}
67
68
	static function is_importing() {
69
		if ( ! is_null( self::$is_importing ) ) {
70
			return self::$is_importing;
71
		}
72
73
		return defined( 'WP_IMPORTING' ) && WP_IMPORTING;
74
	}
75
}
76