Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP7 Decoder for ionCube Encoder)
- *
- * @ Version : 4.1.0.1
- * @ Author : DeZender
- * @ Release on : 29.08.2020
- * @ Official site : http://DeZender.Net
- *
- */
- require_once 'baglan.php';
- require_once 'fonksiyon.php';
- require_once 'class.upload.php';
- require_once 'class.phpmailer.php';
- $logo = url . tema . '/uploads/logo/footer/' . footerlogo;
- $domain_bilgi = url;
- if (empty($_POST) && empty($_GET)) {
- header('Location:../' . yonetim . '/');
- exit();
- }
- if (isset($_POST['urun_ekle'])) {
- OYet9qjdkH_panelislemkontrol();
- if ($_SESSION['rutbe'] == 0) {
- $sira = $_POST['sira'];
- $kategori = $_POST['kategori'];
- $adi = $_POST['adi'];
- $urun_kodu = $_POST['urun_kodu'];
- $fiyat = $_POST['fiyat'];
- $pbirim = $_POST['pbirim'];
- if ($_POST['ifiyat']) {
- $ifiyat = $_POST['ifiyat'];
- }
- else {
- $ifiyat = NULL;
- }
- $seo = OYet9qjdkH_seo($adi);
- $spot = $_POST['spot'];
- $aciklama = $_POST['aciklama'];
- $description = $_POST['description'];
- $keywords = $_POST['keywords'];
- $stok = $_POST['stok'];
- if ($_POST['durum']) {
- $durum = 1;
- }
- else {
- $durum = 0;
- }
- if ($_POST['anasayfa']) {
- $anasayfa = 1;
- }
- else {
- $anasayfa = 0;
- }
- if ($_POST['yeni']) {
- $yeni = 1;
- }
- else {
- $yeni = 0;
- }
- $tarih = date('Y-m-d H:i:s');
- $tarih = OYet9qjdkH_tr_tarih($tarih);
- $resimler = json_decode($_POST['resimler'], true);
- $ozellikler = NULL;
- foreach ($_POST['ozellik'] as $k => $v) {
- $ozellik = explode('-', $v);
- if (isset($ozellikler[$ozellik[0]])) {
- $ozellikler[$ozellik[0]] .= '|' . @$ozellik[1];
- }
- else {
- $ozellikler[$ozellik[0]] = @$ozellik[1];
- }
- }
- if (is_array($ozellikler)) {
- $_ozellikler = NULL;
- foreach ($ozellikler as $k => $v) {
- if (is_null($_ozellikler)) {
- $_ozellikler = $k . '-' . $v;
- }
- else {
- $_ozellikler .= ',' . $k . '-' . $v;
- }
- ...................................................................
- ..........................................
- ...................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement