html-admin-options.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin View: Page - Admin options. |
| 4 | * |
| 5 | * @package WooCommerce\Integrations |
| 6 | */ |
| 7 | |
| 8 | defined( 'ABSPATH' ) || exit; |
| 9 | |
| 10 | ?> |
| 11 | |
| 12 | <table class="form-table"> |
| 13 | <tr valign="top"> |
| 14 | <th scope="row" class="titledesc"> |
| 15 | <label><?php esc_html_e( 'Database File Path', 'woocommerce' ); ?></label> |
| 16 | </th> |
| 17 | <td class="forminp"> |
| 18 | <fieldset> |
| 19 | <legend class="screen-reader-text"><span><?php esc_html_e( 'Database File Path', 'woocommerce' ); ?></span></legend> |
| 20 | <input class="input-text regular-input" type="text" value="<?php echo esc_attr( $this->database_service->get_database_path() ); ?>" readonly> |
| 21 | <p class="description"><?php esc_html_e( 'The location that the MaxMind database should be stored. By default, the integration will automatically save the database here.', 'woocommerce' ); ?></p> |
| 22 | </fieldset> |
| 23 | </td> |
| 24 | </tr> |
| 25 | </table> |
| 26 |