-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog_view.php
executable file
·480 lines (407 loc) · 18.8 KB
/
blog_view.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<?php
error_reporting( ~E_NOTICE ); // avoid notice
session_start();
require_once 'class.farmer.php';
require_once 'consultants/class.consultant.php';
$farmer_home = new FARMER();
if(!$farmer_home->is_logged_in())
{
$_SESSION['redirect_url'] = $_SERVER['PHP_SELF'];
}
if($farmer_home->is_logged_in()){
$stmt = $farmer_home->runQuery("SELECT * FROM tbl_farmers WHERE email=:email_id");
$stmt->execute(array(":email_id"=>$_SESSION['farmerSession']));
$row = $stmt->fetch(PDO::FETCH_ASSOC);
if ($row['photo']=="") {
$pic = "<img class='img-circle ' src='img/user.png' style='' height=50px width=50px />";
}
}
$farmer_home_post = new Database();
if($farmer_home_post->dbConnection())
{
include_once 'class.blog.php';
$paginate = new paginate();
}
$admin_home = new CONSULTANT();
if($admin_home->is_logged_in()){
$stmt = $admin_home->runQuery("SELECT * FROM tbl_consultants WHERE email=:email_id");
$stmt->execute(array(":email_id"=>$_SESSION['consultantSession']));
$row = $stmt->fetch(PDO::FETCH_ASSOC);
if ($row['photo']=="") {
$pic = "<img class='img-circle ' src='img/user.png' style='' height=50px width=50px />";
}
}
// if (isset($_POST['btn-fav'])) {
// $fav_mess = trim($_POST['btn-fav']);
// $email = $row['email'] ;
// $favourite = 1;
// $fav_no = 0;
// $stmt = $farmer_home->runQuery("SELECT * FROM message_fav WHERE postID=:email_id AND email='$row[email]'");
// $stmt->execute(array(":email_id"=>$fav_mess));
// //$list = $stmt->fetch(PDO::FETCH_ASSOC);
// if($stmt->rowCount()==0){
// $farmer_home->farmer_fav($fav_mess,$email,$favourite);
// }
// }
?>
<?php
$_SESSION['$var'] = $_GET['page'];
$stmt = $admin_home->runQuery("SELECT * FROM message_posts WHERE ID=:email_id");
$stmt->execute(array(":email_id"=> $_SESSION['$var']));
$message = $stmt->fetch(PDO::FETCH_ASSOC);
if ($stmt->rowCount() < 1) {
header("Location: blog ");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="#SSS" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="font/css/font-awesome.css" rel="stylesheet" />
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300' rel='stylesheet' type='text/css'>
<!-- <link rel="shortcut icon" href="images/asawa.jpg"> -->
<link rel="stylesheet" href="css/material-inputs.css">
<title>Farmer | Blog View</title>
<script type="text/javascript" src="js/jquery2.js"></script>
<script type="text/javascript">
function cwRating(id){
$.ajax({
type:'POST',
url:'favourite.php',
data:'id='+id,
success:function(msg){
if(msg == 'fav'){
$('.faver').removeClass('btn-default').addClass('btn-primary');
}else{
$('.faver').removeClass('btn-primary').addClass('btn-default');
}
}
});
return false;
}
</script>
<!-- favourite colouring -->
<?php
$stmt = $farmer_home->runQuery("SELECT * FROM message_fav WHERE postID=:email_id AND email='$row[email]'");
$stmt->execute(array(":email_id"=>$message['ID']));
$list = $stmt->fetch(PDO::FETCH_ASSOC);
?>
<script type="text/javascript">
$('document').ready(function() {
if (<?php echo $list['favourite']; ?>==1) {
$('.faver').removeClass('btn-default').addClass('btn-primary');
}else{
$('.faver').removeClass('btn-primary').addClass('btn-default');
}
});
</script>
</head>
<body">
<section>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index">FarmBase</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index">Home</a></li>
<li ><a href="blog">Blog</a></li>
<!-- <li><a href="#">Tenders</a></li> -->
<li><a href="about">About Farmbase</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<?php
if($farmer_home->is_logged_in()) {
?>
<li id="header_inbox_bar" class="dropdown">
<!-- messages in inbox here -->
</li>
<!-- inbox dropdown end -->
<li><a href="farmer_post"><span class="glyphicon glyphicon"></span> Post Produce Ad</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<?php
if(isset($pic)){
echo $pic;
} else { ?>
<img class="img-circle " src="farmer_images/<?php echo $row['photo']; ?>" style=" padding:0px;" height=50px />
<?php
}?>
<span class=""></span> <?php echo $row['name']; ?> <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="farmer_profile"><span class="glyphicon glyphicon-user"></span> Edit Profile</a></li>
<li><a href="message_favs"><span class="glyphicon glyphicon-user"></span> Favourites</a></li>
<li><a href="logout"><span class="glyphicon glyphicon-log-out"></span> Sign Out</a></li>
</ul>
</li><?php } ?>
<?php if(!$farmer_home->is_logged_in() AND !$admin_home->is_logged_in() ) {
?>
<li><a href="farmer_signin" title="login">Login</a></li> <?php }
?>
<?php
if($admin_home->is_logged_in() ) {
?>
<li id="header_inbox" class="dropdown">
<!-- messages in inbox here -->
</li>
<!-- inbox dropdown end -->
<li><a href="consultants/home"><span class="glyphicon glyphicon"></span> Post Message</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<?php
if(isset($pic)){
echo $pic;
} else { ?>
<img class="img-circle " src="consultants/consult_images/<?php echo $row['photo']; ?>" style=" padding:0px;" height=50px />
<?php
}?>
<span class=""></span> <?php echo $row['email']; ?> <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="consultants/consultant_profile"><span class="glyphicon glyphicon-user"></span> Edit Profile</a></li>
<li><a href="message_favs"><span class="glyphicon glyphicon-user"></span> Favourites</a></li>
<li><a href="consultants/logout"><span class="glyphicon glyphicon-log-out"></span> Sign Out</a></li>
</ul>
</li><?php } ?>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="clearfix"></div>
<div class="col-lg-2 col-lg-offset-5">
<br style="margin: 30px;">
</div>
<section>
<div class="container" id="panel_post">
<div class="tab-content clearfix ">
<div class="tab-pane fade in active" id="feeds" style="width: 100%!important; padding: 0px!important;">
<?php
//php codes taken to top
?>
<h2 class="h2">More on <?php echo $message['title']; ?></h2>
<div class='col-md-12 row-eq-height card' ">
<div class="col-md-5 col-sm-5">
<?php if ( $message['photo']==''){
echo "";
}else {?>
<img src="consultants/message_images/<?php echo $message['photo']; ?>" style="padding: 10px 0px;" class="item_image img-responsive" />
<?php }
?>
</div>
<div class="col-md-7 col-sm-7 " style="padding: 0px!important;">
<div class="col-md-7" style="padding: 0px!important;">
<h6 class="itemed h6"><?php echo $message['cartegory']; ?></h6>
<h3 class="itemed h3"><b><?php echo $message['title']; ?></b></h3><span class="itemed h5"> <?php echo date('M j, Y',strtotime($message['timer'])); ?></span>
<h4 class="itemed h4 " style="font-style: italic;"><?php
date_default_timezone_set('Africa/Nairobi');
$timed = $message['timer'];
$timestamp = strtotime($timed);
$strTime = array("second", "minute", "hour", "day", "month", "year");
$length = array("60","60","24","30","12","10");
$currentTime = time();
if($currentTime >= $timestamp) {
$diff = time()- $timestamp;
for($i = 0; $diff >= $length[$i] && $i < count($length)-1; $i++) {
$diff = $diff / $length[$i];
}
$diff = round($diff);
echo $diff . " " . $strTime[$i] . "(s) ago ";
} ?></h4>
</div>
<div class="col-md-5 col-sm-5 card ">
<div class="col-md-12" style="padding:2px;" >
<h3 class="h4"> Posted By</h3>
</div>
<div class="col-md-12 " style="padding:2px;">
<div class="col-md-3">
<?php
if ($message['userpic']=="") {
$pic4 = "<img class='img-circle ' src='img/user.png' style='' padding:0px; height=50px width=50px />";
}
?>
<?php
if(isset($pic4)){
echo $pic4;
} else { ?>
<img class="img-circle " src="consultants/consult_images/<?php echo $message['userpic']; ?>" style=" padding:0px;" height=50px />
<?php
}?>
</div>
<div class="col-md-9">
<p class="phoned"><?php echo $message['userName']; ?></p>
</div>
</div>
<div class="col-md-12" style="padding:2px;">
<a style="width: 150px; margin: 2px;" class="btn btn-sm btn-success" href="tel:+254-<?php echo $message['phone']; ?>">Call</a><br>
<button style="width: 150px; margin: 2px;" class="btn btn-sm btn-success" type="submit" data-toggle="modal" data-target="#messageForm">Message</button>
</div>
</div>
</div>
<div class="col-md-12 row">
<div class="col-md-12 ">
<span class="text"><?php echo $message['description']; ?></span>
<span class="phoned"><span class=""> By: </span><b><?php echo $message['userName']; ?></b> </span>
<span class="priced btn btn-default btn-xs"> <?php echo $message['phone']; ?></span>
<br>
<div style="float: right;">
<?php if($farmer_home->is_logged_in() OR $admin_home->is_logged_in() ) {
?>
<button name="btn-fav" class="btn faver btn-default btn-sm" onClick="cwRating(<?php echo $message['ID']; ?>)" type="submit" value="<?php echo $message['ID']; ?>"><span>Favourite </span><i class="glyphicon glyphicon-star"></i> </button>
<?php }
?>
<span id="likecount-blog"></span>
</div>
</div>
</div><div class="clearfix"></div>
<!-- php comments removed -->
<div class="col-md-12 row">
<h3 class="h3">Add Comment</h3>
</div>
<?php if($farmer_home->is_logged_in() OR $admin_home->is_logged_in() ) {
?>
<div class="col-md-10 col-md-offset-1">
<form method="post" id="comment-form">
<textarea name="comment" class="form-control" id="comment-box" required></textarea><br>
<button type="submit" class="btn btn-primary btn-sm" id="btn-comment" onclick="comment();" name="btn-comment" >Comment</button>
</form>
</div><br>
<?php } else {?>
<p><a href="farmer_signin">Login</a> | <a href="farmer_signup">Register</a> to comment </p><br>
<?php } ?>
<div class="row col-md-12">
<h4 class="h4">Comments</h4>
</div>
<div class="clearfix"></div><br>
<div class="col-md-12" id="read-comments" style="padding: 0px!important;">
<!-- Comments display here...-->
</div>
</div>
</div>
</div>
<div class="col-md-12 row-eq-height">
<h2 class="h2">You may also like;</h2>
<?php
$query = "SELECT * FROM message_posts WHERE cartegory = '$message[cartegory]' ORDER BY timer DESC";
$records_per_page=2;
$newquery = $paginate->paging($query,$records_per_page);
$paginate->dataview($newquery);
?>
<!-- <div class=" col-md-10 col-xs-12 col-md-offset-1">
<ul class="pagination"> -->
<?php
// $paginate->paginglink($query,$records_per_page);
?>
<!-- </ul>
</div> -->
</div>
</div>
</section>
<?php
//footer
include 'footer.php';
?>
</body>
<!--................message Pop Up..............-->
<div aria-hidden="true" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" class="modal fade" id="messageForm">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Send Message</h4>
</div>
<div class="modal-body">
<div id="dis">
<!-- here message will be displayed -->
</div>
<form class="form-horizontal" method="post" id="mess-sendForm">
<?php if($farmer_home->is_logged_in() OR $admin_home->is_logged_in() ) { ?>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Full Name:</label>
<div class="col-md-5">
<input type="text" name="name" class="form-control input-sm" value="<?php echo $row['name']; ?>" readonly >
</div>
</div>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Email:</label>
<div class="col-md-5">
<input type="email" name="email" class="form-control input-sm" value="<?php echo $row['email']; ?>" readonly >
</div>
</div>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Phone No:</label>
<div class="col-md-5">
<?php if ($row['phone'] != '') { ?>
<input type="text" name="phone" class="form-control input-sm" value="<?php echo $row['phone']; ?>" readonly > <?php } else { ?>
<input type="text" name="phone" class="form-control input-sm" placeholder="Phone No" required >
<?php } ?>
</div>
</div>
<?php } else { ?>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Full Name:</label>
<div class="col-md-5">
<input type="text" name="name" class="form-control input-sm" placeholder="Full Names" required >
</div>
</div>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Email:</label>
<div class="col-md-5">
<input type="email" name="email" class="form-control input-sm" placeholder="Email" required >
</div>
</div>
<div class="form-group">
<label class="col-md-4 col-md-offset-1">Phone No:</label>
<div class="col-md-5">
<input type="text" name="phone" class="form-control input-sm" placeholder="Phone No" required >
</div>
</div>
<?php } ?>
<div class="form-group ">
<label class="col-md-4 col-md-offset-1">Message:</label>
<div class="col-md-5">
<textarea name="message" class="form-control input-sm" placeholder="Message..." required></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-2 col-md-offset-8">
<button type="submit" class="btn btn-success" name="btn-save" id="btn-save">
<span class="glyphicon glyphicon-send"> </span> Send</button>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<p class="nnot">Create an <a href="farmer_signin">account </a> with us today</p>
</div>
</div>
</div>
</div>
<!--........................end of message pop up..............-->
<script type="text/javascript" src="js/jquery2.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- <script type="text/javascript" src="js/main.js"></script> -->
<script type="text/javascript" src="js/jquery.validate.min.js" ></script>
<script type="text/javascript" src="js/validation.min.js"></script>
<script type="text/javascript" src="js/register.js"></script>
<script type="text/javascript" src="js/comment.js"></script>
<script type="text/javascript" src="js/send-message-cons.js"></script>
<script type="text/javascript" src="js/notifications.js"> </script>
<script type="text/javascript">
$(document).ready(function(){
$("#likecount-blog").load("likecount_blog.php");
setInterval(function(){
$("#likecount-blog").load("likecount_blog.php")
}, 1000);
});
</script>
</html>