Fifth pass at adding key files
This commit is contained in:
31
site/stackreach/approve_frame.php
Executable file
31
site/stackreach/approve_frame.php
Executable file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
include_once './config.php';
|
||||
include_once './models/services/FrameService.php';
|
||||
|
||||
if (!is_updater())
|
||||
return header('location:http://www.slowtwitch.com');
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST')
|
||||
{
|
||||
if (is_updater ())
|
||||
{
|
||||
|
||||
$frame_id = $_POST['id'];
|
||||
$frameService = new FrameService();
|
||||
$item = $frameService->getFrameByID($frame_id);
|
||||
$item->approved = 1;
|
||||
|
||||
$frameService->updateFrame($item);
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo $_SERVER['REQUEST_METHOD'];
|
||||
}
|
||||
|
||||
header('location:frames.php');
|
||||
?>
|
Reference in New Issue
Block a user