Exemplo n.º 1
0
 /**
  * Runs the action
  *
  * @return string result content
  */
 public function run($id)
 {
     $model = SchedulerLog::findOne($id);
     if (!$model) {
         throw new \yii\web\HttpException(404, 'The requested page does not exist.');
     }
     return $this->controller->render($this->view ?: $this->id, ['model' => $model]);
 }