This commit is contained in:
mstfyldz
2026-02-16 18:56:01 +03:00
parent 192dfc2de8
commit bc423156cf
2975 changed files with 1171022 additions and 0 deletions

91
yaren/appads.php Normal file
View File

@@ -0,0 +1,91 @@
<?php
/**
*
* @ This file is created by http://DeZender.Net
* @ deZender (PHP7 Decoder for SourceGuardian Encoder)
*
* @ Version : 4.1.0.1
* @ Author : DeZender
* @ Release on : 29.08.2020
* @ Official site : http://DeZender.Net
*
*/
$jsondata = file_get_contents('./api/main.json');
$data = json_decode($jsondata, true);
$json = $data['app'];
$admob_banner_id = $json['admob_banner_id'];
$admob_interstitial_id = $json['admob_interstitial_id'];
$message = '<div class="alert alert-primary" id="flash-msg"><h4><i class="icon fa fa-check"></i>Items Updated!</h4></div>';
if (isset($_POST['submit'])) {
$jsonData = file_get_contents('./api/main.json');
$arrayData = json_decode($jsonData, true);
$replacementData = [
'app' => ['admob_banner_id' => $_POST['admob_banner_id'], 'admob_interstitial_id' => $_POST['admob_interstitial_id']]
];
$newArrayData = array_replace_recursive($arrayData, $replacementData);
$newJsonData = json_encode($newArrayData, JSON_UNESCAPED_UNICODE);
file_put_contents('./api/main.json', $newJsonData);
header('Location: appads.php?message=' . $message);
}
include 'includes/header.php';
echo ' <!-- Begin Page Content -->' . "\n";
echo ' <div class="container-fluid">' . "\n";
echo "\n";
if (isset($_GET['message'])) {
echo $_GET['message'];
}
echo ' <!-- Page Heading -->' . "\n";
echo ' <h1 class="h3 mb-1 text-gray-800">App Ads</h1>' . "\n";
echo ' ' . "\n";
echo ' <!-- Content Row -->' . "\n";
echo ' <div class="row">' . "\n";
echo "\n";
echo ' <!-- First Column -->' . "\n";
echo ' <div class="col-lg-12">' . "\n";
echo "\n";
echo ' <!-- Custom codes -->' . "\n";
echo ' <div class="card border-left-primary shadow h-100 card shadow mb-4">' . "\n";
echo ' <div class="card-header py-3">' . "\n";
echo ' <h6 class="m-0 font-weight-bold text-primary"><i class="fa fa-rocket"></i> Ad Customisation</h6>' . "\n";
echo ' </div>' . "\n";
echo ' <div class="card-body">' . "\n";
echo ' <form method="post">' . "\n";
echo ' <div class="form-group ">' . "\n";
echo ' <label class="control-label " for="admob_banner_id">' . "\n";
echo ' <strong> Admob Banner Id</strong>' . "\n";
echo ' </label>' . "\n";
echo ' <div class="input-group">' . "\n";
echo ' <input class="form-control text-primary" id="description" name="admob_banner_id" value="' . $admob_banner_id . '" type="text"/>' . "\n";
echo ' </div>' . "\n";
echo ' </div>' . "\n";
echo ' <div class="form-group ">' . "\n";
echo ' <label class="control-label " for="admob_interstitial_id">' . "\n";
echo ' <strong> Admob Interstitial Id</strong>' . "\n";
echo ' </label>' . "\n";
echo ' <div class="input-group">' . "\n";
echo ' <input type="text" class="form-control text-primary" name="admob_interstitial_id" id="date" value="' . $admob_interstitial_id . '">' . "\n";
echo ' </div>' . "\n";
echo ' </div>' . "\n";
echo ' <div class="form-group">' . "\n";
echo ' <div>' . "\n";
echo ' <button class="btn btn-success btn-icon-split" name="submit" type="submit">' . "\n";
echo ' <span class="icon text-white-50"><i class="fas fa-check"></i></span><span class="text">Submit</span>' . "\n";
echo ' </button>' . "\n";
echo ' </div>' . "\n";
echo ' </div>' . "\n";
echo ' </form>' . "\n";
echo ' </div>' . "\n";
echo ' </div>' . "\n";
echo ' </div>' . "\n";
echo "\n";
echo ' <br><br><br>';
include 'includes/footer.php';
require 'includes/appsnscripts.php';
echo ' </body>' . "\n";
?>