LiteSpeed Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64 safemode : OFF MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF > / home / cuneytsener53 / kurumsal40.snrsoft.com.tr / yonetim / | Server Ip : 104.21.78.54 |
Filename | /home/cuneytsener53/kurumsal40.snrsoft.com.tr/yonetim/fotogaleri.php |
Size | 9.3 kb |
Permission | rw-r--r-- |
Owner | |
Create time | 02-Mar-2025 05:46 |
Last modified | 27-Dec-2021 14:10 |
Last accessed | 05-Apr-2025 10:23 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
class SimpleImage {
var $image;
var $image_type;
function load($filename) {
$image_info = getimagesize($filename);
$this->image_type = $image_info[2];
if( $this->image_type == IMAGETYPE_JPEG ) {
$this->image = imagecreatefromjpeg($filename);
} elseif( $this->image_type == IMAGETYPE_GIF ) {
$this->image = imagecreatefromgif($filename);
} elseif( $this->image_type == IMAGETYPE_PNG ) {
$this->image = imagecreatefrompng($filename);
}
}
function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image,$filename,$compression);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image,$filename);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image,$filename);
}
if( $permissions != null) {
chmod($filename,$permissions);
}
}
function output($image_type=IMAGETYPE_JPEG) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image);
}
}
function getWidth() {
return imagesx($this->image);
}
function getHeight() {
return imagesy($this->image);
}
function resizeToHeight($height) {
$ratio = $height / $this->getHeight();
$width = $this->getWidth() * $ratio;
$this->resize($width,$height);
}
function resizeToWidth($width) {
$ratio = $width / $this->getWidth();
$height = $this->getheight() * $ratio;
$this->resize($width,$height);
}
function scale($scale) {
$width = $this->getWidth() * $scale/100;
$height = $this->getheight() * $scale/100;
$this->resize($width,$height);
}
function resize($width,$height) {
$new_image = imagecreatetruecolor($width, $height);
imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $new_image;
}
}
if($_POST)
{
$id = "1";
$baslik = "Fotoğraf Galeri";
$dil = $_SESSION['dil'];
if (!empty($_FILES['resim']['name'])) {
if($resimtip != 'image/jpeg' && $resimtip != 'image/png' && $uzanti != '.jpg' && $uzanti != '.png' && $uzanti != '.jpeg'){
$not = '
<div class="alert alert-danger">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Lütfen !</strong> Jpg ve Png uzantılı resim yükleyiniz ....
</div>
' ;
}else{
$ekle = move_uploaded_file($resimkonum, $yol.'/'.$yeniad);
$image = new SimpleImage();
$image->load("../images/fotogaleri/".$yeniad);
$image->resize(1920,879);
$image->save('../images/fotogaleri/thumb-'.$yeniad);
$ekleme = $DB->prepare("update fotogaleri set baslik=?, resim=?, dil=? where id=$id ");
$ekleme->execute(array($baslik,$yeniad,$dil));
}
if ($ekleme) {
$not = '<div class="alert alert-danger">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Güncellendi !</strong> Foto Galeriyi Başarıyla Güncellediniz.
<div></div></div>' ;
}
}else{
$ekleme = $DB->prepare("update fotogaleri set baslik=?, dil=? where id=$id ");
$ekleme->execute(array($baslik,$dil));
if ($ekleme) {
foreach ($_SESSION["tümresimler"] as $r) {
$ekle = $DB->prepare("insert into sayfa_resim set sayfaresim=?, konu=?, resim_id=?");
$ekle->execute(array($r,'fotogaleri',$id));
}
unset($_SESSION["tümresimler"]);
$not = '<div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Güncellendi !</strong> Foto Galeriyi Başarıyla Güncellediniz.
<div></div></div>
' ;
}else{
$not = ' <div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Hata !</strong> Bir hata oluştu tekrar deneyiniz.
</div>
' ;
}
}
}
if($_GET['ok']=="gn")
{
$id = "1";
$verial = $DB->query("select * from fotogaleri where id=$id")->fetch(PDO::FETCH_ASSOC);
}
if(isset($_GET["yes"]) && $_GET['yes'] == "del" && isset($_GET["sid"])) {
$sid = intval($_GET['sid']);
$verisil = $DB->prepare("delete from sayfa_resim where id='$sid'");
$verisil->execute(array($id));
if ($verisil) {
$not = ' <div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>SİLİNDİ !</strong> Diğer Resim Silindi ....
</div>' ;
}
}
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Fotoğraf Galeri
</h1>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html"><i class="fa fa-home"></i> Anasayfa</a></li>
<li class="breadcrumb-item"><a href="fotogaleri.html"> Fotoğraf Galeri</a></li>
</ol>
<?=$not?>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-12">
<div class="box box-default">
<!-- /.box-header -->
<div class="box-body">
<form class="form-horizontal" action="#" method="post" enctype="multipart/form-data">
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active show" id="home1" role="tabpanel">
<input type="hidden" name="hit" value="1">
</br>
<div class="form-group">
<iframe src="topluresim.php" style="width:100%;height:210px;" frameborder="0"></iframe>
<div id="dz-previews">
<?php
$mesajlar = $DB->query("select * from sayfa_resim where konu='fotogaleri'")->fetchAll(PDO::FETCH_ASSOC);
foreach ($mesajlar as $key) { ?>
<div id="" class="pad-top bord-top dz-image-preview" style="margin-bottom:-25px;border-color:black;border-radius:unset;">
<div class="media">
<!--This is used as the file preview template-->
<div class="media-left">
<img width="60px" height="60px" class="dz-img" data-dz-thumbnail="" alt="<?php echo $key['sayfaresim'] ?>" src="../images/diger/<?php echo $key['sayfaresim'] ?>">
</div>
<div class="media-body">
<div id="dz-total-progress" style="opacity:0">
<div class="progress progress-xs active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar progress-bar-success" style="width:0%;" data-dz-uploadprogress=""></div>
</div>
</div>
</div>
<div class="media-right" style="margin-top:20px;">
<a onclick="return confirm('Silmek istediğinize emin misiniz ?')" href="?ok=gn&id=<?php echo $verial['id']; ?>&yes=del&sid=<?php echo $key['id']; ?>" class="btn btn-sm btn-danger"><i class="ti-trash"></i></a>
</div>
</div>
</div>
<?php } ?>
</div>
<!--===================================================-->
<!--End Dropzonejs using Bootstrap theme-->
</div>
</div>
</div>
</div>
<?php if($_GET['ok']=="gn"){?>
<button type="submit" id="button3" class="btn btn-block btn-success">Güncelle</button>
<?php }else{?>
<button type="submit" id="button3" class="btn btn-block btn-warning">Kaydet</button>
<?php } ?>
</div>
</form>
</div>
<!-- /.box-body -->
</div>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<!-- include summernote css/js-->
class SimpleImage {
var $image;
var $image_type;
function load($filename) {
$image_info = getimagesize($filename);
$this->image_type = $image_info[2];
if( $this->image_type == IMAGETYPE_JPEG ) {
$this->image = imagecreatefromjpeg($filename);
} elseif( $this->image_type == IMAGETYPE_GIF ) {
$this->image = imagecreatefromgif($filename);
} elseif( $this->image_type == IMAGETYPE_PNG ) {
$this->image = imagecreatefrompng($filename);
}
}
function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image,$filename,$compression);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image,$filename);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image,$filename);
}
if( $permissions != null) {
chmod($filename,$permissions);
}
}
function output($image_type=IMAGETYPE_JPEG) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image);
}
}
function getWidth() {
return imagesx($this->image);
}
function getHeight() {
return imagesy($this->image);
}
function resizeToHeight($height) {
$ratio = $height / $this->getHeight();
$width = $this->getWidth() * $ratio;
$this->resize($width,$height);
}
function resizeToWidth($width) {
$ratio = $width / $this->getWidth();
$height = $this->getheight() * $ratio;
$this->resize($width,$height);
}
function scale($scale) {
$width = $this->getWidth() * $scale/100;
$height = $this->getheight() * $scale/100;
$this->resize($width,$height);
}
function resize($width,$height) {
$new_image = imagecreatetruecolor($width, $height);
imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $new_image;
}
}
if($_POST)
{
$id = "1";
$baslik = "Fotoğraf Galeri";
$dil = $_SESSION['dil'];
if (!empty($_FILES['resim']['name'])) {
if($resimtip != 'image/jpeg' && $resimtip != 'image/png' && $uzanti != '.jpg' && $uzanti != '.png' && $uzanti != '.jpeg'){
$not = '
<div class="alert alert-danger">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Lütfen !</strong> Jpg ve Png uzantılı resim yükleyiniz ....
</div>
' ;
}else{
$ekle = move_uploaded_file($resimkonum, $yol.'/'.$yeniad);
$image = new SimpleImage();
$image->load("../images/fotogaleri/".$yeniad);
$image->resize(1920,879);
$image->save('../images/fotogaleri/thumb-'.$yeniad);
$ekleme = $DB->prepare("update fotogaleri set baslik=?, resim=?, dil=? where id=$id ");
$ekleme->execute(array($baslik,$yeniad,$dil));
}
if ($ekleme) {
$not = '<div class="alert alert-danger">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Güncellendi !</strong> Foto Galeriyi Başarıyla Güncellediniz.
<div></div></div>' ;
}
}else{
$ekleme = $DB->prepare("update fotogaleri set baslik=?, dil=? where id=$id ");
$ekleme->execute(array($baslik,$dil));
if ($ekleme) {
foreach ($_SESSION["tümresimler"] as $r) {
$ekle = $DB->prepare("insert into sayfa_resim set sayfaresim=?, konu=?, resim_id=?");
$ekle->execute(array($r,'fotogaleri',$id));
}
unset($_SESSION["tümresimler"]);
$not = '<div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Güncellendi !</strong> Foto Galeriyi Başarıyla Güncellediniz.
<div></div></div>
' ;
}else{
$not = ' <div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>Hata !</strong> Bir hata oluştu tekrar deneyiniz.
</div>
' ;
}
}
}
if($_GET['ok']=="gn")
{
$id = "1";
$verial = $DB->query("select * from fotogaleri where id=$id")->fetch(PDO::FETCH_ASSOC);
}
if(isset($_GET["yes"]) && $_GET['yes'] == "del" && isset($_GET["sid"])) {
$sid = intval($_GET['sid']);
$verisil = $DB->prepare("delete from sayfa_resim where id='$sid'");
$verisil->execute(array($id));
if ($verisil) {
$not = ' <div class="alert alert-warning">
<button class="close" data-dismiss="alert"><i class="pci-cross pci-circle"></i></button>
<strong>SİLİNDİ !</strong> Diğer Resim Silindi ....
</div>' ;
}
}
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Fotoğraf Galeri
</h1>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html"><i class="fa fa-home"></i> Anasayfa</a></li>
<li class="breadcrumb-item"><a href="fotogaleri.html"> Fotoğraf Galeri</a></li>
</ol>
<?=$not?>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-12">
<div class="box box-default">
<!-- /.box-header -->
<div class="box-body">
<form class="form-horizontal" action="#" method="post" enctype="multipart/form-data">
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active show" id="home1" role="tabpanel">
<input type="hidden" name="hit" value="1">
</br>
<div class="form-group">
<iframe src="topluresim.php" style="width:100%;height:210px;" frameborder="0"></iframe>
<div id="dz-previews">
<?php
$mesajlar = $DB->query("select * from sayfa_resim where konu='fotogaleri'")->fetchAll(PDO::FETCH_ASSOC);
foreach ($mesajlar as $key) { ?>
<div id="" class="pad-top bord-top dz-image-preview" style="margin-bottom:-25px;border-color:black;border-radius:unset;">
<div class="media">
<!--This is used as the file preview template-->
<div class="media-left">
<img width="60px" height="60px" class="dz-img" data-dz-thumbnail="" alt="<?php echo $key['sayfaresim'] ?>" src="../images/diger/<?php echo $key['sayfaresim'] ?>">
</div>
<div class="media-body">
<div id="dz-total-progress" style="opacity:0">
<div class="progress progress-xs active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">
<div class="progress-bar progress-bar-success" style="width:0%;" data-dz-uploadprogress=""></div>
</div>
</div>
</div>
<div class="media-right" style="margin-top:20px;">
<a onclick="return confirm('Silmek istediğinize emin misiniz ?')" href="?ok=gn&id=<?php echo $verial['id']; ?>&yes=del&sid=<?php echo $key['id']; ?>" class="btn btn-sm btn-danger"><i class="ti-trash"></i></a>
</div>
</div>
</div>
<?php } ?>
</div>
<!--===================================================-->
<!--End Dropzonejs using Bootstrap theme-->
</div>
</div>
</div>
</div>
<?php if($_GET['ok']=="gn"){?>
<button type="submit" id="button3" class="btn btn-block btn-success">Güncelle</button>
<?php }else{?>
<button type="submit" id="button3" class="btn btn-block btn-warning">Kaydet</button>
<?php } ?>
</div>
</form>
</div>
<!-- /.box-body -->
</div>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<!-- include summernote css/js-->