public function actionDeleteVariation($id)
 {
     /** @var ThemeVariation $model */
     $model = ThemeVariation::findById($id);
     if (is_null($model)) {
         throw new NotFoundHttpException();
     }
     $model->delete();
     return $this->redirect(['index']);
 }