BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
wp-content
/
plugins
/
protect-uploads
📤 Upload
📝 New File
📁 New Folder
Close
Editing: protect-uploads.php
<?php /** * Plugin Name: Protect Uploads * Plugin URI: https://wordpress.org/support/plugin/protect-uploads/ * Description: Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file. * Version: 0.6.0 * Author: alticreation * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: protect-uploads * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } function protect_uploads_activate() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-activator.php'; $activation = new Alti_ProtectUploads_Activator(); $activation->run(); } function protect_uploads_deactivate() { require_once plugin_dir_path( __FILE__ ) . 'admin/class-protect-uploads-admin.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-deactivator.php'; $deactivation = new Alti_ProtectUploads_Deactivator(); $deactivation->run(); } register_activation_hook( __FILE__, 'protect_uploads_activate' ); register_deactivation_hook( __FILE__, 'protect_uploads_deactivate' ); require plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; $plugin = new Alti_ProtectUploads(); $plugin->run();
Save
Cancel