for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mdm\admin\controllers;
use Yii;
use mdm\admin\components\AccessControl;
/**
* DefaultController
*
* @author Misbahul D Munir <[email protected]>
* @since 1.0
*/
class DefaultController extends \yii\web\Controller
{
* @inheritdoc
public function behaviors()
return [
'access' => [
'class' => AccessControl::class,
],
];
}
* Action index
public function actionIndex($page = 'README.md')
if (strpos($page, '.png') !== false) {
$file = Yii::getAlias("@mdm/admin/{$page}");
return Yii::$app->getResponse()->sendFile($file);
return $this->render('index', ['page' => $page]);