Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F883289
request.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
request.php
View Options
<?php
/*
* Zed
* (c) 2010, Dereckson, some rights reserved
* Released under BSD license
*
* Request
*
* This controllers handle all the forms output, handling and notifications
* for queries from users to users.
*/
//
// Prepare fields
//
if
(
count
(
$url
)
<
3
)
message_die
(
HACK_ERROR
,
"Expected URL: /request/code_to/code_object"
);
$request
->
to
=
$url
[
1
];
$request
->
obj
=
$url
[
2
];
//Checks if the request template exists
if
(!
file_exists
(
sprintf
(
"skins/%s/requests/%s.tpl"
,
THEME
,
$request
->
obj
)))
{
message_die
(
HACK_ERROR
,
"$url[2] isn't a valid request object code"
);
}
switch
(
$request
->
obj
)
{
case
"aid.reach"
:
if
(
$request
->
to
==
"B00001"
)
$request
->
title
=
"Shuttle pick up request"
;
break
;
}
//
// HTML output
//
//Serves header
define
(
'DIJIT'
,
true
);
$smarty
->
assign
(
'PAGE_TITLE'
,
lang_get
(
'Request'
));
include
(
'header.php'
);
//Serves content
$smarty
->
assign
(
'request'
,
$request
);
$smarty
->
display
(
"requests/$request->obj.tpl"
);
//Serves footer
$smarty
->
assign
(
"screen"
,
"$url[2] request"
);
include
(
'footer.php'
);
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 4, 20:58 (22 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
22477
Default Alt Text
request.php (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment