Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/classes/db-versioning/v2-0-60.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
namespace Blocksy\DbVersioning;
4
+
5
+
class V2060 {
6
+
public function migrate() {
7
+
$value = get_option(
8
+
'blocksy_ext_local_google_fonts_settings',
9
+
'__empty__'
10
+
);
11
+
12
+
if ($value === '__empty__' || ! is_array($value)) {
13
+
return;
14
+
}
15
+
16
+
update_option(
17
+
'blocksy_ext_local_google_fonts_settings',
18
+
$value,
19
+
false
20
+
);
21
+
}
22
+
}
23
+
24
+
25
+