/**
  * Список включаемых областей
  * @return array
  */
 public function getIncludesList()
 {
     $models = Includes::find()->orderBy(["title" => SORT_ASC])->all();
     return ArrayHelper::map($models, "id", "title");
 }