Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-includes/ID3/steps.tar
Назад
index.php 0000777 00000000037 15252227570 0006402 0 ustar 00 <?php /* Silence is golden */ settings.php 0000777 00000021142 15252227570 0007133 0 ustar 00 <?php if ( !function_exists( 'ssl_zen_debug_container' ) ) { /** * Shows the container that shows the debug related markup * v4.0.2 */ function ssl_zen_debug_container( $tabsToShow, $activeTab ) { if ( sz_fs()->is_plan( 'cdn', true ) && in_array( 'debug', $tabsToShow, true ) ) { // Check for the domain's IP address, // if they have accidentally changed the IP to stackpath for a reset $detectedStackPathIp = null; $apiResponse = ssl_zen_auth::call( 'get_ip' ); if ( in_array( $apiResponse['ip'], ssl_zen_helper::$STACKPATH_IP ) ) { $detectedStackPathIp = $apiResponse['ip']; } ?> <div class="row ssl-zen-settings-container debug-container"> <div class="col-md-9"> <ul class="mb-4"> <li class="d-flex mb-4 line"> <div> <input class="toggle-event" type="checkbox" id="enable_debug" name="enable_debug" <?php echo ( get_option( 'ssl_zen_show_debug_url', '' ) == '1' ? 'checked="checked"' : '' ); ?> > </div> <div> <label for="enable_debug" class="d-block title"><?php esc_html_e( 'Show Debug URL', 'ssl-zen' ); ?></label> <span><?php esc_htmlesc_html_e( 'Generates the debug log for sharing with the support team.', 'ssl-zen' ); ?></span> </div> </li> </ul> </div> <div class="col-md-12"> <div class="message-container-2"> <?php $url = get_option( 'ssl_zen_debug_url' ); if ( $url ) { echo sprintf( '<div class="message success">%s <i class="copy-clipboard" title="%s" data-clipboard-text="%s"></i></div><div class="message-container"></div>', esc_url( $url ), __( 'Copy', 'ssl-zen' ), esc_url( $url ) ); } ?> </div> <a href="#" class="d-inline-block primary mb-2 stackpath-reset sslzen-form-button" data-hidden="#stackpath_reset_plugin" data-hidden-value="<?php echo esc_attr( ( !$detectedStackPathIp ? '2' : '1' ) ); ?>" > <?php esc_html_e( 'Reset Plugin', 'ssl-zen' ); ?> </a> <input type="hidden" name="stackpath_reset_plugin" id="stackpath_reset_plugin"> <span class="d-block mini-message"><?php esc_html_e( 'This will reset the plugin and allow you to start from the beginning.', 'ssl-zen' ); ?></span> <?php if ( $detectedStackPathIp ) { ?> <div class="message error"> <?php echo sprintf( /* translators: 1: StackPath IP 2: Host IP */ esc_html__( 'Your website DNS record for type A is currently pointing to StackPath\'s IP - %1$s. Please change your website A record to %2$s and CNAME record for "www" to your domain before we can reset the plugin', 'ssl-zen' ), esc_html( $detectedStackPathIp ), esc_html( get_option( 'ssl_zen_stackpath_host_ip' ) ) ); ?> </div> <?php } ?> </div> </div> <?php } else { $extraClass = ( $activeTab === 'debug' ? '' : 'd-none' ); // Get debug file if it exists $debugLog = ( file_exists( SSL_ZEN_DIR . 'log/debug.log' ) ? file_get_contents( SSL_ZEN_DIR . 'log/debug.log' ) : '' ); ?> <div class="row ssl-zen-settings-container debug-container <?php echo esc_attr( $extraClass ); ?>"> <div class="col-md-9"> <ul class="mb-4"> <li class="d-flex mb-4 line"> <div> <input class="toggle-event" type="checkbox" id="enable_debug" name="enable_debug" <?php echo ( get_option( 'ssl_zen_enable_debug', '' ) == '1' ? 'checked="checked"' : '' ); ?> > </div> <div> <label for="enable_debug" class="d-block title"><?php esc_html_e( 'Enable Debugging', 'ssl-zen' ); ?></label> <span><?php esc_html_e( 'Enables LOG_DEBUG for full debugging. Only enable when asked by the support team.', 'ssl-zen' ); ?></span> </div> </li> </ul> </div> <div class="col-md-12"> <div class="table"> <div class="head"><?php esc_html_e( 'Debug Log', 'ssl-zen' ); ?></div> <div class="body p-0"> <textarea class="border-0 w-100 p-4"><?php echo esc_html( $debugLog ); ?></textarea> </div> <a href="<?php echo admin_url( 'admin.php?page=ssl_zen&tab=settings&download=debug_log' ); ?>" class="d-inline-block primary mb-2 download-debug"><?php esc_html_e( 'Download Debug Log', 'ssl-zen' ); ?></a> <span class="d-block mini-message"><?php esc_html_e( 'When asked, please download and share this file with SSL Zen support team.', 'ssl-zen' ); ?></span> </div> </div> </div> <?php } } } if ( !function_exists( 'ssl_zen_settings' ) ) { /** * Method to render SSL Zen settings */ function ssl_zen_settings() { global $wp_version; // Define variables $currentTimestamp = strtotime( date_i18n( 'Y-m-d' ) ); $expiryDate = get_option( 'ssl_zen_certificate_90_days', '' ); $primaryDomain = get_option( 'ssl_zen_base_domain', '' ); $currentSettingTab = get_option( 'ssl_zen_settings_stage', '' ); $tabsToShow = array('status', 'debug'); if ( ssl_zen_helper::isTabAvailableAtThisStage( $currentSettingTab, 'settings.advanced', ssl_zen_admin::$allowedTabs ) ) { $tabsToShow[] = 'advanced'; } // Get server status fields $serverStatusFields = ssl_zen_helper::getServerStatusFields(); $wordpressStatusFields = ssl_zen_helper::getWordPressStatusFields(); $issuer = "Let's Encrypt Authority X3"; $miniMessage = $renewButtonClass = ''; $deactivateMsg = __( 'You will be unable to renew your SSL certificate if you uninstall this plugin.', 'ssl-zen' ); $activeTab = 'advanced'; if ( $currentSettingTab !== 'settings' ) { $activeTab = 'debug'; } if ( !empty( $expiryDate ) ) { // Calc days left $expiryTime = strtotime( $expiryDate ); $timeLeft = $expiryTime - $currentTimestamp; $days = floor( $timeLeft / (60 * 60 * 24) ); $renewalDate = get_option( 'ssl_zen_certificate_60_days', '' ); $allowRenew = $renewalDate <= date_i18n( 'Y-m-d' ); // Days circle color category if ( $days >= 0 && $days <= 30 ) { $circleColor = "#FA541C"; } elseif ( $days > 30 && $days <= 60 ) { $circleColor = "#e9ec00"; } else { $circleColor = "#73D13D"; } } require SSL_ZEN_TEMPLATE_DIR . 'settings.php'; } } pricing.php 0000777 00000026522 15252227570 0006735 0 ustar 00 <?php if(!function_exists('ssl_zen_exclusive_option')) { function ssl_zen_exclusive_option() { ?> <div class="row ssl-zen-exclusive-container mb-4"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-title m-0"> <img src="<?php echo esc_url(SSL_ZEN_URL); ?>img/info-circle-outlined.svg"> Exclusive "Done For You" Option (Limited Spots) <div class="price premium"> <a class="primary" target="_blank" href="https://bit.ly/3jrsQt1">Select Plan</a> </div> </div> </div> <div class="card-body"> Looking for a 100% "Done For You" solution where one of our Professional Tech Experts installs the SSL certificate for you? </div> </div> </div> </div> <?php } } if(!function_exists('ssl_zen_stackpath_pricing')) { /** * Function to show pricing plans for stackpath * * @since 2.0 */ function ssl_zen_stackpath_pricing() { ?> <form name="form-pricing" id="form-pricing" action="" method="post"> <?php wp_nonce_field('ssl_zen_pricing', 'ssl_zen_pricing_nonce'); ?> <div class="ssl-zen-steps-container p-0 border-0"> <div class="d-md-flex justify-content-between ssl-zen-pricing-header-banner mb-4"> <div> <h1 class="mb-4">The complete SSL certificate <br> solution for WordPress.</h1> <p>Subscribe to our premium plan and <br> save hundreds of dollars in SSL certificate fees.</p> </div> <div></div> </div> <?php ssl_zen_exclusive_option(); ?> <div class="row ssl-zen-pricing-container "> <div class="col-md-12"> <table class="table table-bordered table-responsive-lg"> <tbody> <tr> <td class="empty"></td> <td class="amount premium"> <div> <h3>Premium</h3> <span>$49</span> <span class="perioud">/ year</span> </div> </td> <td class="amount free"> <div> <h3>Free</h3> <span class="d-block">$0</span> </div> </td> </tr> <tr class="grey"> <td><?php _e('Content Delivery Network', 'ssl-zen') ?></td> <td><?php _e('Automatic', 'ssl-zen') ?></td> <td><?php _e('Manual', 'ssl-zen') ?></td> </tr> <tr> <td><?php _e('SSL Certificate Installation', 'ssl-zen') ?></td> <td><?php _e('Automatic', 'ssl-zen') ?></td> <td><?php _e('Manual', 'ssl-zen') ?></td> </tr> <tr class="grey"> <td><?php _e('SSL Certificate Renewal', 'ssl-zen') ?></td> <td><?php _e('Automatic Renewal', 'ssl-zen') ?></td> <td> <div class="d-flex align-items-center pricing-notice"> <?php _e('Manual', 'ssl-zen') ?> <span class="pricing-notice mt-1">( <?php _e('You have to renew your SSL certificate every 90 days', 'ssl-zen') ?> )</span> </div> </td> </tr> <tr> <td><?php _e('Website Security', 'ssl-zen') ?></td> <td><?php _e('Yes', 'ssl-zen') ?></td> <td><?php _e('No', 'ssl-zen') ?></td> </tr> <tr class="grey"> <td><?php _e('Support', 'ssl-zen') ?></td> <td><?php _e('Priority Email Support', 'ssl-zen') ?></td> <td><?php _e('Basic', 'ssl-zen') ?></td> </tr> <tr> <td class="empty"></td> <td class="price premium"> <a href="<?php echo add_query_arg(array('checkout' => 'true', 'plan_id' => 10884, 'plan_name' => 'cdn', 'billing_cycle' => 'annual', 'pricing_id' => 11089, 'currency' => 'usd'), sz_fs()->get_upgrade_url()); ?>" class="primary"><?php _e('Select plan', 'ssl-zen') ?></a> </td> <td class="price free"> <a href="#" class="primary"><?php _e('Select plan', 'ssl-zen') ?></a> </td> </tr> </tbody> </table> </div> </div> </div> </form> <?php } } if(!function_exists('ssl_zen_cpanel_pricing')) { /** * Function to show pricing plans for cpanel * * @since 2.0 */ function ssl_zen_cpanel_pricing() { if (!SSLZenCPanel::detect_cpanel()) { stackpath_pricing(); return; } ?> <form name="form-pricing" id="form-pricing" action="" method="post"> <?php wp_nonce_field('ssl_zen_pricing', 'ssl_zen_pricing_nonce'); ?> <div class="ssl-zen-steps-container p-0 border-0"> <div class="d-md-flex justify-content-between ssl-zen-pricing-header-banner mb-4"> <div> <h1 class="mb-4">The complete SSL certificate <br> solution for WordPress.</h1> <p>Subscribe to our premium plan and <br> save hundreds of dollars in SSL certificate fees.</p> </div> <div></div> </div> <?php ssl_zen_exclusive_option(); ?> <div class="row ssl-zen-pricing-container "> <div class="col-md-12"> <table class="table table-bordered table-responsive-lg"> <tbody> <tr> <td class="empty"></td> <td class="amount premium"> <div> <h3>Premium</h3> <span>$29</span> <span class="perioud">/ year</span> </div> </td> <td class="amount free"> <div> <h3>Free</h3> <span class="d-block">$0</span> </div> </td> </tr> <tr class="grey"> <td><?php _e('Verify Domain Ownership', 'ssl-zen') ?></td> <td><?php _e('Automatic', 'ssl-zen') ?></td> <td><?php _e('Manual', 'ssl-zen') ?></td> </tr> <tr> <td><?php _e('SSL Certificate Installation', 'ssl-zen') ?></td> <td><?php _e('Automatic', 'ssl-zen') ?></td> <td><?php _e('Manual', 'ssl-zen') ?></td> </tr> <tr class="grey"> <td><?php _e('SSL Certificate Renewal', 'ssl-zen') ?></td> <td><?php _e('Automatic Renewal', 'ssl-zen') ?></td> <td> <div class="d-flex align-items-center pricing-notice"> <?php _e('Manual', 'ssl-zen') ?> <span class="pricing-notice mt-1">( <?php _e('You have to renew your SSL certificate every 90 days', 'ssl-zen') ?> )</span> </div> </td> </tr> <tr> <td><?php _e('Support', 'ssl-zen') ?></td> <td><?php _e('Priority Email Support', 'ssl-zen') ?></td> <td><?php _e('Basic', 'ssl-zen') ?></td> </tr> <tr class="grey"> <td><?php _e('Time Required', 'ssl-zen') ?></td> <td>60 <?php _e('seconds', 'ssl-zen') ?></td> <td>60 <?php echo esc_html(__('minutes', 'ssl-zen') . '/' . __('year', 'ssl-zen')); ?></td> </tr> <tr> <td class="empty"></td> <td class="price premium"> <a href="<?php echo add_query_arg(array('checkout' => 'true', 'plan_id' => 7397, 'plan_name' => 'pro', 'billing_cycle' => 'annual', 'pricing_id' => 7115, 'currency' => 'usd'), sz_fs()->get_upgrade_url()); ?>" class="primary"><?php _e('Select plan', 'ssl-zen') ?></a> </td> <td class="price free"> <a href="#" class="primary"><?php _e('Select plan', 'ssl-zen') ?></a> </td> </tr> </tbody> </table> </div> </div> </div> </form> <?php } } if(!function_exists('ssl_zen_pricing')) { /** * Method for choosing between pricing plans * * @since 3.2.5 */ function ssl_zen_pricing() { $show_cpanel_pricing = SSLZenCPanel::detect_cpanel(); if ($show_cpanel_pricing) { ssl_zen_cpanel_pricing(); } else { ssl_zen_stackpath_pricing(); } } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка