PHP code example of insolita / yii2-metacrumbs
1. Go to this page and download the library: Download insolita/yii2-metacrumbs library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
insolita / yii2-metacrumbs example snippets
\Yii::$container->setSingleton(IBreadcrumbCollection::class,BreadCrumbs::class);
<?= \insolita\metacrumbs\widgets\CrumbWidget::widget([])
class ExampleController extends Controller
{
use CrumbedControllerTrait;
use MetaManagerTrait;
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}
public function behaviors()
{
return [
'nolayout'=>['class'=>NoLayoutBehavior::class,'actions' => ['ajax']]
// 'nolayout'=>['class'=>NoLayoutBehavior::class,'actions' => ['index','about'],'except'=>true]
];
}
public function beforeAction($action)
{
$this->registerHomeCrumb();
$this->registerIndexCrumb('Сайтег');
if ($action->id == 'error') {
$this->registerCurrentCrumb('Страница ошибок');
$this->metaManager()->canonical();
}
return parent::beforeAction($action);
}
public function actionIndex()
{
$this->metaManager()->canonical(Url::to(['example/default']));
$this->metaManager()->tag('description', 'Bla-bla-la-la-la');
$this->metaManager()->prop('og:description', 'Bla-bla-bla');
$this->metaManager()->prop('og:title', 'Bla-bla-bla');
$this->metaManager()->keywords('Some, keywords,list');
//Also
return $this->render('index');
}
public function actionView(int $id)
{
$this->crumbCollection->addCrumb(
new CrumbItem('Special crumb', Url::to(['some/page']), 20, ['target' => '_blank'])
);
$model = $this->pageFinder->findById($id);
$this->registerCurrentCrumb($model->title);
$this->metaManager()->ogMeta($model->title,Url::current([],true),$model->description,$model->cover,'article');
return $this->render('about',['model'=>$model]);
}
....