1: <?php
2: use Core\BaseClasses\BaseController;
3: use Core\System\System;
4:
5: 6: 7: 8: 9: 10:
11:
12: function dbd($arg0,$arg1=0)
13: {
14: System::DBD($arg0,$arg1);
15: }
16: function redirect($path)
17: {
18: BaseController::redirect($path);
19: }
20: 21: 22: 23:
24: function json($inArray)
25: {
26: BaseController::json($inArray);
27: }
28: function back()
29: {
30: BaseController::back();
31: }
32:
33: function view($view,$arrayParams = [])
34: {
35: BaseController::view($view,$arrayParams);
36: }