Skip to content
Snippets Groups Projects
Commit 85f0e86a authored by Korvin's avatar Korvin
Browse files

final changes

parent 5f3cd5c7
Branches issue241_config_page
No related merge requests found
$(() => { $(() => {
$('#config-save-button').click(function () { $('.config-container input').change(function () {
$(this).prop('disabled', true); $(this).prop('disabled', true);
let config = { let type = $(this).attr("type");
SemesterID : $("#SemesterID").val(), let data;
HashKey : $("#HashKey").val(), if (type == "checkbox")
Logging : $("#Logging").prop('checked'), data = $(this).prop('checked');
SupportServiceEmail : $("#SupportServiceEmail").val(), else
OpenIDAuthAllowed : $("#OpenIDAuthAllowed").prop('checked'), data = $(this).val();
GradeAuthAllowed : $("#GradeAuthAllowed").prop('checked'), let id = $(this).attr("id");
HTTPS : $("#HTTPS").prop('checked')
}; $.post(URLdir + 'handler/config/index', {id, type, data}).done(_ => {
$.post(URLdir + 'handler/config/index', {config}).done(result => {
Popup.success('Изменения сохранены'); Popup.success('Изменения сохранены');
location.reload(); }).fail(_ => {
}).fail(result => {
Popup.error('Произошла ошибка'); Popup.error('Произошла ошибка');
}).always(_ => {
$(this).prop('disabled', false);
}); });
}); });
}); });
\ No newline at end of file
...@@ -4,17 +4,16 @@ class Controller_Handler_Config extends Controller_Handler_Api ...@@ -4,17 +4,16 @@ class Controller_Handler_Config extends Controller_Handler_Api
{ {
public function action_index() { public function action_index() {
$this->user->checkAccess(User::RIGHTS_ADMIN); $this->user->checkAccess(User::RIGHTS_ADMIN);
$config = $this->post["config"];
$string = file_get_contents(APPPATH . "/config/general.json"); $string = file_get_contents(APPPATH . "/config/general.json");
$json_a = json_decode($string, true); $json_a = json_decode($string, true);
foreach ($config as $key => $value) { $id = $this->post["id"];
if ($value === "false") $data = $this->post["data"];
$value = false; $type = $this->post["type"];
elseif ($value === "true") if ($type === "checkbox")
$value = true; $data === "true" ? $data = true : $data = false;
$json_a[$key] = $value; $json_a[$id] = $data;
}
$string = json_encode($json_a, JSON_PRETTY_PRINT | JSON_NUMERIC_CHECK); $string = json_encode($json_a, JSON_PRETTY_PRINT | JSON_NUMERIC_CHECK);
file_put_contents(APPPATH . "/config/general.json", $string); file_put_contents(APPPATH . "/config/general.json", $string);
......
...@@ -49,10 +49,6 @@ ...@@ -49,10 +49,6 @@
<input class="defaultForm" type="checkbox" id="Https" {{ Config.Https == true ? "checked" : "unchecked"}}> <input class="defaultForm" type="checkbox" id="Https" {{ Config.Https == true ? "checked" : "unchecked"}}>
</label> </label>
<button class="defaultForm BlueButton P2Width" id="config-save-button">
Сохранить
</button>
</div> </div>
{% endblock %} {% endblock %}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment