Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F211471
page.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
page.php
View Options
<?php
/*
* Zed
* (c) 2010, Dereckson, some rights reserved
* Released under BSD license
*
* HTML content
*/
if
(!
$code
=
$db
->
sql_escape
(
$url
[
1
]))
{
message_die
(
HACK_ERROR
,
"/page/ must be followed by page code"
);
}
//
// Handles editor form
//
if
(
$_POST
[
'code'
])
{
dieprint_r
(
$_POST
);
}
//
// Gets page
//
$sql
=
"SELECT page_title, page_content, page_code FROM "
.
TABLE_PAGES
.
" WHERE page_code LIKE '$code'"
;
if
(
!(
$result
=
$db
->
sql_query
(
$sql
))
)
message_die
(
SQL_ERROR
,
"Can't get pages"
,
''
,
__LINE__
,
__FILE__
,
$sql
);
$row
=
$db
->
sql_fetchrow
(
$result
);
switch
(
$_GET
[
'mode'
])
{
case
'edit'
:
$template
=
'page_edit.tpl'
;
if
(
$row
)
{
$smarty
->
assign
(
'PAGE_TITLE'
,
$row
[
'page_title'
]);
$smarty
->
assign
(
'page'
,
$row
);
}
else
{
$smarty
->
assign
(
'PAGE_TITLE'
,
$code
);
$page
[
'page_code'
]
=
$code
;
$smarty
->
assign
(
'page'
,
$page
);
unset
(
$page
);
}
$smarty
->
assign
(
'PAGE_JS'
,
'FCKeditor/fckeditor.js'
);
break
;
default
:
if
(
$row
)
{
$smarty
->
assign
(
'PAGE_TITLE'
,
$row
[
'page_title'
]);
$content
=
"<h1>$row[page_title]</h1>
\n
$row[page_content]"
;
}
else
{
$smarty
->
assign
(
'PAGE_TITLE'
,
lang_get
(
'PageNotFound'
));
$content
=
lang_get
(
'PageNotFound'
);
}
//Adds edit link
if
(
$CurrentPerso
->
flags
[
'admin.pages.editor'
])
{
$content
.=
'<p class="info" style="text-align: right">[ <a href="?mode=edit">Edit page</a> ]</p>'
;
}
$template
=
'raw.tpl'
;
$smarty
->
assign
(
'CONTENT'
,
$content
);
break
;
}
//
// HTML output
//
//Serves header
include
(
'header.php'
);
//Serves content
$smarty
->
display
(
$template
);
//Serves footer
include
(
'footer.php'
);
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Nov 23, 15:23 (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
22541
Default Alt Text
page.php (1 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment