| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' ); |
| 3 |
|
| 4 |
$this->print_template( 'notice-header', array( |
| 5 |
'title' => __( 'You\'re missing out!', 'imagify' ), |
| 6 |
) ); |
| 7 |
?> |
| 8 |
<p><?php _e( 'Use the List view to optimize images with Imagify.', 'imagify' ); ?></p> |
| 9 |
<p><a href="<?php echo esc_url( admin_url( 'upload.php?mode=list' ) ); ?>"><?php _e( 'Switch to the List View', 'imagify' ); ?></a></p> |
| 10 |
<?php |
| 11 |
$this->print_template( 'notice-footer', array( |
| 12 |
'dismissible' => 'grid-view', |
| 13 |
) ); |
| 14 |
|