56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
use Bdp\Modules\LimitLoginAttempts\Controllers\LoginHandler;
|
|
use Bdp\Libs\DatabaseHandler;
|
|
|
|
|
|
|
|
require_once dirname(__FILE__) . '/pre_requires.php';
|
|
require_once dirname(__FILE__) . '/environment.php';
|
|
require_once dirname(__FILE__) . '/spl.php';
|
|
require_once dirname(__FILE__) . '/update.class.php';
|
|
|
|
require_once BDP_LV_PLUGIN_DIR . 'includes/FileAccess.class.php';
|
|
require_once BDP_LV_PLUGIN_DIR . 'includes/WpConfigEditor.class.php';
|
|
require_once BDP_LV_PLUGIN_DIR . 'includes/DatabaseHandler.php';
|
|
require_once (BDP_LV_PLUGIN_DIR . '/includes/roles.php');
|
|
|
|
require_once (BDP_LV_PLUGIN_DIR . '/includes/filters.php');
|
|
|
|
require_once (BDP_LV_PLUGIN_DIR . '/lib/ics-parser/Event.php');
|
|
require_once (BDP_LV_PLUGIN_DIR . '/lib/ics-parser/ICal.php');
|
|
|
|
require_once (BDP_LV_PLUGIN_DIR . '/modules/seo/seo.php');
|
|
require_once (BDP_LV_PLUGIN_DIR . '/modules/calendar/calendar.php');
|
|
require_once (BDP_LV_PLUGIN_DIR . '/includes/frontend-functions.php');
|
|
|
|
require_once (BDP_LV_PLUGIN_DIR . '/modules/calendar/Views/settings-form.php');
|
|
require_once (BDP_LV_PLUGIN_DIR . '/modules/security/security.php');
|
|
|
|
|
|
$dbHandler = new DatabaseHandler();
|
|
function kompass_admin_init()
|
|
{
|
|
kompass_settings_validators();
|
|
}
|
|
|
|
bdp_create_menu_structure();
|
|
|
|
|
|
function bdp_kompass_load_plugin_textdomain() {
|
|
load_textdomain( BDP_LV_PLUGIN_SLUG, BDP_LV_PLUGIN_DIR . '/lang/' . BDP_LV_PLUGIN_SLUG . '-' . get_locale() . '.mo' );
|
|
}
|
|
|
|
|
|
function kompass_after_setup_theme()
|
|
{
|
|
setup_site_roles();
|
|
#register_custom_theme_directory();
|
|
|
|
}
|
|
|
|
|
|
$loginHandler = new LoginHandler();
|
|
new BdpVersionChecker();
|
|
#add_filter( 'plugins_api', array( $class, 'info' ), 20, 3 );
|
|
require_once dirname(__FILE__) . '/action_caller.php';
|