23 lines
		
	
	
		
			555 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			555 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace app\themes\gestalt\controllers;
 | |
| 
 | |
| use kernel\Controller;
 | |
| 
 | |
| class MainController extends Controller
 | |
| {
 | |
|     protected function init(): void
 | |
|     {
 | |
|         parent::init();
 | |
|         $this->cgView->viewPath = APP_DIR . "/themes/gestalt/views/main/";
 | |
|         $this->cgView->layout = "main.php";
 | |
|         $this->cgView->layoutPath = APP_DIR . "/themes/gestalt/views/layout/";
 | |
|         $this->cgView->addVarToLayout("resources", "/resources/out");
 | |
|     }
 | |
| 
 | |
|     public function actionIndex(): void
 | |
|     {
 | |
|         $this->cgView->render("index.php");
 | |
|     }
 | |
| 
 | |
| } |