ACIL FM
Dark
Refresh
Current DIR:
/home/fastexsh/public_html/soodino/admin
/
home
fastexsh
public_html
soodino
admin
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
add_balance.php
6.8 MB
chmod
View
DL
Edit
Rename
Delete
add_new_user.php
6.42 MB
chmod
View
DL
Edit
Rename
Delete
advanced_features.php
36.48 MB
chmod
View
DL
Edit
Rename
Delete
channel_settings.php
2.68 MB
chmod
View
DL
Edit
Rename
Delete
error_log
4.51 MB
chmod
View
DL
Edit
Rename
Delete
extra_features.php
3.37 MB
chmod
View
DL
Edit
Rename
Delete
login_admin.php
943 B
chmod
View
DL
Edit
Rename
Delete
manage_admin.php
6.12 MB
chmod
View
DL
Edit
Rename
Delete
reduce_balance.php
11.93 MB
chmod
View
DL
Edit
Rename
Delete
search_transaction.php
4.1 MB
chmod
View
DL
Edit
Rename
Delete
search_user.php
21.06 MB
chmod
View
DL
Edit
Rename
Delete
stats.php
2.79 MB
chmod
View
DL
Edit
Rename
Delete
withdraw_requests.php
11.51 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/fastexsh/public_html/soodino/admin/extra_features.php
<?php // مشاهده لیست ادمینها if ($text == "👑 لیست ادمینها" && $user->logged_in == 1 && isAdmin($user->login_username)) { $stmt = $pdo->prepare("SELECT `username`, `full_name`, `base_investment`, `current_profit` FROM `accounts` WHERE `is_admin` = 1 ORDER BY `id` DESC"); $stmt->execute(); $admins = $stmt->fetchAll(); if (empty($admins)) { sendMessage($from_id, "❌ *هیچ ادمینی یافت نشد*", $adminMainKeyboard); die; } $responseText = "👑 *لیست ادمینها*\n\n"; foreach ($admins as $index => $admin) { $fullName = $admin->full_name ?? $admin->username; $baseInvestment = number_format($admin->base_investment); $currentProfit = number_format($admin->current_profit); $responseText .= "*#" . ($index + 1) . "*\n"; $responseText .= "👤 نام: *{$fullName}*\n"; $responseText .= "📱 تلفن: `{$admin->username}`\n"; $responseText .= "💰 سرمایه: *{$baseInvestment}* تومان\n"; $responseText .= "📈 سود: *{$currentProfit}* تومان\n\n"; } sendMessage($from_id, $responseText, $adminMainKeyboard); die; } // مشاهده گزارش روزانه if ($text == "📅 گزارش روزانه" && $user->logged_in == 1 && isAdmin($user->login_username)) { $today = date('Y-m-d'); // تراکنشهای امروز $stmtProfit = $pdo->prepare("SELECT COUNT(*) as total, SUM(`amount`) as total_amount FROM `profit_transactions` WHERE DATE(`created_at`) = ?"); $stmtProfit->execute([$today]); $profitToday = $stmtProfit->fetch(); $stmtBase = $pdo->prepare("SELECT COUNT(*) as total, SUM(`amount`) as total_amount FROM `base_investment_transactions` WHERE DATE(`created_at`) = ?"); $stmtBase->execute([$today]); $baseToday = $stmtBase->fetch(); $stmtWithdraw = $pdo->prepare("SELECT COUNT(*) as total, SUM(`amount`) as total_amount FROM `withdraw_requests` WHERE DATE(`created_at`) = ?"); $stmtWithdraw->execute([$today]); $withdrawToday = $stmtWithdraw->fetch(); $stmtNewUsers = $pdo->prepare("SELECT COUNT(*) as total FROM `accounts` WHERE DATE(`created_at`) = ? AND `is_admin` = 0"); $stmtNewUsers->execute([$today]); $newUsersToday = $stmtNewUsers->fetch()->total; $shamsiDate = jdate('Y/m/d'); $responseText = "📅 *گزارش روزانه*\n\n" . "📅 تاریخ: *{$shamsiDate}*\n\n\n" . "💰 *تراکنشهای امروز*\n\n" . "➕ تراکنشهای سود: *" . ($profitToday->total ?? 0) . "*\n" . "➕ جمع سودها: *" . number_format($profitToday->total_amount ?? 0) . "* تومان\n" . "💰 تراکنشهای پایه: *" . ($baseToday->total ?? 0) . "*\n" . "💰 جمع مبالغ پایه: *" . number_format($baseToday->total_amount ?? 0) . "* تومان\n\n\n" . "💸 *درخواستهای برداشت*\n\n" . "📊 تعداد: *" . ($withdrawToday->total ?? 0) . "*\n" . "💰 جمع مبالغ: *" . number_format($withdrawToday->total_amount ?? 0) . "* تومان\n\n\n" . "👥 *کاربران جدید*\n\n" . "➕ تعداد: *{$newUsersToday}* کاربر"; sendMessage($from_id, $responseText, $adminMainKeyboard); die; }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply