-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployee_notification.php
More file actions
44 lines (40 loc) · 1.14 KB
/
Copy pathemployee_notification.php
File metadata and controls
44 lines (40 loc) · 1.14 KB
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
<?php
include_once('header.php');
$cur_page='notifications';
include('side_menu.php');
?>
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-file-o fa-fw"></i> Notifications</h3>
</div>
<div class="panel-body">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#latest">Latest</a></li>
<li><a data-toggle="tab" href="#others">Others</a></li>
</ul>
<div class="tab-content" id="tab_content">
<?php
$notifications=get_notification_data();
foreach($notifications as $notifi)
{
?>
<div class="panel panel-default" style="margin-bottom: 0px;">
<div class="panel-body" style="padding: 10px;"><a href="<?php echo $notifi['url'];?>" class="_blank cvplbd" target="_blank" data-wpel-link="internal"><?php echo $notifi['name']?></a></div>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->