. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 3.13.122.42 / Your IP :
216.73.217.101 [
Web Server : Apache System : Linux vmsrv01.metacllc.com 6.8.0-1031-aws #33~22.04.1-Ubuntu SMP Thu Jun 26 14:22:30 UTC 2025 x86_64 User : a1securityllc.com_5u5m69iigjb ( 10001) PHP Version : 8.3.31 Disable Function : opcache_get_status Domains : 5 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/a1securityllc.com/httpdocs/wp-content/plugins/ninja-forms-uploads/ |
Upload File : |
<?php
/*
Plugin Name: Ninja Forms - File Uploads
Plugin URI: https://ninjaforms.com/extensions/file-uploads/
Description: File Uploads add-on for Ninja Forms.
Version: 3.3.23
Author: Saturday Drive
Author URI: http://ninjaforms.com
Version Description: versionTagMessage
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'NF_FU_BASE_DIR', dirname(__FILE__) );
/**
* The main function responsible for returning the one true instance to functions everywhere.
*/
if( ! function_exists( 'NF_File_Uploads' ) ) {
function NF_File_Uploads()
{
// Load our main plugin class
require_once dirname(__FILE__) . '/includes/file-uploads.php';
$version = '3.3.23';
return NF_FU_File_Uploads::instance(__FILE__, $version);
}
}
/**
* Load an autoloader from vendor subdirectory
*
* This function can be copied and reused in other plugins using composer's
* PSR-4 specification because it is namespaced within this file to avoid
* collision.
*
* @return boolean
*/
function nFFileUploads_ComposerAutoloader(): bool
{
$autoloaderDev = dirname(__FILE__) . '/vendor/autoload.php';
$autoloaderDist = dirname(__FILE__) . '/vendor-dist/autoload.php';
$amazonFunctions = dirname(__FILE__).'/lib/Aws/functions.php';
include_once $amazonFunctions;
if (file_exists($autoloaderDev)) {
include_once $autoloaderDev;
$return = true;
}elseif (file_exists($autoloaderDist)) {
include_once $autoloaderDist;
$return = true;
} else {
$return = false;
}
return $return;
}
nFFileUploads_ComposerAutoloader();
NF_File_Uploads();