clipbucket/upload/admin_area/notification_settings.php

50 lines
1.1 KiB
PHP
Raw Normal View History

2013-10-07 12:17:06 +00:00
<?php
/*
**************************************************************
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
***************************************************************
*/
2013-10-07 12:17:06 +00:00
require_once '../includes/admin_config.php';
$userquery->admin_login_check();
$userquery->login_check('video_moderation');
2013-10-07 12:17:06 +00:00
2014-01-27 11:30:36 +00:00
/* Assigning page and subpage */
if(!defined('MAIN_PAGE')){
define('MAIN_PAGE', 'Videos');
}
if(!defined('SUB_PAGE')){
define('SUB_PAGE', 'Notification settings');
}
$mode = $_GET['mode'];
2014-01-27 11:30:36 +00:00
2013-10-07 12:17:06 +00:00
if($_POST['update_notification'])
{
$rows = array(
'notification_option');
foreach($rows as $field)
{
$value = $_POST[$field];
$myquery->Set_Website_Details($field,$value);
}
e("Notification Settings Have Been Updated",'m');
subtitle("Notification Settings");
}
$row = $myquery->Get_Website_Details();
assign('row',$row);
subtitle("Notification Settings");
2013-10-07 12:17:06 +00:00
template_files('notification_settings.html');
display_it();
?>