/home/altere25/sportzsoftlivemeet.com/wp-content/plugins/really-simple-ssl
NameSizeModeActions
assets/-0755rm
core/-0755rm
css/-0755rm
img/-0755rm
languages/-0755rm
lets-encrypt/-0755rm
lib/-0755rm
mailer/-0755rm
modal/-0755rm
onboarding/-0755rm
placeholders/-0755rm
progress/-0755rm
security/-0755rm
settings/-0755rm
testssl/-0755rm
upgrade/-0755rm
.wp-env.json4690644editdlrm
class-admin.php1640750644editdlrm
class-cache.php17570644editdlrm
class-certificate.php63180644editdlrm
class-front-end.php56320644editdlrm
class-help.php7240644editdlrm
class-installer.php45070644editdlrm
class-mixed-content-fixer.php57320644editdlrm
class-multisite.php443500644editdlrm
class-rsssl-wp-cli.php5740644editdlrm
class-server.php14860644editdlrm
class-site-health.php20180644editdlrm
class-url.php400644editdlrm
class-wp-cli.php18710644editdlrm
compatibility.php21650644editdlrm
composer.json5460644editdlrm
force-deactivate.txt39800644editdlrm
functions.php57370644editdlrm
gulpfile.js15620644editdlrm
index.php340644editdlrm
LICENSE.txt184160644editdlrm
multisite-cron.php12990644editdlrm
readme.txt275870644editdlrm
rector.php10910644editdlrm
rlrsssl-really-simple-ssl.php45820644editdlrm
rsssl-auto-loader.php19250644editdlrm
sbom.json.gz230200644editdlrm
security.md6860644editdlrm
SECURITY.md12090644editdlrm
ssl-test-page.php18190644editdlrm
system-status.php80010644editdlrm
uninstall.php3540644editdlrm
upgrade.php91220644editdlrm
Edit: /home/altere25/sportzsoftlivemeet.com/wp-content/plugins/really-simple-ssl/functions.php (5737B)
rsssl_get_option( 'enable_limited_login_attempts' ) == 1,//phpcs:ignore 'two_fa_enabled' => rsssl_get_option( 'two_fa_enabled' ) == 1,//phpcs:ignore ); // Check if the current feature is in the essential features array foreach ( $essential_features as $feature => $is_essential ) { if ( $is_essential ) { return true; } } return false; } /** * Retrieves the path to a template file. * * @param string $template The name of the template to retrieve. * @param string $path (Optional) The path to look for the template file. If not specified, the default path will be used. * * @return string The full path to the template file. * @throws \RuntimeException Throws a runtime exception if the template file cannot be found. */ function rsssl_get_template( string $template, string $path = '' ): string { // Define the path in the theme where templates can be overridden. $theme_template_path = get_stylesheet_directory() . '/really-simple-ssl-templates/' . $template; // Check if the theme has an override for the template. if ( file_exists( $theme_template_path ) ) { return $theme_template_path; } // If $path is not set, use the default path if ( $path === '' ) { $path = rsssl_path . 'templates/'; // Remember this only works in free version, for pro we need to add the $path parameter/argument } else { // Ensure the path ends with a slash $path = trailingslashit( $path ); } // Full path to the template file $full_path = $path . $template; // Check if the template exists in the specified path. if ( ! file_exists( $full_path ) ) { throw new \RuntimeException( 'Template not found: ' . $full_path ); } return $full_path; } /** * Loads a template file and includes it. * * @param string $template The name of the template to load. * @param array $vars (Optional) An associative array of variables to make available in the template scope. * @param string $path (Optional) The path to look for the template file. If not specified, the default path will be used. * * @return void * @throws Exception Throws an exception if the template file cannot be found. */ function rsssl_load_template( string $template, array $vars = array(), string $path = '' ) { // Extract variables to be available in the template scope. if ( is_array( $vars ) ) { extract( $vars ); } // Get the template file, checking for theme overrides. $template_file = rsssl_get_template( $template, $path ); // Include the template file. include $template_file; }