No Description

html-admin-options.php 839B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Admin View: Page - Admin options.
  4. *
  5. * @package WooCommerce\Integrations
  6. */
  7. defined( 'ABSPATH' ) || exit;
  8. ?>
  9. <table class="form-table">
  10. <tr valign="top">
  11. <th scope="row" class="titledesc">
  12. <label><?php esc_html_e( 'Database File Path', 'woocommerce' ); ?></label>
  13. </th>
  14. <td class="forminp">
  15. <fieldset>
  16. <legend class="screen-reader-text"><span><?php esc_html_e( 'Database File Path', 'woocommerce' ); ?></span></legend>
  17. <input class="input-text regular-input" type="text" value="<?php echo esc_attr( $this->database_service->get_database_path() ); ?>" readonly>
  18. <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>
  19. </fieldset>
  20. </td>
  21. </tr>
  22. </table>