One Hat Cyber Team
Your IP :
18.191.36.245
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
pass.electronharmony.com
/
fns
/
form
/
View File Name :
slideshow_images.php
<?php if (role(['permissions' => ['super_privileges' => 'slideshows']])) { $form = array(); include 'fns/filters/load.php'; include 'fns/files/load.php'; $location = 0; $form['loaded'] = new stdClass(); $form['fields'] = new stdClass(); if (isset($load["slideshow"])) { $load["slideshow"] = sanitize_filename($load['slideshow']); $location = 'assets/files/slideshows/'.$load["slideshow"].'/'; } if (isset($load["slideshow"]) && !empty($load["slideshow"]) && file_exists($location)) { $form['fields']->slideshow = [ "tag" => 'input', "type" => 'hidden', "class" => 'd-none', "value" => $load["slideshow"] ]; $form['loaded']->title = Registry::load('strings')->add_images; $form['loaded']->button = Registry::load('strings')->add; $slideshow_name = ucwords(str_replace('_', ' ', $load["slideshow"])); $form['fields']->process = [ "tag" => 'input', "type" => 'hidden', "class" => 'd-none', "value" => "add" ]; $form['fields']->add = [ "tag" => 'input', "type" => 'hidden', "class" => 'd-none', "value" => "slideshow_images" ]; $form['fields']->name = [ "title" => Registry::load('strings')->slideshow, "tag" => 'input', "type" => "text", "class" => 'field', "value" => $slideshow_name, "attributes" => ['disabled' => 1] ]; $form['fields']->images = [ "title" => Registry::load('strings')->images, "tag" => 'input', "type" => 'file', 'multi_select' => true, "class" => 'field filebrowse', "accept" => 'image/png,image/x-png,image/gif,image/jpeg' ]; $form['fields']->images['infotip'] = Registry::load('strings')->infotip_select_multiple_files; } } ?>