init
This commit is contained in:
32
vendor/dmstr/yii2-adminlte-asset/tests/_app/controllers/TestController.php
vendored
Normal file
32
vendor/dmstr/yii2-adminlte-asset/tests/_app/controllers/TestController.php
vendored
Normal 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');
|
||||
}
|
||||
}
|
||||
38
vendor/dmstr/yii2-adminlte-asset/tests/_app/controllers/sub/ActionController.php
vendored
Normal file
38
vendor/dmstr/yii2-adminlte-asset/tests/_app/controllers/sub/ActionController.php
vendored
Normal 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');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user