| Server IP : 38.190.208.107 / Your IP : 216.73.217.1 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.2/wp-content/plugins/blocksy-companion-pro/freemius/templates/ |
Upload File : |
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 1.0.3
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
*/
$dismiss_text = fs_text_x_inline( 'Dismiss', 'as close a window', 'dismiss' );
$slug = '';
$type = '';
if ( ! empty( $VARS['manager_id'] ) ) {
/**
* @var array $VARS
*/
$slug = $VARS['manager_id'];
$type = WP_FS__MODULE_TYPE_PLUGIN;
if ( false !== strpos( $slug, ':' ) ) {
$parts = explode( ':', $slug );
$slug = $parts[0];
$parts_count = count( $parts );
if ( 1 < $parts_count && WP_FS__MODULE_TYPE_THEME == $parts[1] ) {
$type = $parts[1];
}
}
}
$attributes = array();
if ( ! empty( $VARS['id'] ) ) {
$attributes['data-id'] = $VARS['id'];
}
if ( ! empty( $VARS['manager_id'] ) ) {
$attributes['data-manager-id'] = $VARS['manager_id'];
}
if ( ! empty( $slug ) ) {
$attributes['data-slug'] = $slug;
}
if ( ! empty( $type ) ) {
$attributes['data-type'] = $type;
}
$classes = array( 'fs-notice' );
switch ( $VARS['type'] ) {
case 'error':
$classes[] = 'error';
$classes[] = 'form-invalid';
break;
case 'promotion':
$classes[] = 'updated';
$classes[] = 'promotion';
break;
case 'warn':
$classes[] = 'notice';
$classes[] = 'notice-warning';
break;
case 'update':
case 'success':
default:
$classes[] = 'updated';
$classes[] = 'success';
break;
}
if ( ! empty( $VARS['sticky'] ) ) {
$classes[] = 'fs-sticky';
}
if ( ! empty( $VARS['plugin'] ) ) {
$classes[] = 'fs-has-title';
}
if ( ! empty( $slug ) ) {
$classes[] = "fs-slug-{$slug}";
}
if ( ! empty( $type ) ) {
$classes[] = "fs-type-{$type}";
}
?>
<div class="<?php echo fs_html_get_classname( $classes ); ?>" <?php echo fs_html_get_attributes( $attributes ); ?>>
<?php if ( ! empty( $VARS['plugin'] ) ) : ?>
<label class="fs-plugin-title">
<?php echo esc_html( $VARS['plugin'] ); ?>
</label>
<?php endif ?>
<?php if ( ! empty( $VARS['sticky'] ) && ( ! isset( $VARS['dismissible'] ) || false !== $VARS['dismissible'] ) ) : ?>
<div class="fs-close">
<i class="dashicons dashicons-no" title="<?php echo esc_attr( $dismiss_text ) ?>"></i>
<span><?php echo esc_html( $dismiss_text ); ?></span>
</div>
<?php endif ?>
<div class="fs-notice-body">
<?php if ( ! empty( $VARS['title'] ) ) : ?>
<strong><?php echo fs_html_get_sanitized_html( $VARS['title'] ); ?></strong>
<?php endif ?>
<?php echo fs_html_get_sanitized_html( $VARS['message'] ); ?>
</div>
</div>