Beispiel #1
0
 protected function getItem($id)
 {
     $item = $this->finder->findTag(['id' => $id])->one();
     if ($item) {
         return $item;
     } else {
         throw new \yii\web\NotFoundHttpException(Yii::t('blog', 'The requested tag does not exist'));
     }
 }