PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
corona-test-results-premium
<?php /* * Plugin Name: Corona Test Results (Premium) * Plugin URI: https://shop.48design.com/produkt/wordpress/corona-testergebnis-plugin-premium/ * description: 🦠<strong>Management of Corona/COVID-19 test results</strong> with online retrieval for test subjects 🦠<strong>For medical practices, testing centers and laboratories:</strong> Generate random codes and print out a handout containing the URL and QR code for online retrieval of the result, as well as an on-site record containing the personal data and code to assign the test results when ready. 🦠<strong>Inherent data protection:</strong> Personal data is not stored on the server if the certificate generation feature is not activated or no certificate is requested. Otherwise, all personal data is stored encrypted. * Version: 2.0.0-beta16 * Author: 48DESIGN GmbH * Author URI: https://www.48design.com/ * Text Domain: corona-test-results * Domain Path: /languages/ * Tested up to: 5.9.1 * Requires at least: 4.8 * Requires PHP: 7.3.0 * * Copyright (C) 2021, 48DESIGN GmbH (email: wordpress@48design.com) */ defined( 'ABSPATH' ) or die; /** * Return the path or basename of the plugin main file */ if (!function_exists( 'corona_test_results__mainfile' )) { define( 'CORONA_TEST_RESULTS_CODE_COLUMN_LENGTH', 16 ); define( 'CORONA_TEST_RESULTS_MIN_CODE_LENGTH', 6 ); function corona_test_results__mainfile( $basename = false ) { return $basename ? plugin_basename( __FILE__ ) : __FILE__; } global $corona_test_results_cfg; if ( is_file( ABSPATH . 'ctr-config.php' ) ) { require_once( ABSPATH . 'ctr-config.php' ); } require_once( __DIR__ . '/corona-test-results-global.php' ); /* * init */ function corona_test_results_init() { /* * i18n */ load_plugin_textdomain( 'corona-test-results', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); /* * admin */ if ( is_admin() && is_user_logged_in() ) { if ( current_user_can( corona_test_results_get_required_capability( 'codes' ) ) || current_user_can( corona_test_results_get_required_capability( 'register' ) ) ) { require_once(__DIR__ . '/corona-test-results-admin.php'); require_once(__DIR__ . '/corona-test-results-admin-settings-general.php'); } if ( function_exists( 'corona_test_results_locations_get' ) ) { $accessible_locations = corona_test_results_locations_get( true ); if ( $accessible_locations ) { require_once(__DIR__ . '/corona-test-results-admin-locations.php'); } } if ( current_user_can( corona_test_results_get_required_capability( 'settings' ) ) ) { require_once(__DIR__ . '/corona-test-results-admin-settings.php'); } } require_once(__DIR__ . '/corona-test-results-shortcodes.php'); } add_action('init', 'corona_test_results_init'); function corona_test_results_check_crypto_keys() { return defined( 'CTR_ENCRYPTION_KEY' ) && '' !== constant('CTR_ENCRYPTION_KEY'); } function corona_test_results_check_crypto_activated() { return corona_test_results_check_crypto_keys() && corona_test_results_check_checkbox_option( 'security_encryption_consent' ); } }
[-] corona-test-results-shortcodes.php
[edit]
[+]
vendor
[+]
premium
[+]
lib
[-] index.php
[edit]
[+]
assets
[-] corona-test-results-global.php
[edit]
[-] corona-test-results-admin.php
[edit]
[-] corona-test-results-premium.php
[edit]
[-] corona-test-results-admin-settings-general.php
[edit]
[-] corona-test-results-admin-locations.php
[edit]
[+]
languages
[+]
..