PluginProbe
Simple Analytics / 1.110
Simple Analytics v1.110
1.110 1.109 1.108 1.107 1.106 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.9 1.90 All 99 releases
← All changes | src/Settings/Blocks/Fields/Input.php +5 -0 1.881.110 View file →
@@ -2,8 +2,10 @@
2 2
3 3 namespace SimpleAnalytics\Settings\Blocks\Fields;
4 4
5 5 use SimpleAnalytics\Setting;
6 +use SimpleAnalytics\SettingName;
7 +use SimpleAnalytics\Support\OnloadCallback;
6 8 use SimpleAnalytics\Settings\Concerns\HasDocs;
7 9 use SimpleAnalytics\Settings\Concerns\HasPlaceholder;
8 10 use SimpleAnalytics\UI\LabelComponent;
9 11
@@ -28,8 +30,11 @@
28 30 protected $placeholder;
29 31
30 32 public function getValueSanitizer(): callable
31 33 {
34 + if ($this->getKey() === SettingName::ONLOAD_CALLBACK) {
35 + return [OnloadCallback::class, 'sanitize'];
36 + }
32 37 return 'sanitize_text_field';
33 38 }
34 39
35 40 public function getValueType(): string