-
Notifications
You must be signed in to change notification settings - Fork 0
/
press.php
executable file
·51 lines (28 loc) · 1.03 KB
/
press.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
<html>
<head>
<link rel="stylesheet" href="css/style.css" type="text/css" >
<script type="text/javascript" src="javascripts/jquery.min.js"></script>
<script type="text/javascript" src="javascripts/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="javascripts/jquery.nicescroll.js"></script>
</head>
<body style="background-color:white; padding:0px; margin:0px; border:0px;">
<div id ="niceScroller1" style="height: 850px;">
<?php
//simply output the press mini feed for the floating iframe
require_once 'php/Csecurity.php';
require_once 'php/Cprojects.php';
$utility = Cprojects::getSingleton();
$project2 = null;
$dbatom = $utility->searchRecords($project2, Cprojects::presstable, 'date', 'false','DESC');
$utility->printDBatom($dbatom , 'htmlpress', 1);
?>
</div>
<script type="text/javascript">
$(document).ready(
function() {
$("#niceScroller1").niceScroll({styler:"fb", cursorcolor:"#000" , cursoropacitymin: 0.1, cursoropacitymax: 0.5, cursorwidth : 2 });
}
);
</script>
</body>
<html>