data-reset-data-dialog.php
6 years ago
palettes-edit-palette.php
5 years ago
privacy-ip-delete.php
6 years ago
data-reset-data-dialog.php
47 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Reset data modal for the "data" tab. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.0.3 |
| 7 | */ |
| 8 | |
| 9 | $attributes = array( |
| 10 | 'modal_id' => 'reset-data-settings', |
| 11 | 'has_description' => true, |
| 12 | 'modal_size' => 'sm', |
| 13 | |
| 14 | 'header' => array( |
| 15 | 'classes' => 'sui-flatten sui-content-center sui-spacing-top--40', |
| 16 | 'title' => __( 'Reset Plugin', 'hustle' ), |
| 17 | 'title_classes' => 'sui-lg', |
| 18 | ), |
| 19 | 'body' => array( |
| 20 | 'classes' => 'sui-content-center sui-spacing-top--20', |
| 21 | 'description' => __( 'Are you sure you want to reset the plugin to its default state?', 'hustle' ), |
| 22 | ), |
| 23 | 'footer' => array( |
| 24 | 'classes' => 'sui-flatten sui-content-center sui-spacing-bottom--40', |
| 25 | 'buttons' => array( |
| 26 | array( |
| 27 | 'classes' => 'sui-button-ghost', |
| 28 | 'text' => __( 'Cancel', 'hustle' ), |
| 29 | 'is_close' => true, |
| 30 | ), |
| 31 | array( |
| 32 | 'id' => 'hustle-reset-settings', |
| 33 | 'classes' => 'sui-button-red sui-button-ghost', |
| 34 | 'icon' => 'undo', |
| 35 | 'has_load' => true, |
| 36 | 'text' => __( 'Reset', 'hustle' ), |
| 37 | 'attributes' => array( |
| 38 | 'data-notice' => 'hustle-notice-success--reset-settings', |
| 39 | 'data-nonce' => wp_create_nonce( 'hustle_reset_settings' ), |
| 40 | ), |
| 41 | ), |
| 42 | ), |
| 43 | ), |
| 44 | ); |
| 45 | |
| 46 | $this->render_modal( $attributes ); |
| 47 |