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/Notifications/Slots.php +4 -0 3.1.53.2.1 View file →
@@ -17,11 +17,13 @@
17 17 // phpcs:disable PSR12.Properties.ConstantVisibility.NotFound -- 7.0 floor: no const visibility
18 18 const ADMIN_DASHBOARD = 'admin-dashboard';
19 19 const ADMIN_OTHERS = 'admin-others';
20 20 const ADMIN_ASSIST = 'admin-assist';
21 + const ADMIN_MODAL = 'admin-modal';
21 22 const AGENT_CHAT = 'agent-chat';
22 23 const FRONTEND_BOTTOM = 'frontend-bottom';
23 24 const FRONTEND_TOPBAR = 'frontend-topbar';
25 + const FRONTEND_MODAL = 'frontend-modal';
24 26
25 27 /**
26 28 * A slot missing from src/Notifications/slots.js renders nothing.
27 29 */
@@ -28,11 +30,13 @@
28 30 const ALLOWLIST = [
29 31 self::ADMIN_DASHBOARD,
30 32 self::ADMIN_OTHERS,
31 33 self::ADMIN_ASSIST,
34 + self::ADMIN_MODAL,
32 35 self::AGENT_CHAT,
33 36 self::FRONTEND_BOTTOM,
34 37 self::FRONTEND_TOPBAR,
38 + self::FRONTEND_MODAL,
35 39 ];
36 40 // phpcs:enable PSR12.Properties.ConstantVisibility.NotFound
37 41
38 42 public static function isKnown(string $slot)