-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate-edit.php
More file actions
executable file
·133 lines (107 loc) · 4.42 KB
/
Copy pathtemplate-edit.php
File metadata and controls
executable file
·133 lines (107 loc) · 4.42 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
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
<?php
/*
Qikblogger is a multi-user multi-blog engine (PHP + MySQL/PostgreSQL/SQLite)
with support for permalinks, tags, RSS and customised themes.
This file is part of Qikblogger.
Copyright (c) 2006 Akshay Surve
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Contact: ak47surve@yahoo.com
Website: http://qikblogger.sourceforge.net
Blog: http://qikblogger.blogspot.com
*/
// example usage: post-create.php?blog_name=qb
session_start();
// include config file
require_once("config.php");
// include files
require_once(INC_ROOT."/dblayer.php");
require_once(INC_ROOT."/system.php");
require_once(INC_ROOT."/users.php");
require_once(INC_ROOT."/blogs.php");
require_once(INC_ROOT."/posts.php");
require_once(INC_ROOT."/menu.php");
// initialise db access
global $db;
$db = new MySQL();
$db->connect();
$redirect_to = WEB_ROOT.'/home.php';
$showform = false;
$err_msg = '';
$status_msg = '';
$critical_err_msg = '';
if ( !is_login() ) { // not logged in
header("Location: http://" . $_SERVER['HTTP_HOST'] .$redirect_to);
} else { // logged in
$qb_title = 'Qikblogger : Edit your Template';
include("inc/header-meta.inc");
$u = new User();
$u = user_load('',$_SESSION['username']);
if( isset($_GET['blog_name']) ) { // continue
$blog_name = html_entity_decode(strtolower(trim($_GET['blog_name'])));
$u->set_user_type($blog_name);
if ( $CUR_USER == BLOG_OWNER ) { // proceed
$b = new Blog();
$b = blog_load($blog_name);
$filepath = "files/".$b->blog_name."/template/index.tpl";
if ( isset($_POST['save']) ) { //process form for edit
$template = trim($_POST['template']);
$template = stripcslashes($template);
$fp = fopen($filepath,"w");
if ( fwrite($fp,$template) ) {
$status_msg = "Changes to the template have been saved sucessfully.";
} else {
$critical_err_msg = "Changes to the template could not be saved.";
}
fclose($fp);
} else if ( isset($_POST['use']) ) { //process form for apply template
// name of the template
$template_name = strtolower(trim($_POST['template-name']));
// path to the template
$template_path = "templates/".$template_name."/template/index.tpl";
// read the template in the variable
$fp = fopen($template_path,"r");
$template = fread($fp,filesize($template_path));
fclose($fp);
//$template = stripcslashes($template);
$fp = fopen($filepath,"w");
if ( fwrite($fp,$template) ) {
$status_msg = "Template <strong>$template_name</strong> has been activated.";
} else {
$critical_err_msg = "Template <strong>$template_name</strong> could not be activated.";
}
fclose($fp);
}
$fp = fopen($filepath,"r");
$template = fread($fp,filesize($filepath));
//$template = $template;
fclose($fp);
$showform = true;
} else { // cant proceed you need to be a owner or mod
//echo $CUR_USER;
$critical_err_msg='You should be a Blog Moderator';//header("Location: http://" . $_SERVER['HTTP_HOST'] .$redirect_to);
}
} else { //you have come nowhere !
$critical_err_msg = 'In a hurry kya? ';
}
}
if ( $showform == true ) {
include("inc/qb-dynamic-header.inc");
$page_name = 'template-edit';
get_menus($page_name,$b);
include("inc/grey-header.inc");
include("inc/content-template-edit.inc");
include("inc/content-footer.inc");
include("inc/grey-footer.inc");
include("inc/qb-static-footer.inc");
}
?>