ArticleController.php
610 Bytes
<?php
namespace backend\modules\faq\controllers;
use thread\app\base\controllers\BackendController;
//
use backend\modules\faq\models\{
Article, ArticleLang, search\Article as filterArticleModel
};
/**
* Class ArticleController
*
* @package backend\modules\faq\controllers
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c), Thread
*/
class ArticleController extends BackendController
{
public $model = Article::class;
public $modelLang = ArticleLang::class;
public $filterModel = filterArticleModel::class;
public $title = 'Article';
public $name = 'article';
}