This commit is contained in:
2020-10-06 14:27:47 +07:00
commit 586be80cf6
16613 changed files with 3274099 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* @link http://www.diemeisterei.de/
* @copyright Copyright (c) 2017 diemeisterei GmbH, Stuttgart
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace tests\app\controllers;
use yii\web\Controller;
class TestController extends Controller
{
public $layout = '@repo/example-views/testing/app/layouts/main';
public function actionIndex()
{
return $this->render('@repo/example-views/testing/app/default/index');
}
public function actionAuto()
{
return $this->render('@repo/example-views/testing/app/default/index');
}
public function actionLogin()
{
return $this->render('@repo/example-views/testing/app/security/login');
}
}

View File

@@ -0,0 +1,38 @@
<?php
/**
* @link http://www.diemeisterei.de/
* @copyright Copyright (c) 2017 diemeisterei GmbH, Stuttgart
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace tests\app\controllers\sub;
use yii\web\Controller;
class ActionController extends Controller
{
public $layout = '@repo/example-views/testing/app/layouts/main';
public function actionOne()
{
return $this->render('@repo/example-views/testing/app/default/index');
}
public function actionTwo()
{
return $this->render('@repo/example-views/testing/app/default/index');
}
public function actionThree()
{
return $this->render('@repo/example-views/testing/app/default/index');
}
public function actionParam($id)
{
return $this->render('@repo/example-views/testing/app/default/index');
}
}