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
all-admin-notice.php
31 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 class="<?php |
| 10 | switch ($VARS['type']) { |
| 11 | case 'error': |
| 12 | echo 'error form-invalid'; |
| 13 | break; |
| 14 | case 'update-nag': |
| 15 | echo 'update-nag '; |
| 16 | break; |
| 17 | case 'update': |
| 18 | case 'success': |
| 19 | default: |
| 20 | echo 'updated success'; |
| 21 | break; |
| 22 | } |
| 23 | ?> fs-notice"> |
| 24 | <?php if ('update-nag' !== $VARS['type']) : ?><p><?php endif ?> |
| 25 | <?php if (!empty($VARS['title'])) : ?> |
| 26 | <b><?php echo $VARS['title'] ?></b> |
| 27 | <?php endif ?> |
| 28 | <?php echo $VARS['message'] ?> |
| 29 | <?php if ('update-nag' !== $VARS['type']) : ?></p><?php endif ?> |
| 30 | <?php if ($VARS['sticky']) : ?><i class="dashicons dashicons-no"></i><?php endif ?> |
| 31 | </div> |