Submissions.php: indent code
parent
4b278fbcd1
commit
431dee9699
653
Submissions.php
653
Submissions.php
|
@ -3,43 +3,35 @@ include 'NoDirectPhpAcess.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$page='Courses+';
|
$page = 'Courses+';
|
||||||
include 'Header.php';
|
include 'Header.php';
|
||||||
$student_id = $_SESSION["user_student_id"];
|
$student_id = $_SESSION["user_student_id"];
|
||||||
$group_id = $_SESSION["user_group_id"];
|
$group_id = $_SESSION["user_group_id"];
|
||||||
$c_date = date("Y-m-d H:i");
|
$c_date = date("Y-m-d H:i");
|
||||||
|
|
||||||
if(!empty($_GET["id"]))
|
if (!empty($_GET["id"])) {
|
||||||
{
|
|
||||||
$id = $_GET["id"];
|
$id = $_GET["id"];
|
||||||
$course_id = $id;
|
$course_id = $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!empty($_GET["header"]))
|
if (!empty($_GET["header"])) {
|
||||||
{
|
|
||||||
$header = $_GET["header"];
|
$header = $_GET["header"];
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!empty($_GET["total"]))
|
if (!empty($_GET["total"])) {
|
||||||
{
|
|
||||||
$total = $_GET["total"];
|
$total = $_GET["total"];
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
$total = 0;
|
$total = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$resultx1 = mysqli_query($con, "SELECT `Lab_Report_ID`,Title, lab_reports_table.Course_ID, `Posted_Date`, `Deadline`, `Marks`, `Type` , courses_table.URL FROM `lab_reports_table` INNER JOIN courses_table ON courses_table.Course_ID=lab_reports_table.Course_ID WHERE Lab_Report_ID=$id");
|
||||||
$resultx1 = mysqli_query($con,"SELECT `Lab_Report_ID`,Title, lab_reports_table.Course_ID, `Posted_Date`, `Deadline`, `Marks`, `Type` , courses_table.URL FROM `lab_reports_table` INNER JOIN courses_table ON courses_table.Course_ID=lab_reports_table.Course_ID WHERE Lab_Report_ID=$id");
|
while ($row = mysqli_fetch_assoc($resultx1)) {
|
||||||
while($row = mysqli_fetch_assoc($resultx1)) {
|
|
||||||
$Report_Type = $row['Type'];
|
$Report_Type = $row['Type'];
|
||||||
$c_id = $row['Course_ID'];
|
$c_id = $row['Course_ID'];
|
||||||
$Report_Title = $row['Title'];
|
$Report_Title = $row['Title'];
|
||||||
$url = $row['URL'];
|
$url = $row['URL'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "<div class='alert' style='margin-left:20px;border-bottom:2px solid #1D91EF;'> <a href='Courses.php?course=$url'>
|
echo "<div class='alert' style='margin-left:20px;border-bottom:2px solid #1D91EF;'> <a href='Courses.php?course=$url'>
|
||||||
$header
|
$header
|
||||||
</a></div>
|
</a></div>
|
||||||
|
@ -47,80 +39,85 @@ echo "<div class='alert' style='margin-left:20px;border-bottom:2px solid #1D91EF
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="row" style="width:80%;margin:auto; text-align:left;">
|
<div class="row" style="width:80%;margin:auto; text-align:left;">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Lecturer CODE-->
|
<!-- Lecturer CODE-->
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if( $_SESSION['user_type']=="Lecturer" || $_SESSION['user_type']=="TA")
|
if ($_SESSION['user_type'] == "Lecturer" || $_SESSION['user_type'] == "TA") {
|
||||||
{
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(0);
|
||||||
|
|
||||||
<?php
|
if (isset($_SESSION['info_Marking'])) {
|
||||||
|
echo '<hr><div class="alert alert-info" role="alert">' . $_SESSION['info_Marking'] . '</div>';
|
||||||
|
$_SESSION['info_Marking'] = null;
|
||||||
|
}
|
||||||
|
|
||||||
error_reporting(0);
|
$resultx1 = mysqli_query($con, "Select Count(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id");
|
||||||
|
while ($row = mysqli_fetch_assoc($resultx1)) {
|
||||||
|
$count_subs = $row['cnt'];
|
||||||
|
}
|
||||||
|
|
||||||
if(isset($_SESSION['info_Marking'])) {
|
$resultx2 = mysqli_query($con, "Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Marked'");
|
||||||
echo '<hr><div class="alert alert-info" role="alert">'.$_SESSION['info_Marking'].'</div>';
|
if (mysqli_num_rows($resultx2) == 0) {
|
||||||
$_SESSION['info_Marking']=null;
|
$count_marked = 0;
|
||||||
}
|
} else {
|
||||||
|
while ($row = mysqli_fetch_assoc($resultx2)) {
|
||||||
|
$count_marked = $row['cnt'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$resultx3 = mysqli_query($con, "Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Pending'");
|
||||||
|
if (mysqli_num_rows($resultx3) == 0) {
|
||||||
|
$count_unmarked = 0;
|
||||||
|
} else {
|
||||||
|
while ($row = mysqli_fetch_assoc($resultx3)) {
|
||||||
|
$count_unmarked = $row['cnt'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$resultx4 = mysqli_query($con, "Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Remarking'");
|
||||||
|
if (mysqli_num_rows($resultx4) == 0) {
|
||||||
|
$count_remark = 0;
|
||||||
|
} else {
|
||||||
|
while ($row = mysqli_fetch_assoc($resultx4)) {
|
||||||
|
$count_remark = $row['cnt'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
$resultx1 = mysqli_query($con,"Select Count(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id");
|
<b>Lab Report Submissions (<?php echo $count_subs; ?>)</b>
|
||||||
while($row = mysqli_fetch_assoc($resultx1)) {$count_subs=$row['cnt'];}
|
<!-- Nav tabs -->
|
||||||
|
<ul class="nav nav-tabs" role="tablist">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" data-toggle="tab" href="#menu1">Un-Marked Submissions<b> (<?php echo $count_unmarked; ?>)</b></a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" data-toggle="tab" href="#menu2">Marked Submissions <b>(<?php echo $count_marked; ?>)</b></a>
|
||||||
|
</li>
|
||||||
|
|
||||||
$resultx2 = mysqli_query($con,"Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Marked'");
|
<li class="nav-item">
|
||||||
if(mysqli_num_rows($resultx2)==0){$count_marked=0;} else { while($row = mysqli_fetch_assoc($resultx2)) {$count_marked =$row['cnt'];}}
|
<a class="nav-link" data-toggle="tab" href="#menu3">Re-Marking Requests <b>(<?php echo $count_remark; ?>)</b></a>
|
||||||
|
</li>
|
||||||
|
|
||||||
$resultx3 = mysqli_query($con,"Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Pending'");
|
<li class="nav-item">
|
||||||
if(mysqli_num_rows($resultx3)==0){$count_unmarked=0;} else { while($row = mysqli_fetch_assoc($resultx3)) {$count_unmarked =$row['cnt'];}}
|
<a class="nav-link" data-toggle="tab" href="#menu4"> View Course Groups</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tab-content">
|
||||||
|
<div id="menu1" class="container tab-pane active"><br>
|
||||||
|
|
||||||
$resultx4 = mysqli_query($con,"Select COUNT(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id and Status='Remarking'");
|
<?php
|
||||||
if(mysqli_num_rows($resultx4)==0){$count_remark=0;} else { while($row = mysqli_fetch_assoc($resultx4)) {$count_remark =$row['cnt'];}}
|
|
||||||
|
|
||||||
|
if ($Report_Type == "Group") {
|
||||||
?>
|
$result1 = mysqli_query($con, "SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
|
|
||||||
<b>Lab Report Submissions (<?php echo $count_subs;?>)</b>
|
|
||||||
<!-- Nav tabs -->
|
|
||||||
<ul class="nav nav-tabs" role="tablist">
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link active" data-toggle="tab" href="#menu1">Un-Marked Submissions<b> (<?php echo $count_unmarked;?>)</b></a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" data-toggle="tab" href="#menu2">Marked Submissions <b>(<?php echo $count_marked;?>)</b></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" data-toggle="tab" href="#menu3">Re-Marking Requests <b>(<?php echo $count_remark;?>)</b></a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" data-toggle="tab" href="#menu4"> View Course Groups</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div class="tab-content">
|
|
||||||
<div id="menu1" class="container tab-pane active"><br>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
if($Report_Type=="Group")
|
|
||||||
{
|
|
||||||
$result1 = mysqli_query($con,"SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
||||||
`Title`,course_groups_table.Group_Name,course_groups_table.Group_Leader,users_table.Full_Name, users_table.Student_id
|
`Title`,course_groups_table.Group_Name,course_groups_table.Group_Leader,users_table.Full_Name, users_table.Student_id
|
||||||
|
@ -128,10 +125,8 @@ FROM `lab_report_submissions`
|
||||||
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
||||||
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Submission_Date desc");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Submission_Date desc");
|
||||||
}
|
} else {
|
||||||
else
|
$result1 = mysqli_query($con, "SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
{
|
|
||||||
$result1 = mysqli_query($con,"SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
||||||
`Title`,users_table.Full_Name,course_group_members_table.Student_ID
|
`Title`,users_table.Full_Name,course_group_members_table.Student_ID
|
||||||
|
@ -139,96 +134,79 @@ FROM `lab_report_submissions`
|
||||||
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
||||||
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Submission_Date desc");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Submission_Date desc");
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if(mysqli_num_rows($result1)==0)
|
|
||||||
{
|
|
||||||
echo "No Un-Marked Submissions for this Lab Report.";
|
|
||||||
|
|
||||||
} else {
|
|
||||||
while($row = mysqli_fetch_assoc($result1)) {
|
|
||||||
$title=$row['Title'];
|
|
||||||
$Marks=$row['Marks'];
|
|
||||||
$posted=$row['Submission_Date'];
|
|
||||||
$deadline=$row['Deadline'];
|
|
||||||
$att1=$row['Attachment1'];
|
|
||||||
$att2=$row['Attachment2'];
|
|
||||||
$att3=$row['Attachment3'];
|
|
||||||
$att4=$row['Attachment4'];
|
|
||||||
$labid=$row['Lab_Report_ID'];
|
|
||||||
|
|
||||||
$submitter_student_number=$row['Student_id'];
|
|
||||||
$submitted_group=$row['Course_Group_id'];
|
|
||||||
$Submission_ID=$row['Submission_ID'];
|
|
||||||
$student_name=$row['Full_Name'];
|
|
||||||
$groupname=$row['Group_Name'];
|
|
||||||
$groupleader=$row['Group_Leader'];
|
|
||||||
$student_id=$row['sub_std'];
|
|
||||||
|
|
||||||
if($submitted_group==0)
|
|
||||||
{
|
|
||||||
$submitted_by= $student_name."(".$student_id.")";
|
|
||||||
} else {
|
|
||||||
$submitted_by="$student_name ($submitter_student_number) for group $groupname ";
|
|
||||||
}
|
|
||||||
|
|
||||||
$base_att1 = basename($att1);
|
|
||||||
$base_att2 = basename($att2);
|
|
||||||
$base_att3 = basename($att3);
|
|
||||||
$base_att4 = basename($att4);
|
|
||||||
|
|
||||||
$full_link = "<a href='~\..\Download.php?file=$att1&attachment=1'>$base_att1</a>"; // prevent students from directly accessing their classmates' submissions
|
|
||||||
|
|
||||||
if($att2!=""){
|
|
||||||
$full_link= $full_link." | <a href='~\..\Download.php?file=$att2&attachment=2'>$base_att2</a>";
|
|
||||||
}
|
|
||||||
if($att3!=""){
|
|
||||||
$full_link= $full_link." | <a href='~\..\Download.php?file=$att3&attachment=3'>$base_att3</a>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($att4!=""){
|
if (mysqli_num_rows($result1) == 0) {
|
||||||
$full_link= $full_link." | <a href='~\..\Download.php?file=$att4&attachment=4'>$base_att4</a>";
|
echo "No Un-Marked Submissions for this Lab Report.";
|
||||||
}
|
} else {
|
||||||
|
while ($row = mysqli_fetch_assoc($result1)) {
|
||||||
|
$title = $row['Title'];
|
||||||
|
$Marks = $row['Marks'];
|
||||||
|
$posted = $row['Submission_Date'];
|
||||||
|
$deadline = $row['Deadline'];
|
||||||
|
$att1 = $row['Attachment1'];
|
||||||
|
$att2 = $row['Attachment2'];
|
||||||
|
$att3 = $row['Attachment3'];
|
||||||
|
$att4 = $row['Attachment4'];
|
||||||
|
$labid = $row['Lab_Report_ID'];
|
||||||
|
|
||||||
|
$submitter_student_number = $row['Student_id'];
|
||||||
|
$submitted_group = $row['Course_Group_id'];
|
||||||
|
$Submission_ID = $row['Submission_ID'];
|
||||||
|
$student_name = $row['Full_Name'];
|
||||||
|
$groupname = $row['Group_Name'];
|
||||||
|
$groupleader = $row['Group_Leader'];
|
||||||
|
$student_id = $row['sub_std'];
|
||||||
|
|
||||||
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
if ($submitted_group == 0) {
|
||||||
|
$submitted_by = $student_name . "(" . $student_id . ")";
|
||||||
|
} else {
|
||||||
|
$submitted_by = "$student_name ($submitter_student_number) for group $groupname ";
|
||||||
|
}
|
||||||
|
|
||||||
|
$base_att1 = basename($att1);
|
||||||
|
$base_att2 = basename($att2);
|
||||||
|
$base_att3 = basename($att3);
|
||||||
|
$base_att4 = basename($att4);
|
||||||
|
|
||||||
|
$full_link = "<a href='~\..\Download.php?file=$att1&attachment=1'>$base_att1</a>"; // prevent students from directly accessing their classmates' submissions
|
||||||
|
|
||||||
|
if ($att2 != "") {
|
||||||
|
$full_link = $full_link . " | <a href='~\..\Download.php?file=$att2&attachment=2'>$base_att2</a>";
|
||||||
|
}
|
||||||
|
if ($att3 != "") {
|
||||||
|
$full_link = $full_link . " | <a href='~\..\Download.php?file=$att3&attachment=3'>$base_att3</a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($att4 != "") {
|
||||||
|
$full_link = $full_link . " | <a href='~\..\Download.php?file=$att4&attachment=4'>$base_att4</a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
||||||
$title <br> by: <b> $submitted_by </b>
|
$title <br> by: <b> $submitted_by </b>
|
||||||
<br> <span style='font-size:8pt'>Submitted : $posted <button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Mark Submission</button><br> Attachments : $full_link </span>
|
<br> <span style='font-size:8pt'>Submitted : $posted <button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Mark Submission</button><br> Attachments : $full_link </span>
|
||||||
</div></k>";
|
</div></k>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo "";
|
||||||
|
?>
|
||||||
|
|
||||||
}
|
</div>
|
||||||
}
|
|
||||||
echo "";
|
|
||||||
?>
|
|
||||||
|
|
||||||
</div>
|
<div id="menu2" class="container tab-pane"><br>
|
||||||
|
|
||||||
<div id="menu2" class="container tab-pane"><br>
|
<?php
|
||||||
|
|
||||||
|
if ($Report_Type == "Group") {
|
||||||
|
$result = mysqli_query($con, "SELECT `Submission_ID`,Visibility, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
if($Report_Type=="Group")
|
|
||||||
{
|
|
||||||
$result = mysqli_query($con,"SELECT `Submission_ID`,Visibility, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
||||||
`Title`,course_groups_table.Group_Name
|
`Title`,course_groups_table.Group_Name
|
||||||
FROM `lab_report_submissions`
|
FROM `lab_report_submissions`
|
||||||
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Marked'");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Marked'");
|
||||||
}
|
} else {
|
||||||
else
|
$result = mysqli_query($con, "SELECT `Submission_ID`,Visibility, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
{
|
|
||||||
$result = mysqli_query($con,"SELECT `Submission_ID`,Visibility, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
|
||||||
`Title`,users_table.Full_Name,course_group_members_table.Student_ID
|
`Title`,users_table.Full_Name,course_group_members_table.Student_ID
|
||||||
|
@ -236,84 +214,69 @@ FROM `lab_report_submissions`
|
||||||
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
||||||
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Marked' Order by lab_report_submissions.Student_id Desc");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Marked' Order by lab_report_submissions.Student_id Desc");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mysqli_num_rows($result)==0)
|
if (mysqli_num_rows($result) == 0) {
|
||||||
{
|
echo "No Marked submissions for this lab";
|
||||||
echo "No Marked submissions for this lab";
|
} else {
|
||||||
|
|
||||||
} else {
|
echo "<h3><a href='~\..\Script.php?exportgrade=true&lab=$id&lab_name=$Report_Title'><i class='fa fa-book'></i> Export Grade Sheet </a></h3>";
|
||||||
|
|
||||||
echo "<h3><a href='~\..\Script.php?exportgrade=true&lab=$id&lab_name=$Report_Title'><i class='fa fa-book'></i> Export Grade Sheet </a></h3>";
|
while ($row = mysqli_fetch_assoc($result)) {
|
||||||
|
$title = $row['Title'];
|
||||||
|
$Marks = $row['Marks'];
|
||||||
|
//$ins=$row['Notes'];
|
||||||
|
$posted = $row['Submission_Date'];
|
||||||
|
$deadline = $row['Deadline'];
|
||||||
|
$att1 = $row['Attachment1'];
|
||||||
|
$att2 = $row['Attachment2'];
|
||||||
|
$att3 = $row['Attachment3'];
|
||||||
|
$att4 = $row['Attachment4'];
|
||||||
|
$labid = $row['Lab_Report_ID'];
|
||||||
|
|
||||||
while($row = mysqli_fetch_assoc($result)) {
|
$submitter_student_number = $row['Student_id'];
|
||||||
$title=$row['Title'];
|
$submitted_group = $row['Course_Group_id'];
|
||||||
$Marks=$row['Marks'];
|
$Submission_ID = $row['Submission_ID'];
|
||||||
//$ins=$row['Notes'];
|
$student_name = $row['Full_Name'];
|
||||||
$posted=$row['Submission_Date'];
|
$student_id = $row['sub_std'];
|
||||||
$deadline=$row['Deadline'];
|
$Visibility = $row['Visibility'];
|
||||||
$att1=$row['Attachment1'];
|
$notes = $row['Notes'];
|
||||||
$att2=$row['Attachment2'];
|
|
||||||
$att3=$row['Attachment3'];
|
|
||||||
$att4=$row['Attachment4'];
|
|
||||||
$labid=$row['Lab_Report_ID'];
|
|
||||||
|
|
||||||
$submitter_student_number=$row['Student_id'];
|
if ($submitted_group == 0) {
|
||||||
$submitted_group=$row['Course_Group_id'];
|
$submitted_by = $student_name . "(" . $student_id . ")";
|
||||||
$Submission_ID=$row['Submission_ID'];
|
} else {
|
||||||
$student_name=$row['Full_Name'];
|
$submitted_by = "<i>(GROUP)</i> Group X ";
|
||||||
$student_id=$row['sub_std'];
|
}
|
||||||
$Visibility=$row['Visibility'];
|
|
||||||
$notes=$row['Notes'];
|
|
||||||
|
|
||||||
if($submitted_group==0)
|
$full_link = "<a href='~\..\Lab_Report_Submisions\\$att1'>$att1</a>";
|
||||||
{
|
|
||||||
$submitted_by= $student_name."(".$student_id.")";
|
|
||||||
} else {
|
|
||||||
$submitted_by="<i>(GROUP)</i> Group X " ;
|
|
||||||
}
|
|
||||||
|
|
||||||
$full_link="<a href='~\..\Lab_Report_Submisions\\$att1'>$att1</a>";
|
if ($att2 != "") {
|
||||||
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att2'>$att2</a>";
|
||||||
|
}
|
||||||
|
if ($att3 != "") {
|
||||||
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att3'>$att3</a>";
|
||||||
|
}
|
||||||
|
|
||||||
if($att2!=""){
|
if ($att4 != "") {
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att2'>$att2</a>";
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att4'>$att4</a>";
|
||||||
}
|
}
|
||||||
if($att3!=""){
|
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att3'>$att3</a>";
|
|
||||||
}
|
|
||||||
|
|
||||||
if($att4!=""){
|
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att4'>$att4</a>";
|
|
||||||
}
|
|
||||||
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
|
||||||
$title <br> by : <b> $submitted_by [ Marked $Marks ] </b> Visibility : <b>$Visibility </b> <button class='btn-sm btn-success' style='margin-left:50px;' onclick='updatev($Submission_ID)'>Update visibility</button>
|
$title <br> by : <b> $submitted_by [ Marked $Marks ] </b> Visibility : <b>$Visibility </b> <button class='btn-sm btn-success' style='margin-left:50px;' onclick='updatev($Submission_ID)'>Update visibility</button>
|
||||||
<hr> Lecturer/TA notes : $notes<br> <span style='font-size:8pt'>Submitted : $posted <b> </b> <button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Re-Mark Submission</button><br> Attachments : $full_link </span>
|
<hr> Lecturer/TA notes : $notes<br> <span style='font-size:8pt'>Submitted : $posted <b> </b> <button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Re-Mark Submission</button><br> Attachments : $full_link </span>
|
||||||
</div></k>";
|
</div></k>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo "";
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="menu3" class="container tab-pane"><br>
|
||||||
|
|
||||||
}}
|
<?php
|
||||||
echo "";
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
if ($Report_Type == "Group") {
|
||||||
</div>
|
$resulty = mysqli_query($con, "SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="menu3" class="container tab-pane"><br>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
if($Report_Type=="Group")
|
|
||||||
{
|
|
||||||
$resulty = mysqli_query($con,"SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, lab_report_submissions.Marks, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, lab_report_submissions.Marks, lab_report_submissions.Status,
|
||||||
`Title`,course_groups_table.Group_Name
|
`Title`,course_groups_table.Group_Name
|
||||||
|
@ -321,10 +284,8 @@ FROM `lab_report_submissions`
|
||||||
|
|
||||||
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Remarking'");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Remarking'");
|
||||||
}
|
} else {
|
||||||
else
|
$resulty = mysqli_query($con, "SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
||||||
{
|
|
||||||
$resulty = mysqli_query($con,"SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
|
|
||||||
lab_report_submissions.Remarking_Reason,
|
lab_report_submissions.Remarking_Reason,
|
||||||
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
lab_report_submissions.Student_id sub_std, lab_report_submissions.Course_Group_id, `Attachment1`,
|
||||||
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, lab_report_submissions.Marks, lab_report_submissions.Status,
|
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, lab_report_submissions.Marks, lab_report_submissions.Status,
|
||||||
|
@ -333,147 +294,117 @@ FROM `lab_report_submissions`
|
||||||
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
|
||||||
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
left JOIN course_group_members_table on course_group_members_table.Course_Group_id=lab_report_submissions.Course_Group_id
|
||||||
where Lab_Report_ID=$id and lab_report_submissions.Status='Remarking'");
|
where Lab_Report_ID=$id and lab_report_submissions.Status='Remarking'");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mysqli_num_rows($resulty)==0)
|
if (mysqli_num_rows($resulty) == 0) {
|
||||||
{
|
echo "No Remarking Request for this lab";
|
||||||
echo "No Remarking Request for this lab";
|
} else {
|
||||||
|
while ($row = mysqli_fetch_assoc($resulty)) {
|
||||||
|
$title = $row['Title'];
|
||||||
|
$Marks = $row['Marks'];
|
||||||
|
//$ins=$row['Notes'];
|
||||||
|
$posted = $row['Submission_Date'];
|
||||||
|
$deadline = $row['Deadline'];
|
||||||
|
|
||||||
} else { while($row = mysqli_fetch_assoc($resulty)) {
|
$att1 = $row['Attachment1'];
|
||||||
$title=$row['Title'];
|
$att2 = $row['Attachment2'];
|
||||||
$Marks=$row['Marks'];
|
$att3 = $row['Attachment3'];
|
||||||
//$ins=$row['Notes'];
|
$att4 = $row['Attachment4'];
|
||||||
$posted=$row['Submission_Date'];
|
$labid = $row['Lab_Report_ID'];
|
||||||
$deadline=$row['Deadline'];
|
|
||||||
|
|
||||||
$att1=$row['Attachment1'];
|
$remarking_reason = $row['Remarking_Reason'];
|
||||||
$att2=$row['Attachment2'];
|
|
||||||
$att3=$row['Attachment3'];
|
|
||||||
$att4=$row['Attachment4'];
|
|
||||||
$labid=$row['Lab_Report_ID'];
|
|
||||||
|
|
||||||
$remarking_reason=$row['Remarking_Reason'];
|
$submitter_student_number = $row['Student_id'];
|
||||||
|
$submitted_group = $row['Course_Group_id'];
|
||||||
|
$Submission_ID = $row['Submission_ID'];
|
||||||
|
$student_name = $row['Full_Name'];
|
||||||
|
$student_id = $row['sub_std'];
|
||||||
|
$gname = $row['Group_Name '];
|
||||||
|
|
||||||
$submitter_student_number=$row['Student_id'];
|
if ($submitted_group == 0) {
|
||||||
$submitted_group=$row['Course_Group_id'];
|
$submitted_by = $student_name . "(" . $student_id . ")";
|
||||||
$Submission_ID=$row['Submission_ID'];
|
} else {
|
||||||
$student_name=$row['Full_Name'];
|
$submitted_by = "<i>(GROUP)</i> $gname";
|
||||||
$student_id=$row['sub_std'];
|
}
|
||||||
$gname=$row['Group_Name '];
|
|
||||||
|
|
||||||
if($submitted_group==0)
|
$full_link = "<a href='~\..\Lab_Report_Submisions\\$att1'>$att1</a>";
|
||||||
{
|
|
||||||
$submitted_by= $student_name."(".$student_id.")";
|
|
||||||
} else {
|
|
||||||
$submitted_by="<i>(GROUP)</i> $gname" ;
|
|
||||||
}
|
|
||||||
|
|
||||||
$full_link="<a href='~\..\Lab_Report_Submisions\\$att1'>$att1</a>";
|
if ($att2 != "") {
|
||||||
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att2'>$att2</a>";
|
||||||
|
}
|
||||||
|
if ($att3 != "") {
|
||||||
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att3'>$att3</a>";
|
||||||
|
}
|
||||||
|
|
||||||
if($att2!=""){
|
if ($att4 != "") {
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att2'>$att2</a>";
|
$full_link = $full_link . "| <a href='~\..\Lab_Report_Submisions\\$att4'>$att4</a>";
|
||||||
}
|
}
|
||||||
if($att3!=""){
|
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att3'>$att3</a>";
|
|
||||||
}
|
|
||||||
|
|
||||||
if($att4!=""){
|
|
||||||
$full_link= $full_link."| <a href='~\..\Lab_Report_Submisions\\$att4'>$att4</a>";
|
|
||||||
}
|
|
||||||
echo " <k href='#'> <div class='btn btn-default break-word' style='dislay:block; word-wrap: break-word; border: 1px solid #F0F0F0;border-left: 4px solid #03407B;'>
|
|
||||||
$title <br> by : <b> $submitted_by [ Marked $Marks ] </b> <br> Remarking Reason : <b>$remarking_reason </b>
|
$title <br> by : <b> $submitted_by [ Marked $Marks ] </b> <br> Remarking Reason : <b>$remarking_reason </b>
|
||||||
<hr> <span style='font-size:8pt'>Submitted : $posted <b> </b> "
|
<hr> <span style='font-size:8pt'>Submitted : $posted <b> </b> "
|
||||||
. "<button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Re-Mark Submission</button>"
|
. "<button class='btn-sm btn-info' style='margin-left:50px;' onclick='mark($Submission_ID,\"$title\",$total)'> Re-Mark Submission</button>"
|
||||||
. " <a href='~\..\Script.php?ignoreremarking=yes&id=$id&subid=$Submission_ID&header=$header&total=$total&status=Marked' class='btn-sm btn-warning'> Ignore Request </a>"
|
. " <a href='~\..\Script.php?ignoreremarking=yes&id=$id&subid=$Submission_ID&header=$header&total=$total&status=Marked' class='btn-sm btn-warning'> Ignore Request </a>"
|
||||||
. "<br> Attachments : $full_link </span>
|
. "<br> Attachments : $full_link </span>
|
||||||
</div></k>";
|
</div></k>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo "";
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="menu4" class="container tab-pane"><br>
|
||||||
|
|
||||||
}}
|
<h3>Course Groups</h3>
|
||||||
echo "";
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<?php
|
||||||
|
|
||||||
</div>
|
$result = mysqli_query($con, " SELECT `Course_Group_id`, `Group_Name`, `Group_Leader`, `Course_id`,users_table.Full_Name
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="menu4" class="container tab-pane"><br>
|
|
||||||
|
|
||||||
<h3>Course Groups</h3>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
$result = mysqli_query($con," SELECT `Course_Group_id`, `Group_Name`, `Group_Leader`, `Course_id`,users_table.Full_Name
|
|
||||||
FROM `course_groups_table`
|
FROM `course_groups_table`
|
||||||
INNER JOIN users_table on users_table.Student_ID=course_groups_table.Group_Leader
|
INNER JOIN users_table on users_table.Student_ID=course_groups_table.Group_Leader
|
||||||
WHERE Course_id=$c_id");
|
WHERE Course_id=$c_id");
|
||||||
|
|
||||||
if(mysqli_num_rows($result)==0)
|
if (mysqli_num_rows($result) == 0) {
|
||||||
{
|
echo "You have no Group in this Course";
|
||||||
echo "You have no Group in this Course";
|
} else {
|
||||||
} else { while($row = mysqli_fetch_assoc($result)) {
|
while ($row = mysqli_fetch_assoc($result)) {
|
||||||
$name=$row['Group_Name'];
|
$name = $row['Group_Name'];
|
||||||
$leader=$row['Full_Name']."(".$row['Group_Leader'].")";
|
$leader = $row['Full_Name'] . "(" . $row['Group_Leader'] . ")";
|
||||||
$id= $row['Course_Group_id'];
|
$id = $row['Course_Group_id'];
|
||||||
|
|
||||||
|
echo "<div class='btn-default'><small> $name - Leader : $leader </small></div>";
|
||||||
|
|
||||||
echo "<div class='btn-default'><small> $name - Leader : $leader </small></div>";
|
$rs2 = mysqli_query($con, "SELECT `ID`, `Course_Group_id`, course_group_members_table.Student_ID,
|
||||||
|
|
||||||
$rs2=mysqli_query($con,"SELECT `ID`, `Course_Group_id`, course_group_members_table.Student_ID,
|
|
||||||
course_group_members_table.`Status`,users_table.Full_Name FROM `course_group_members_table`
|
course_group_members_table.`Status`,users_table.Full_Name FROM `course_group_members_table`
|
||||||
INNER JOIN users_table on users_table.Student_ID=course_group_members_table.Student_ID
|
INNER JOIN users_table on users_table.Student_ID=course_group_members_table.Student_ID
|
||||||
where course_group_members_table.Course_Group_id=$id");
|
where course_group_members_table.Course_Group_id=$id");
|
||||||
|
|
||||||
while($row = mysqli_fetch_assoc($rs2)) {
|
while ($row = mysqli_fetch_assoc($rs2)) {
|
||||||
$name=$row['Full_Name'];
|
$name = $row['Full_Name'];
|
||||||
$id=$row['Course_Group_id'];
|
$id = $row['Course_Group_id'];
|
||||||
$status=$row['Status'];
|
$status = $row['Status'];
|
||||||
$Student_ID=$row['Student_ID'];
|
$Student_ID = $row['Student_ID'];
|
||||||
|
|
||||||
|
|
||||||
echo "<li><small> $name-$Student_ID ($status)</small></li>";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
||||||
|
echo "<li><small> $name-$Student_ID ($status)</small></li>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
include 'Footer.php';
|
include 'Footer.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<script src="http://118.25.96.118/nor/css/jquery-1.11.1.min.js"></script>
|
<script src="http://118.25.96.118/nor/css/jquery-1.11.1.min.js"></script>
|
||||||
|
|
||||||
<script src="http://118.25.96.118/nor/css/jquery-ui.min.js"></script>
|
<script src="http://118.25.96.118/nor/css/jquery-ui.min.js"></script>
|
||||||
|
@ -481,70 +412,60 @@ include 'Footer.php';
|
||||||
<link rel="stylesheet" href="http://118.25.96.118/nor/css/jquery-ui.css" />
|
<link rel="stylesheet" href="http://118.25.96.118/nor/css/jquery-ui.css" />
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
function mark(id, title, marks) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
function mark(id,title,marks) {
|
$('<form id="submit-form" method="get" action="Script.php">' + title + '(' + marks + ' marks) <input type="hidden" name="savemarks" value="true">\n\
|
||||||
|
<input type="hidden" name="total" value="' + marks + '" > <input type="hidden" name="id" value="' + id + '" ><br> Marks <input type="text" name="marks">\n\
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
$('<form id="submit-form" method="get" action="Script.php">'+title+'('+marks+' marks) <input type="hidden" name="savemarks" value="true">\n\
|
|
||||||
<input type="hidden" name="total" value="'+marks+'" > <input type="hidden" name="id" value="'+id+'" ><br> Marks <input type="text" name="marks">\n\
|
|
||||||
Comments <textarea name="feedback"></textarea> \n\
|
Comments <textarea name="feedback"></textarea> \n\
|
||||||
<input type="hidden" name="labid" value="<?php echo $course_id; ?>"> <input type="hidden" name="header" value="<?php echo $header; ?>"> </form>').dialog({
|
<input type="hidden" name="labid" value="<?php echo $course_id; ?>"> <input type="hidden" name="header" value="<?php echo $header; ?>"> </form>').dialog({
|
||||||
modal: true,
|
modal: true,
|
||||||
title:'Mark Submission',
|
title: 'Mark Submission',
|
||||||
buttons: {
|
buttons: {
|
||||||
'Submit Marking': function () {
|
'Submit Marking': function() {
|
||||||
$('#submit-form').submit();
|
$('#submit-form').submit();
|
||||||
|
|
||||||
$(this).dialog('close');
|
$(this).dialog('close');
|
||||||
},
|
},
|
||||||
'X': function () {
|
'X': function() {
|
||||||
|
|
||||||
$(this).dialog('close');
|
$(this).dialog('close');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}catch(e){ alert(e); }
|
} catch (e) {
|
||||||
|
alert(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updatev(id) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
$('<form id="submit-form" method="get" action="Script.php"> <input type="hidden" name="updatevisibility" value="true">\n\
|
||||||
function updatev(id)
|
<input type="hidden" name="id" value="' + id + '" > <br>\n\
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
$('<form id="submit-form" method="get" action="Script.php"> <input type="hidden" name="updatevisibility" value="true">\n\
|
|
||||||
<input type="hidden" name="id" value="'+id+'" > <br>\n\
|
|
||||||
Update Visibility<br><select name="status"> <option> Public </option><option>Private</option> </select> \n\
|
Update Visibility<br><select name="status"> <option> Public </option><option>Private</option> </select> \n\
|
||||||
<input type="hidden" name="labid" value="<?php echo $id; ?>"> <input type="hidden" name="total" value="<?php echo $total; ?>" > <input type="hidden" name="header" value="<?php echo $header; ?>"> </form>').dialog({
|
<input type="hidden" name="labid" value="<?php echo $id; ?>"> <input type="hidden" name="total" value="<?php echo $total; ?>" > <input type="hidden" name="header" value="<?php echo $header; ?>"> </form>').dialog({
|
||||||
modal: true,
|
modal: true,
|
||||||
title:'Update Report Visibility',
|
title: 'Update Report Visibility',
|
||||||
buttons: {
|
buttons: {
|
||||||
'Update': function () {
|
'Update': function() {
|
||||||
$('#submit-form').submit();
|
$('#submit-form').submit();
|
||||||
$(this).dialog('close');
|
$(this).dialog('close');
|
||||||
},
|
},
|
||||||
'X': function () {
|
'X': function() {
|
||||||
|
|
||||||
$(this).dialog('close');
|
$(this).dialog('close');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}catch(e){ alert(e); }
|
} catch (e) {
|
||||||
}
|
alert(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue