DemoController.php 496 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');
    }
    
    public function actionList()
    {
        return $this->render('list');
    }
}