Skip to content

Commit a67f6b2

Browse files
committed
Create UIService.php
1 parent 590fc51 commit a67f6b2

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Ajax/php/ubiquity/UIService.php

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)