| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/chatme24.com/wwwroot/ |
Upload File : |
<?php
/* (C) Websplosion LLC, 2001-2021
IMPORTANT: This is a commercial software product
and any kind of using it must agree to the Websplosion's license agreement.
It can be found at http://www.chameleonsocial.com/license.doc
This notice may not be removed from the source code. */
$area = "login";
include("./_include/core/main_start.php");
require_once("./_include/current/places/header.php");
require_once("./_include/current/places/sidebar.php");
require_once("./_include/current/places/place_show.php");
require_once("./_include/current/places/place_image_list.php");
require_once("./_include/current/places/tools.php");
class CPlaceAddPhotos extends CHtmlBlock
{
function action()
{
global $g_user;
global $g;
global $l;
$cmd = get_param('cmd');
if($cmd == "upload")
{
$id = get_param('id');
DB::query("SELECT * FROM places_place WHERE id=" . to_sql($id, 'Number') . " LIMIT 1");
if($place = DB::fetch_row())
{
$time = DB::result('SELECT NOW()');
for($image_n = 0; $image_n < 6; ++$image_n)
{
$name = "image_" . $image_n;
if (isset($_FILES[$name]) && is_uploaded_file($_FILES[$name]["tmp_name"]))
{
DB::execute("insert into places_place_image set place_id = " . $place['id'] . ", user_id = " . $g_user['user_id'] . ", created_at = " . to_sql($time, 'Text'));
$image_id = DB::insert_id();
$sFile_ = $g['path']['dir_files'] . "places_images/" . $image_id . "_";
$im = new Image();
if ($im->loadImage($_FILES[$name]['tmp_name'])) {
$im->saveImage($sFile_ . "src.jpg", $g['image']['quality_orig']);
@chmod($sFile_ . "src.jpg", 0777);
}
if ($im->loadImage($_FILES[$name]['tmp_name'])) {
#Old settings $g['places_image']['big_x'], $g['places_image']['big_y']
$im->resizeWH($im->getWidth(), $im->getHeight(), false, $g['image']['logo'], $g['image']['logo_size']);
$im->saveImage($sFile_ . "b.jpg", $g['image']['quality']);
@chmod($sFile_ . "b.jpg", 0777);
}
if ($im->loadImage($sFile_ . "b.jpg", $g['image']['quality'])) {
$im->resizeCropped($g['places_image']['thumbnail_x'], $g['places_image']['thumbnail_y'], $g['image']['logo'], 0);
$im->saveImage($sFile_ . "th.jpg", $g['image']['quality']);
@chmod($sFile_ . "th.jpg", 0777);
}
if ($im->loadImage($sFile_ . "b.jpg", $g['image']['quality'])) {
$im->resizeCropped($g['places_image']['thumbnail_big_x'], $g['places_image']['thumbnail_big_y'], $g['image']['logo'], 0);
$im->saveImage($sFile_ . "th_b.jpg", $g['image']['quality']);
@chmod($sFile_ . "th_b.jpg", 0777);
Wall::add('places_photo', $place['id'], false, $time, true);
}
$path = array($sFile_ . 'b.jpg', $sFile_ . 'th.jpg', $sFile_ . 'th_b.jpg', $sFile_ . 'src.jpg');
Common::saveFileSize($path);
}
}
CPlacesTools::place_update_has_photos($place['id']);
redirect('places_place_show.php?id=' . $place['id']);
}
else
redirect('home.php');
}
}
function parseBlock(&$html)
{
global $g_user;
global $l;
$id = get_param('id');
DB::query("SELECT * FROM places_place WHERE id=" . to_sql($id, 'Number') . " LIMIT 1");
if($place = DB::fetch_row())
{
$html->setvar('place_id', $place['id']);
$html->setvar('place_name', to_html($place['name']));
}
else
redirect('home.php');
parent::parseBlock($html);
}
}
$page = new CPlaceAddPhotos("", $g['tmpl']['dir_tmpl_main'] . "places_place_add_photos.html");
$header = new CHeader("header", $g['tmpl']['dir_tmpl_main'] . "_header.html");
$page->add($header);
$footer = new CFooter("footer", $g['tmpl']['dir_tmpl_main'] . "_footer.html");
$page->add($footer);
$places_header = new CPlacesHeader("places_header", $g['tmpl']['dir_tmpl_main'] . "_places_header.html");
$page->add($places_header);
$places_sidebar = new CPlacesSidebar("places_sidebar", $g['tmpl']['dir_tmpl_main'] . "_places_sidebar.html");
$page->add($places_sidebar);
$places_place_show = new CPlacesPlaceShow("places_place_show", $g['tmpl']['dir_tmpl_main'] . "_places_place_show.html");
$places_place_show->show_rating = false;
$page->add($places_place_show);
$places_place_image_list = new CPlacesPlaceImageList("places_place_image_list", $g['tmpl']['dir_tmpl_main'] . "_places_place_image_list.html");
$places_place_image_list->show_add_button = false;
$places_place_show->add($places_place_image_list);
include("./_include/core/main_close.php");
?>