We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590fc51 commit a67f6b2Copy full SHA for a67f6b2
Ajax/php/ubiquity/UIService.php
@@ -0,0 +1,29 @@
1
+<?php
2
+namespace Ajax\php\ubiquity;
3
+
4
+use Ajax\Semantic;
5
+use Ubiquity\controllers\Controller;
6
7
+/**
8
+ * Ajax\php\ubiquity$UIService
9
+ * This class is part of phpMv-UI
10
+ *
11
+ * @author jc
12
+ * @version 1.0.0
13
14
+ */
15
+class UIService {
16
17
+ protected Controller $controller;
18
19
+ protected JsUtils $jquery;
20
21
+ protected Semantic $semantic;
22
23
+ public function __construct(Controller $controller) {
24
+ $this->jquery = $controller->jquery;
25
+ $this->controller = $controller;
26
+ $this->semantic = $this->jquery->semantic();
27
+ }
28
+}
29
0 commit comments