DemoController.php
408 Bytes
<?php
namespace backend\controllers;
use Yii;
/**
* Site controller
*/
class DemoController extends BaseController
{
public function actionIndex()
{
return $this->render('index');
}
public function actionGeneralforms()
{
return $this->render('general-forms');
}
public function actionButtons()
{
return $this->render('buttons');
}
}