| 1 |
<?php |
| 2 |
/** |
| 3 |
* This file sets up hooks for dashboard notices |
| 4 |
*/ |
| 5 |
if (!defined('UD_CENTRAL_DIR')) die('Security check'); ?> |
| 6 |
|
| 7 |
<!-- dashboard page header --> |
| 8 |
|
| 9 |
<?php |
| 10 |
|
| 11 |
// Remember that this header is used widely - the user may not be logged-in, or authorised, or the entire setup may be broken and we're just needing to report errors. |
| 12 |
|
| 13 |
do_action('updraftcentral_page_header_pre_notices'); |
| 14 |
|
| 15 |
do_action('updraftcentral_print_dashboard_notices'); |
| 16 |
|
| 17 |
do_action('updraftcentral_page_header_after_notices'); |
| 18 |
|