PluginProbe
Taskbuilder – Project Management & Task Management Tool With Kanban Board / 6.0.6
Taskbuilder – Project Management & Task Management Tool With Kanban Board v6.0.6
6.0.6 6.0.5 6.0.2 6.0.3 6.0.4 6.0.1 6.0.0 5.0.8 5.0.9 4.0.9 5.0.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 All 58 releases
taskbuilder / includes / admin / wppm_update_admin_notice.php

wppm_update_admin_notice.php in Taskbuilder – Project Management & Task Management Tool With Kanban Board 6.0.6, at includes/admin/wppm_update_admin_notice.php

19 lines 730 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly
4 }
5 if (!get_option('wppm_show_update_notice')) {
6 return;
7 }
8
9 ?>
10 <div class="notice notice-success is-dismissible">
11 <p>
12 <strong> <?php echo esc_html__('Taskbuilder Updated!', 'taskbuilder'); ?></strong><br>
13 <?php echo esc_html__('The menu has moved to', 'taskbuilder'); ?> <b><?php echo esc_html__('Taskbuilder', 'taskbuilder'); ?></b>.
14 <?php echo esc_html__('You can now access', 'taskbuilder'); ?> <b> <?php echo esc_html__('Projects, Tasks and Dashboard etc.', 'taskbuilder'); ?> </b> <?php echo esc_html__('from the new menu.', 'taskbuilder'); ?>
15 </p>
16 </div>
17 <?php
18 delete_option('wppm_show_update_notice');
19 ?>