-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAddCard.php
122 lines (90 loc) · 3.59 KB
/
AddCard.php
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
require_once "../config.php";
require_once "dao/FlashcardsDAO.php";
require_once "util/FlashcardUtils.php";
use \Tsugi\Core\LTIX;
use \Flashcards\DAO\FlashcardsDAO;
// Retrieve the launch data if present
$LAUNCH = LTIX::requireData();
$p = $CFG->dbprefix;
$flashcardsDAO = new FlashcardsDAO($PDOX, $p);
$OUTPUT->header();
include("tool-header.html");
$OUTPUT->bodyStart();
if ( $USER->instructor ) {
$setId = $_GET["SetID"];
$cardsInSet = $flashcardsDAO->getCardsInSet($setId);
usort($cardsInSet, array('FlashcardUtils', 'compareCardNum'));
$set = $flashcardsDAO->getFlashcardSetById($setId);
$Total = count($cardsInSet);
$Next = $Total + 1;
include("menu.php");
echo('
<ul class="breadcrumb">
<li><a href="index.php">All Card Sets</a></li>
<li><a href="AllCards.php?SetID=' .$setId.'">'.$set["CardSetName"].'</a></li>
<li>Add New Card</li>
</ul>
');
?>
<form method="post" action="actions/AddCard_Submit.php">
<div class="row">
<div class="col-sm-offset-1 col-sm-8">
<h3>Adding Card <?php echo($Next); ?></h3>
</div>
<div class="col-sm-offset-1 col-sm-8">
<div class="form-group">
<label class="control-label" for="SideA">Side A</label>
<div class="photo-box">
<input type="file" class="filepond1" name="filepond1" data-max-file-size="6MB" />
</div>
<textarea class="form-control" name="SideA" id="SideA" rows="5" autofocus></textarea>
</div>
<div class="form-group">
<label class="control-label" for="SideB">Side B</label>
<div class="photo-box">
<input type="file" class="filepond2" name="filepond2" data-max-file-size="6MB" />
</div>
<textarea class="form-control" name="SideB" id="SideB" rows="5"></textarea>
</div>
<input type="hidden" name="SetID" value="<?php echo $_GET["SetID"];?>"/>
<input type="hidden" name="CardNum" value="<?php echo $Next; ?>"/>
<input type="submit" value="Add Card" class="btn btn-primary">
<a href="AllCards.php?SetID=<?php echo $_GET["SetID"];?>" class="btn btn-danger">Cancel</a>
</div>
</div>
</form>
<?php
} else {
// student so send back to index
header( 'Location: '.addSession('index.php') ) ;
}
$OUTPUT->footerStart();
include("tool-footer.html");
?>
<script>
FilePond.registerPlugin(
FilePondPluginFileEncode,
FilePondPluginFileValidateSize,
FilePondPluginFileValidateType,
FilePondPluginImagePreview
);
const pond1 = FilePond.create( document.querySelector('.filepond1'), {
acceptedFileTypes: ['image/*'],
allowMultiple: false,
allowFileEncode: true,
required: false,
instantUpload: false,
labelIdle: 'Drag & Drop your photo here or <span class="filepond--label-action"> Browse </span>'
});
const pond2 = FilePond.create( document.querySelector('.filepond2'), {
acceptedFileTypes: ['image/*'],
allowMultiple: false,
allowFileEncode: true,
required: false,
instantUpload: false,
labelIdle: 'Drag & Drop your photo here or <span class="filepond--label-action"> Browse </span>'
});
</script>
<?php
$OUTPUT->footerEnd();