# taskbuilder/6.0.6/includes/admin/wppm_update_admin_notice.php

Taskbuilder – Project Management &amp; Task Management Tool With Kanban Board, version 6.0.6. 19 lines.

- Page: https://pluginprobe.com/plugins/taskbuilder/6.0.6/code/includes/admin/wppm_update_admin_notice.php
- Raw: https://pluginprobe.com/plugins/taskbuilder/6.0.6/raw/includes/admin/wppm_update_admin_notice.php
- Modified: 2026-08-26T12:08:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/taskbuilder/6.0.6/code/includes/admin/wppm_update_admin_notice.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
  exit; // Exit if accessed directly
}
if (!get_option('wppm_show_update_notice')) {
    return;
}

?>
<div class="notice notice-success is-dismissible">
    <p>
    <strong> <?php echo esc_html__('Taskbuilder Updated!', 'taskbuilder'); ?></strong><br>
    <?php echo esc_html__('The menu has moved to', 'taskbuilder'); ?> <b><?php echo esc_html__('Taskbuilder', 'taskbuilder'); ?></b>.  
    <?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'); ?>
    </p>
</div>
<?php
delete_option('wppm_show_update_notice');
?>
```
