StatsController.php 389 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace manager\controllers;
  3. use manager\models\News;
  4. use Yii;
  5. class StatsController extends BaseController
  6. {
  7. public function actionIndex()
  8. {
  9. $model = new News();
  10. return $this->render('index', ['model' => $model]);
  11. }
  12. public function actionAuthors()
  13. {
  14. $model = new News();
  15. return $this->render('authors', ['model' => $model]);
  16. }
  17. }