| Server IP : 35.201.19.92 / Your IP : 216.73.216.188 Web Server : nginx System : Linux pod-200961 6.8.0-1055-gke #61-Ubuntu SMP Tue May 26 22:57:42 UTC 2026 x86_64 User : fpm200098 ( 200098) PHP Version : 8.2.33 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nas/content/live/questfamilyday/wp-content/plugins/imagify/views/ |
Upload File : |
<?php
defined( 'ABSPATH' ) || exit;
if ( defined( 'IMAGIFY_HIDDEN_ACCOUNT' ) && IMAGIFY_HIDDEN_ACCOUNT ) {
if ( ! defined( 'IMAGIFY_API_KEY' ) || ! IMAGIFY_API_KEY ) {
$options = Imagify_Options::get_instance();
?>
<input type="hidden" value="<?php echo esc_attr( $options->get( 'api_key' ) ); ?>" name="<?php echo $options->get_option_name(); ?>[api_key]">
<?php
}
return;
}
if ( Imagify_Requirements::is_api_key_valid() ) {
$user = imagify_get_cached_user();
if ( ! $user ) {
// Lazyload user.
Imagify_Assets::get_instance()->localize_script(
'options',
'imagifyUser',
[
'action' => 'imagify_get_user_data',
'_wpnonce' => wp_create_nonce( 'imagify_get_user_data' ),
]
);
}
}
?>
<div class="imagify-settings-section">
<?php $this->print_template( 'part-upsell' ); ?>
<?php
if ( ! defined( 'IMAGIFY_API_KEY' ) || ! IMAGIFY_API_KEY ) {
if ( Imagify_Requirements::is_api_key_valid() ) {
?>
<h2 class="imagify-options-title">
<?php esc_html_e( 'API Key', 'imagify' ); ?>
</h2>
<?php
} else {
?>
<h2 class="imagify-options-title"><?php esc_html_e( 'Your Account', 'imagify' ); ?></h2>
<p class="imagify-options-subtitle"><?php esc_html_e( 'Options page isn’t available until you enter your API Key', 'imagify' ); ?></p>
<?php
}
?>
<?php
/**
* API key field.
*/
$options = Imagify_Options::get_instance();
if ( ! $options->get( 'api_key' ) ) {
?>
<p class="imagify-api-key-invite"><?php esc_html_e( 'Don\'t have an API Key yet?', 'imagify' ); ?></p>
<p><a id="imagify-signup" class="button imagify-button-secondary" href="<?php echo esc_url( imagify_get_external_url( 'register' ) ); ?>" target="_blank"><?php esc_html_e( 'Create a Free API Key', 'imagify' ); ?></a></p>
<?php
}
?>
<div class="imagify-api-line">
<label for="api_key" class="screen-reader-text"><?php echo $options->get( 'api_key' ) ? esc_html__( 'API Key', 'imagify' ) : esc_html__( 'Enter Your API Key Below', 'imagify' ); ?></label>
<input type="text" size="35" value="<?php echo esc_attr( $options->get( 'api_key' ) ); ?>" name="<?php echo $options->get_option_name(); ?>[api_key]" id="api_key">
<?php
if ( Imagify_Requirements::is_api_key_valid() ) {
?>
<span id="imagify-check-api-container" class="imagify-valid">
<span class="imagify-icon">✓</span> <?php esc_html_e( 'Your API key is valid.', 'imagify' ); ?>
</span>
<?php
} elseif ( ! Imagify_Requirements::is_api_key_valid() && $options->get( 'api_key' ) ) {
?>
<span id="imagify-check-api-container">
<span class="dashicons dashicons-no"></span> <?php esc_html_e( 'Your API key isn\'t valid!', 'imagify' ); ?>
</span>
<?php
}
?>
<input id="check_api_key" type="hidden" value="<?php echo esc_attr( $options->get( 'api_key' ) ); ?>" name="check_api_key">
</div><!-- .imagify-api-line -->
<?php
}
?>
</div>