PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | app/Constants.php +17 -0 3.1.03.2.1 View file →
@@ -19,5 +19,22 @@
19 19 const INSIGHTS_HOST = 'https://insights.extendify.com';
20 20 const IMAGES_HOST = 'https://images-resource.extendify.com';
21 21 const DASHBOARD_HOST = 'https://dashboard.extendify.com';
22 22 // phpcs:enable PSR12.Properties.ConstantVisibility.NotFound
23 +
24 + /**
25 + * All Extendify service base URLs.
26 + *
27 + * @return string[]
28 + */
29 + public static function serviceUrls()
30 + {
31 + return [
32 + self::AI_HOST,
33 + self::PATTERNS_HOST,
34 + self::KB_HOST,
35 + self::INSIGHTS_HOST,
36 + self::IMAGES_HOST,
37 + self::DASHBOARD_HOST,
38 + ];
39 + }
23 40 }