Skip to content

Commit

Permalink
Update UIService.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheron committed Apr 23, 2022
1 parent 03b7214 commit 8a5275f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Ajax/php/ubiquity/UIService.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* This class is part of phpMv-UI
*
* @author jc
* @version 1.0.0
* @version 1.0.1
*
*/
class UIService {
Expand All @@ -25,5 +25,13 @@ public function __construct(Controller $controller) {
$this->controller = $controller;
$this->semantic = $this->jquery->semantic();
}

public function renderView(string $viewName,array $parameters=[],bool $asString=false){
return $this->jquery->renderView($viewName,$parameters,$asString);
}

public function compile(){
echo $this->jquery->compile();
}
}

0 comments on commit 8a5275f

Please sign in to comment.