form.php
773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Quiz creation AI form component.
*
* @since 4.8.0
*
* @package LearnDash\Modules\AI\Quiz_Creation
*
* @var array<string, array<string, mixed>> $form_fields LearnDash answer types in key label pair.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<form
class="ld-bg-white ld-shadow-lg ld-rounded-md ld-p-8"
method="post"
id="quiz-creation-ai"
name="quiz_creation_ai"
action="<?php echo esc_attr( admin_url( 'admin-post.php' ) ); ?>"
>
<?php
SFWD_LMS::get_view(
'AI/quiz-creation/components/notices',
[],
true
);
?>
<?php
SFWD_LMS::get_view(
'AI/quiz-creation/components/fields',
[
'form_fields' => $form_fields,
],
true
);
?>
<?php
SFWD_LMS::get_view(
'AI/quiz-creation/components/button',
[],
true
);
?>
</form>