Ejemplo n.º 1
0
<?php

use yii\bootstrap\Html;
use app\components\Statistics;
/* @var $this yii\web\View */
$this->title = Yii::$app->name;
echo $this->render('//report/statistics', ['data' => Statistics::getConferenceStat()]);
/*
<p><?= Html::encode($this->title) ?></p>
<p><?= Html::encode(Yii::$app->controller->layout) ?></p>
*/
?>


<!--Остальные страницы-->
Ejemplo n.º 2
0
 /**
  * Get statistics
  */
 public function actionStatistics()
 {
     return $this->render('statistics', ['data' => Statistics::getConferenceStat()]);
     //        return $this->renderContent(nl2br(str_replace(' ', '&nbsp;', print_r($a, true))));
 }