PluginProbe ʕ •ᴥ•ʔ
Image Widget / 4.2
Image Widget v4.2
trunk 1.0 2.0 2.1 2.2 2.2.1 2.2.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2 3.2.1 3.2.10 3.2.11 3.2.2 3.2.3 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1 4.1.1 4.1.2 4.2 4.2.1 4.2.2 4.3 4.3.1 4.4 4.4.1 4.4.11 4.4.12 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9
image-widget / freemius / templates / admin-notice.php
image-widget / freemius / templates Last commit date
plugin-info 10 years ago account.php 10 years ago add-ons.php 10 years ago admin-notice.php 10 years ago all-admin-notice.php 10 years ago checkout.php 10 years ago connect.php 10 years ago contact.php 10 years ago deactivation-feedback-modal.php 10 years ago debug.php 10 years ago email.php 10 years ago firewall-issues-js.php 10 years ago pending-activation.php 10 years ago plugin-icon.php 10 years ago powered-by.php 10 years ago pricing.php 10 years ago sticky-admin-notice-js.php 10 years ago
admin-notice.php
35 lines
1 <?php
2 /**
3 * @package Freemius
4 * @copyright Copyright (c) 2015, Freemius, Inc.
5 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
6 * @since 1.0.3
7 */
8 ?>
9 <div data-id="<?php echo $VARS['id'] ?>" data-slug="<?php echo $VARS['slug'] ?>" class="<?php
10 switch ( $VARS['type'] ) {
11 case 'error':
12 echo 'error form-invalid';
13 break;
14 case 'promotion':
15 echo 'updated promotion';
16 break;
17 case 'update':
18 // echo 'update-nag update';
19 // break;
20 case 'success':
21 default:
22 echo 'updated success';
23 break;
24 }
25 ?> fs-notice<?php if ( $VARS['sticky'] ) {
26 echo ' fs-sticky';
27 } ?><?php if ( ! empty( $VARS['title'] ) ) {
28 echo ' fs-has-title';
29 } ?>"><?php if ( ! empty( $VARS['plugin'] ) ) : ?><label
30 class="fs-plugin-title"><?php echo $VARS['plugin'] ?></label><?php endif ?><p>
31 <?php if ( ! empty( $VARS['title'] ) ) : ?><b><?php echo $VARS['title'] ?></b> <?php endif ?>
32 <?php echo $VARS['message'] ?>
33 </p><?php if ( $VARS['sticky'] ) : ?><i class="fs-close dashicons dashicons-no"
34 title="<?php _efs( 'dismiss' ) ?>"></i><?php endif ?></div>
35