Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
really-simple-ssl
/
core
:
really-simple-security-core.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!defined('ABSPATH')) { exit; } /** * Find the Jetpack packages autoloader. * @see https://packagist.org/packages/automattic/jetpack-autoloader */ $autoloaderFilePath = __DIR__ . '/vendor/autoload_packages.php'; if (file_exists($autoloaderFilePath) === false) { error_log('Really Simple Security: Core could not be booted, run `composer install` first.'); return; } // When it exists we require the Jetpack packages autoloader. require_once $autoloaderFilePath; // Prevent boot when the core Plugin file is missing. if (class_exists(\ReallySimplePlugins\RSS\Core\Bootstrap\Plugin::class) === false) { error_log('Really Simple Security: Core could not be booted, main `Plugin` class could not be found.'); return; } // Boot. $corePlugin = new \ReallySimplePlugins\RSS\Core\Bootstrap\Plugin(); $corePlugin->boot(); // Cleanup. unset($corePlugin);