f2acc393
Alexey Boroda
-Seo widget integ...
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use common\models\Page;
use yii\web\View;
use common\widgets\Seo;
/**
* @var Page $model
* @var View $this
*/
$this->params[ 'seo' ][ Seo::TITLE ] = !empty($model->meta_title) ? $model->meta_title : $model->title;
$this->params[ 'seo' ][ Seo::DESCRIPTION ] = !empty($model->meta_description) ? $model->meta_description : '';
$this->params[ 'breadcrumbs' ][] = $model->title;
echo $model->body;
|