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 03b7214 commit 8a5275fCopy full SHA for 8a5275f
Ajax/php/ubiquity/UIService.php
@@ -9,7 +9,7 @@
9
* This class is part of phpMv-UI
10
*
11
* @author jc
12
- * @version 1.0.0
+ * @version 1.0.1
13
14
*/
15
class UIService {
@@ -25,5 +25,13 @@ public function __construct(Controller $controller) {
25
$this->controller = $controller;
26
$this->semantic = $this->jquery->semantic();
27
}
28
+
29
+ public function renderView(string $viewName,array $parameters=[],bool $asString=false){
30
+ return $this->jquery->renderView($viewName,$parameters,$asString);
31
+ }
32
33
+ public function compile(){
34
+ echo $this->jquery->compile();
35
36
37
0 commit comments