public function get_layoutsAction($interface = false, $style = false)
 {
     if (!$interface || !$style) {
         return Brightery::error404();
     }
     $this->layout = 'ajax';
     $model = new \modules\settings\models\Settings();
     foreach ($model->getAvailableLayouts($interface, $style) as $key => $value) {
         echo "<option value=\"{$key}\">" . $value . "</option>";
     }
 }