| 1 | <?php
 | 
  
    | 2 | 
 | 
  
    | 3 | // $Id: save_group.php 40 2005-09-07 19:22:34Z stefan $
 | 
  
    | 4 | 
 | 
  
    | 5 | /*
 | 
  
    | 6 | 
 | 
  
    | 7 |  Website Baker Project <http://www.websitebaker.org/>
 | 
  
    | 8 |  Copyright (C) 2004-2005, Ryan Djurovich
 | 
  
    | 9 | 
 | 
  
    | 10 |  Website Baker is free software; you can redistribute it and/or modify
 | 
  
    | 11 |  it under the terms of the GNU General Public License as published by
 | 
  
    | 12 |  the Free Software Foundation; either version 2 of the License, or
 | 
  
    | 13 |  (at your option) any later version.
 | 
  
    | 14 | 
 | 
  
    | 15 |  Website Baker is distributed in the hope that it will be useful,
 | 
  
    | 16 |  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
  
    | 17 |  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
  
    | 18 |  GNU General Public License for more details.
 | 
  
    | 19 | 
 | 
  
    | 20 |  You should have received a copy of the GNU General Public License
 | 
  
    | 21 |  along with Website Baker; if not, write to the Free Software
 | 
  
    | 22 |  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | 
  
    | 23 | 
 | 
  
    | 24 | */
 | 
  
    | 25 | 
 | 
  
    | 26 | require('../../config.php');
 | 
  
    | 27 | 
 | 
  
    | 28 | // Get id
 | 
  
    | 29 | if(!isset($_POST['group_id']) OR !is_numeric($_POST['group_id'])) {
 | 
  
    | 30 | 	header("Location: ".ADMIN_URL."/pages/index.php");
 | 
  
    | 31 | } else {
 | 
  
    | 32 | 	$group_id = $_POST['group_id'];
 | 
  
    | 33 | }
 | 
  
    | 34 | 
 | 
  
    | 35 | // Include WB admin wrapper script
 | 
  
    | 36 | $update_when_modified = true; // Tells script to update when this page was last updated
 | 
  
    | 37 | require(WB_PATH.'/modules/admin.php');
 | 
  
    | 38 | 
 | 
  
    | 39 | // Include WB functions file
 | 
  
    | 40 | require(WB_PATH.'/framework/functions.php');
 | 
  
    | 41 | 
 | 
  
    | 42 | // Vagroup_idate all fields
 | 
  
    | 43 | if($admin->get_post('title') == '') {
 | 
  
    | 44 | 	$admin->print_error($MESSAGE['GENERIC']['FILL_IN_ALL'], WB_URL.'/modules/news/modify_group.php?page_id='.$page_id.'§ion_id='.$section_id.'&group_id='.$group_id);
 | 
  
    | 45 | } else {
 | 
  
    | 46 | 	$title = $admin->add_slashes($admin->get_post('title'));
 | 
  
    | 47 | 	$active = $admin->get_post('active');
 | 
  
    | 48 | }
 | 
  
    | 49 | 
 | 
  
    | 50 | // Update row
 | 
  
    | 51 | $database->query("UPDATE ".TABLE_PREFIX."mod_news_groups SET title = '$title', active = '$active' WHERE group_id = '$group_id'");
 | 
  
    | 52 | 
 | 
  
    | 53 | // Check if the user uploaded an image or wants to delete one
 | 
  
    | 54 | if(isset($_FILES['image']['tmp_name']) AND $_FILES['image']['tmp_name'] != '') {
 | 
  
    | 55 | 	// Get real filename and set new filename
 | 
  
    | 56 | 	$filename = $_FILES['image']['name'];
 | 
  
    | 57 | 	$new_filename = WB_PATH.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg';
 | 
  
    | 58 | 	// Make sure the image is a jpg file
 | 
  
    | 59 | 	if(substr($filename, -3, 3) != 'jpg') {
 | 
  
    | 60 | 		$admin->print_error($MESSAGE['GENERIC']['FILE_TYPE'].' JPG (JPEG)');
 | 
  
    | 61 | 	} elseif(mime_content_type($_FILES['image']['tmp_name']) != 'image/jpeg' AND mime_content_type($_FILES['image']['tmp_name']) != 'image/jpg') {
 | 
  
    | 62 | 		$admin->print_error($MESSAGE['GENERIC']['FILE_TYPE'].' JPG (JPEG)');
 | 
  
    | 63 | 	}
 | 
  
    | 64 | 	// Make sure the target directory exists
 | 
  
    | 65 | 	make_dir(WB_PATH.MEDIA_DIRECTORY.'/.news');
 | 
  
    | 66 | 	// Upload image
 | 
  
    | 67 | 	move_uploaded_file($_FILES['image']['tmp_name'], $new_filename);
 | 
  
    | 68 | 	// Check if we need to create a thumb
 | 
  
    | 69 | 	$query_settings = $database->query("SELECT resize FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '$section_id'");
 | 
  
    | 70 | 	$fetch_settings = $query_settings->fetchRow();
 | 
  
    | 71 | 	$resize = $fetch_settings['resize'];
 | 
  
    | 72 | 	if($resize != 0) {
 | 
  
    | 73 | 		// Resize the image
 | 
  
    | 74 | 		$thumb_location = WB_PATH.MEDIA_DIRECTORY.'/.news/thumb'.$group_id.'.jpg';
 | 
  
    | 75 | 		if(make_thumb($new_filename, $thumb_location, $resize)) {
 | 
  
    | 76 | 			// Delete the actual image and replace with the resized version
 | 
  
    | 77 | 			unlink($new_filename);
 | 
  
    | 78 | 			rename($thumb_location, $new_filename);
 | 
  
    | 79 | 		}
 | 
  
    | 80 | 	}
 | 
  
    | 81 | }
 | 
  
    | 82 | if(isset($_POST['delete_image']) AND $_POST['delete_image'] != '') {
 | 
  
    | 83 | 	// Try unlinking image
 | 
  
    | 84 | 	if(file_exists(WB_PATH.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg')) {
 | 
  
    | 85 | 		unlink(WB_PATH.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg');
 | 
  
    | 86 | 	}
 | 
  
    | 87 | }
 | 
  
    | 88 | 
 | 
  
    | 89 | // Check if there is a db error, otherwise say successful
 | 
  
    | 90 | if($database->is_error()) {
 | 
  
    | 91 | 	$admin->print_error($database->get_error(), WB_URL.'/modules/news/modify_group.php?page_id='.$page_id.'§ion_id='.$section_id.'&group_id='.$group_id);
 | 
  
    | 92 | } else {
 | 
  
    | 93 | 	$admin->print_success($TEXT['SUCCESS'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
 | 
  
    | 94 | }
 | 
  
    | 95 | 
 | 
  
    | 96 | // Print admin footer
 | 
  
    | 97 | $admin->print_footer();
 | 
  
    | 98 | 
 | 
  
    | 99 | ?>
 |