Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apps.acj
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Franklin
apps.acj
Commits
ff6cb240
Commit
ff6cb240
authored
Mar 15, 2024
by
Hussain Mohamed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes
parent
f2258ff4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
130 additions
and
1 deletion
+130
-1
ExamController.php
admin/application/controllers/ExamController.php
+26
-0
view_exam.php
admin/application/views/exam/view_exam.php
+103
-0
index.php
admin/index.php
+1
-1
No files found.
admin/application/controllers/ExamController.php
View file @
ff6cb240
...
...
@@ -15,6 +15,31 @@ class ExamController extends CI_Controller
$this
->
load
->
view
(
'base/base_template'
,
$data
);
}
public
function
viewExam
()
{
$view_data
[
'records'
]
=
$this
->
getExamQuestions
();
$data
=
array
(
'title'
=>
'View Exam'
,
'page'
=>
'View Exam'
,
'content'
=>
$this
->
load
->
view
(
'exam/view_exam'
,
$view_data
,
true
),
);
$this
->
load
->
view
(
'base/base_template'
,
$data
);
}
public
function
getExamQuestions
()
{
$this
->
db
->
select
(
'y.year, es.academic, es.exam_schedule, es.date, es.time, es.id,et.exam_type_name as name'
);
$this
->
db
->
from
(
'question as q'
);
$this
->
db
->
join
(
'exam_schedule as es'
,
'es.id = q.schedule_id'
,
'left'
);
$this
->
db
->
join
(
'accadamic_year as y'
,
'y.id = q.academic'
,
'left'
);
$this
->
db
->
join
(
'exam_type as et'
,
'et.id = q.exam_type'
,
'left'
);
$this
->
db
->
where
(
'es.status'
,
1
);
$this
->
db
->
group_by
(
'q.schedule_id'
);
$query
=
$this
->
db
->
get
();
return
$result
=
$query
->
result
();
}
}
?>
\ No newline at end of file
admin/application/views/exam/view_exam.php
0 → 100644
View file @
ff6cb240
<!DOCTYPE html>
<html
lang=
"en"
>
<meta
http-equiv=
"content-type"
content=
"text/html;charset=UTF-8"
/>
<head>
<title>
View Exam
</title>
</head>
<body>
<?php
$segment
=
$this
->
uri
->
segment
(
2
)
?>
<div
class=
"content-body"
>
<!-- row -->
<div
class=
"container-fluid"
>
<!-- Row -->
<div
class=
"row"
>
<div
class=
"col-xl-12"
>
<div
class=
"row"
>
<div
class=
"col-xl-12"
>
<div
class=
"page-title flex-wrap"
>
<div
class=
"input-group search-area mb-md-0 mb-3"
>
<input
type=
"text"
class=
"form-control"
placeholder=
"Search here..."
>
<span
class=
"input-group-text"
><a
href=
"javascript:void(0)"
>
<svg
width=
"15"
height=
"15"
viewBox=
"0 0 18 18"
fill=
"none"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
d=
"M17.5605 15.4395L13.7527 11.6317C14.5395 10.446 15 9.02625 15 7.5C15 3.3645 11.6355 0 7.5 0C3.3645 0 0 3.3645 0 7.5C0 11.6355 3.3645 15 7.5 15C9.02625 15 10.446 14.5395 11.6317 13.7527L15.4395 17.5605C16.0245 18.1462 16.9755 18.1462 17.5605 17.5605C18.1462 16.9747 18.1462 16.0252 17.5605 15.4395V15.4395ZM2.25 7.5C2.25 4.605 4.605 2.25 7.5 2.25C10.395 2.25 12.75 4.605 12.75 7.5C12.75 10.395 10.395 12.75 7.5 12.75C4.605 12.75 2.25 10.395 2.25 7.5V7.5Z"
fill=
"#01A3FF"
/>
</svg>
</a></span>
</div>
<div>
</div>
</div>
</div>
<!--column-->
<div
class=
"col-xl-12 wow fadeInUp"
data-wow-delay=
"1.5s"
>
<div
class=
"table-responsive full-data"
>
<table
class=
"table-responsive-lg table display dataTablesCard student-tab dataTable no-footer"
id=
"example-student"
>
<thead>
<tr>
<th
class=
"wd-20p"
>
S.No
</th>
<th
class=
"wd-25p"
>
Academic Year
</th>
<th
class=
"wd-15p"
>
Exam Type
</th>
<th
class=
"wd-15p"
>
Date
</th>
<th
class=
"wd-15p"
>
Time
</th>
<th
class=
"wd-15p"
>
Action
</th>
</tr>
</thead>
<tbody>
<?php
$i
=
1
;
foreach
(
$records
as
$row
)
{
?>
<tr>
<td>
<?=
$i
?>
</td>
<td>
<?=
$row
->
year
?>
</td>
<td>
<?=
$row
->
name
?>
</td>
<td>
<?=
isset
(
$row
->
date
)
?
date
(
'd-m-Y'
,
strtotime
(
$row
->
date
))
:
''
?>
</td>
<td>
<?=
isset
(
$row
->
time
)
?
date
(
'H:i a'
,
strtotime
(
$row
->
time
))
:
''
?>
</td>
<td>
<a
href=
"javascript:takeExam('
<?=
$row
->
id
?>
')"
data-toggle=
"tooltip"
id=
"edit"
data-placement=
"top"
title=
"Edit"
data-original-title=
"Edit"
class=
"btn btn-sm btn-info"
>
View
</a>
</td>
</tr>
<?php
$i
++
;
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<div
class=
"modal fade"
id=
"examModal"
tabindex=
"-1"
aria-labelledby=
"exampleModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog modal-dialog-center"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<h5
class=
"modal-title"
id=
"exampleModalLabel"
>
Take Exam
</h5>
<button
type=
"button"
class=
"btn-close"
data-bs-dismiss=
"modal"
aria-label=
"Close"
></button>
</div>
<div
class=
"modal-body"
>
</div>
<div
class=
"modal-footer"
>
<a
href=
"
<?=
base_url
(
'ExamController/takeExam/'
)
.
$row
->
id
?>
"
class=
"btn btn-primary"
>
Take Exam
</a>
</div>
</div>
</div>
</div>
<script>
function
takeExam
(
id
)
{
$
(
'#examModal'
).
modal
(
'show'
);
}
</script>
\ No newline at end of file
admin/index.php
View file @
ff6cb240
...
...
@@ -53,7 +53,7 @@
*
* NOTE: If you change these, also change the error_reporting() code below
*/
define
(
'ENVIRONMENT'
,
isset
(
$_SERVER
[
'CI_ENV'
])
?
$_SERVER
[
'CI_ENV'
]
:
'
development
'
);
define
(
'ENVIRONMENT'
,
isset
(
$_SERVER
[
'CI_ENV'
])
?
$_SERVER
[
'CI_ENV'
]
:
'
production
'
);
/*
*---------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment