summaryrefslogtreecommitdiff
blob: f365257d0e7c802b660b40852992325e13104ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
/**
 * Legacy/deprecated Sync Setting getter and setter.
 *
 * @package automattic/jetpack-sync
 */

use Automattic\Jetpack\Sync\Settings;

/**
 * Class Jetpack_Sync_Settings
 *
 * @deprecated Use Automattic\Jetpack\Sync\Settings
 */
class Jetpack_Sync_Settings {

	/**
	 * Return all settings
	 *
	 * @deprecated See Automattic/Jetpack/Sync/Settings
	 *
	 * @return array All Sync Settings.
	 */
	public static function get_settings() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_settings();
	}

	/**
	 * Return a single setting.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param string $setting Setting to return.
	 *
	 * @return mixed Value of setting.
	 */
	public static function get_setting( $setting ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_setting( $setting );
	}

	/**
	 * Update a sync setting
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param mixed $new_settings New setting to set.
	 */
	public static function update_settings( $new_settings ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::update_settings( $new_settings );
	}

	/**
	 * Return is_network_setting result.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param string $setting Setting to check.
	 *
	 * @return bool
	 */
	public static function is_network_setting( $setting ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_network_setting( $setting );
	}


	/**
	 * Return blacklisted post types SQL.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 */
	public static function get_blacklisted_post_types_sql() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_blacklisted_post_types_sql();
	}

	/**
	 * Return whitelisted post meta SQL.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return string
	 */
	public static function get_whitelisted_post_meta_sql() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_whitelisted_post_meta_sql();
	}

	/**
	 * Return whitelsited comment meta SQL
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 */
	public static function get_whitelisted_comment_meta_sql() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_whitelisted_comment_meta_sql();
	}

	/**
	 * Return get_comments_filter_sql
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 */
	public static function get_comments_filter_sql() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::get_comments_filter_sql();
	}

	/**
	 * Result data.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 */
	public static function reset_data() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::reset_data();
	}

	/**
	 * Set importing status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param mixed $is_importing Value to set.
	 */
	public static function set_importing( $is_importing ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::set_importing( $is_importing );
	}

	/**
	 * Return is_importing status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return bool
	 */
	public static function is_importing() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_importing();
	}

	/**
	 * Return is_sync_enabled status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return bool
	 */
	public static function is_sync_enabled() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_sync_enabled();
	}

	/**
	 * Set cron status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param mixed $is_doing_cron Value to set.
	 */
	public static function set_doing_cron( $is_doing_cron ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::set_doing_cron( $is_doing_cron );
	}

	/**
	 * Return is_doing_cron status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return bool
	 */
	public static function is_doing_cron() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_doing_cron();
	}

	/**
	 * Return is_syncing status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return bool
	 */
	public static function is_syncing() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_syncing();
	}

	/**
	 * Set "is syncing" status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param mixed $is_syncing Is syncing value.
	 */
	public static function set_is_syncing( $is_syncing ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::set_is_syncing( $is_syncing );
	}

	/**
	 * Return is_sending status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @return bool
	 */
	public static function is_sending() {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		return Settings::is_sending();
	}

	/**
	 * Set "is sending" status.
	 *
	 * @deprecated See Automattic\Jetpack\Sync\Settings
	 *
	 * @param mixed $is_sending Is sending value.
	 */
	public static function set_is_sending( $is_sending ) {
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
		Settings::set_is_sending( $is_sending );
	}

}