Thomas Günther
80fb6cd452
xmlrpc deaktivieren Autorenscan deaktivieren Scripting in /wp-content/uploads/ deaktivieren Zugriff auf potenziell sensible Dateien blockieren Dateieditor im WP Dashboard deaktivieren Skriptverkettung deaktivieren Skriptausführung im Include-Verzeichnis deaktivieren Zugriff von ungewollten Bots verbieten Auflistung von Verzeichnissen deaktivieren Debug-Ausgaben deaktivieren Login-URL ändern
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: BdP Kompass
|
|
* Description: Wordpress-Plugin zur Unterstützung von Stämmen im Bund der Pfadfinderinnen und Pfadfinder e.V. zur optimalen Verwaltung eurer Webseite
|
|
* Version: 4.1.1
|
|
* Tags: bdp, utility, helper
|
|
* Requires at least: 6.0
|
|
* Requires PHP: 8.2
|
|
* Author: Thomas Günther
|
|
* Author URI: https://www.sachsen.pfadfinden.de
|
|
* Update URI: http://lv-sachsen-main.bdp.mein-verein.online/wordpress/
|
|
* Text Domain: bdp-kompass
|
|
*/
|
|
|
|
use Bdp\Modules\Security\Security;
|
|
use Bdp\Modules\Seo\Seo;
|
|
|
|
require_once dirname(__FILE__) . '/includes/setup.php';
|
|
|
|
function bdp_plugin_install() {
|
|
Seo::setup();
|
|
Calendar::setup();
|
|
Security::setup();
|
|
update_option('kompass_installation', true);
|
|
}
|
|
|
|
|
|
function bdp_plugin_init() {
|
|
Security::ProhibitBots();
|
|
Security::SetPageFilters();
|
|
|
|
remove_menu_page( 'admin.php?page=limit-login-attempts&tab=dashboard' );
|
|
if ( get_option( 'kompass_installation' ) == true ) {
|
|
delete_option( 'kompass_installation' );
|
|
wp_redirect( 'site-health.php?tab=bdp_enhanced_security');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function register_custom_theme_directory() {
|
|
$file = ABSPATH . '/wp-content/plugins/bdp-kompass/buena/' ;
|
|
|
|
system('mkdir ' . ABSPATH . 'wp-content/themes/buena/');
|
|
system('cp -r ' . $file . '* ' . ABSPATH . 'wp-content/themes/buena/');
|
|
|
|
switch_theme('buena');
|
|
}
|
|
|
|
#add_action( 'after_setup_theme', 'register_custom_theme_directory' );
|