mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 18:08:42 +00:00
feat(problem/remote): convert to local problem
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2225ddb5d4
commit
104ce059d4
@ -263,9 +263,9 @@ if (UOJContest::cur()) {
|
|||||||
<?= $problem_content['statement'] ?>
|
<?= $problem_content['statement'] ?>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<?php if (UOJProblem::info('type') == 'remote') : ?>
|
<?php if (UOJProblem::info('type') == 'remote') : ?>
|
||||||
|
<hr>
|
||||||
|
|
||||||
<article class="mt-3 markdown-body remote-content">
|
<article class="mt-3 markdown-body remote-content">
|
||||||
<?= UOJProblem::cur()->queryContent()['remote_content'] ?>
|
<?= UOJProblem::cur()->queryContent()['remote_content'] ?>
|
||||||
</article>
|
</article>
|
||||||
|
@ -157,6 +157,36 @@ if (UOJProblem::info('type') == 'remote') {
|
|||||||
redirectTo(UOJProblem::cur()->getUri());
|
redirectTo(UOJProblem::cur()->getUri());
|
||||||
};
|
};
|
||||||
$re_crawl_form->runAtServer();
|
$re_crawl_form->runAtServer();
|
||||||
|
|
||||||
|
$convert_local_form = new UOJForm('convert_local');
|
||||||
|
$convert_local_form->handle = function () {
|
||||||
|
DB::update([
|
||||||
|
"update problems",
|
||||||
|
"set", [
|
||||||
|
"type" => 'local',
|
||||||
|
"submission_requirement" => "{}",
|
||||||
|
"extra_config" => "{}",
|
||||||
|
],
|
||||||
|
"where", [
|
||||||
|
"id" => UOJProblem::info('id'),
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
|
||||||
|
DB::update([
|
||||||
|
"update problems_contents",
|
||||||
|
"set", [
|
||||||
|
"remote_content" => '',
|
||||||
|
],
|
||||||
|
"where", [
|
||||||
|
"id" => UOJProblem::info('id'),
|
||||||
|
],
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
$convert_local_form->config['submit_container']['class'] = '';
|
||||||
|
$convert_local_form->config['submit_button']['class'] = 'btn btn-danger';
|
||||||
|
$convert_local_form->config['submit_button']['text'] = '将本题转换为本地题目(不可逆)';
|
||||||
|
$convert_local_form->config['confirm']['text'] = '您真的要*不可逆*地将本题转换为本地题目吗?';
|
||||||
|
$convert_local_form->runAtServer();
|
||||||
}
|
}
|
||||||
|
|
||||||
$view_type_form = new UOJForm('view_type');
|
$view_type_form = new UOJForm('view_type');
|
||||||
@ -444,6 +474,15 @@ $solution_view_type_form->runAtServer();
|
|||||||
<?php $re_crawl_form->printHTML() ?>
|
<?php $re_crawl_form->printHTML() ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="card mt-3 border-danger">
|
||||||
|
<div class="card-header fw-bold text-bg-danger border-danger">
|
||||||
|
转换为本地题目
|
||||||
|
</div>
|
||||||
|
<div class="card-body border-danger">
|
||||||
|
<?php $convert_local_form->printHTML() ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<div class="card mt-3">
|
<div class="card mt-3">
|
||||||
|
Loading…
Reference in New Issue
Block a user