forked from PHPFusion/PHPFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewpage.php
86 lines (76 loc) · 3.24 KB
/
viewpage.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
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) PHP-Fusion Inc
| https://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: viewpage.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php";
require_once THEMES."templates/header.php";
require_once INCLUDES."comments_include.php";
require_once INCLUDES."ratings_include.php";
include LOCALE.LOCALESET."custom_pages.php";
if (!isset($_GET['page_id']) || !isnum($_GET['page_id'])) redirect("index.php");
$_GET['rowstart'] = isset($_GET['rowstart']) && isnum($_GET['rowstart']) ? $_GET['rowstart'] : 0;
$cp_result = dbquery("SELECT * FROM ".DB_CUSTOM_PAGES." WHERE page_id='".$_GET['page_id']."' AND ".groupaccess('page_access'));
if (dbrows($cp_result)) {
$cp_data = dbarray($cp_result);
if (multilang_table("CP")) {
$page_lng = explode(".", $cp_data['page_language']);
if (!in_array(LANGUAGE, $page_lng)) {
redirect('home.php');
}
}
$custompage['title'] = $cp_data['page_title'];
add_to_title($locale['global_200'].$cp_data['page_title']);
add_breadcrumb(array('link'=>BASEDIR."viewpage.php?page_id=".$_GET['page_id'], 'title'=>$cp_data['page_title']));
if ($cp_data['page_keywords'] !=="") { set_meta("keywords", $cp_data['page_keywords']); }
ob_start();
eval("?>".stripslashes($cp_data['page_content'])."<?php ");
$eval = ob_get_contents();
ob_end_clean();
$custompage['body'] = preg_split("/<!?--\s*pagebreak\s*-->/i", $eval);
$custompage['count'] = count($custompage['body']);
} else {
add_to_title($locale['global_200'].$locale['401']);
$custompage['title'] = $locale['401'];
$custompage['error'] = $locale['402'];
}
/**
* Render Custom Page
*/
opentable($custompage['title']);
echo "<!--custompages-pre-content-->\n";
if (!empty($custompage['error'])) {
echo "<div class='well text-center'>\n";
echo $custompage['error'];
echo "</div>\n";
} else {
echo $custompage['body'][$_GET['rowstart']];
}
closetable();
if ($custompage['count']>0) {
if (isset($_GET['rowstart']) && $_GET['rowstart'] > $custompage['count']) redirect(BASEDIR."viewpage.php?page_id=".$_GET['page_id']);
echo "<div class='display-block text-center m-t-5'>\n".makepagenav($_GET['rowstart'], 1, $custompage['count'], 1, BASEDIR."viewpage.php?page_id=".$_GET['page_id']."&")."\n</div>\n";
}
echo "<!--custompages-after-content-->\n";
if (dbrows($cp_result) && checkgroup($cp_data['page_access'])) {
if ($cp_data['page_allow_comments']) {
showcomments("C", DB_CUSTOM_PAGES, "page_id", $_GET['page_id'], BASEDIR."viewpage.php?page_id=".$_GET['page_id']);
}
if ($cp_data['page_allow_ratings']) {
showratings("C", $_GET['page_id'], BASEDIR."viewpage.php?page_id=".$_GET['page_id']);
}
}
require_once THEMES."templates/footer.php";
?>