woocommerce-square
/
includes
/
Framework
/
PaymentGateway
/
Admin
/
views
/
html-user-profile-field-customer-id.php
html-admin-gateway-status.php
1 month ago
html-order-partial-capture.php
1 month ago
html-user-payment-token-editor-token.php
1 month ago
html-user-payment-token-editor.php
1 month ago
html-user-profile-field-customer-id.php
1 month ago
html-user-profile-section.php
1 month ago
html-user-profile-field-customer-id.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WooCommerce Plugin Framework |
| 4 | * |
| 5 | * This source file is subject to the GNU General Public License v3.0 |
| 6 | * that is bundled with this package in the file license.txt. |
| 7 | * It is also available through the world-wide-web at this URL: |
| 8 | * http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0 or later |
| 9 | * If you did not receive a copy of the license and are unable to |
| 10 | * obtain it through the world-wide-web, please send an email |
| 11 | * to license@skyverge.com so we can send you a copy immediately. |
| 12 | * |
| 13 | * @since 3.0.0 |
| 14 | * @author WooCommerce / SkyVerge |
| 15 | * @copyright Copyright (c) 2013-2019, SkyVerge, Inc. |
| 16 | * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0 or later |
| 17 | * |
| 18 | * Modified by WooCommerce on 03 January 2022. |
| 19 | */ |
| 20 | |
| 21 | defined( 'ABSPATH' ) || exit; |
| 22 | ?> |
| 23 | |
| 24 | <tr> |
| 25 | <th><label for="<?php echo esc_attr( $name ); ?>"><?php echo esc_html( $label ); ?></label></th> |
| 26 | <td> |
| 27 | <input class="regular-text" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $value ); ?>" type="text" /><br/> |
| 28 | <span class="description"><?php esc_html_e( 'The gateway customer ID for the user. Only edit this if necessary.', 'woocommerce-square' ); ?></span> |
| 29 | </td> |
| 30 | </tr> |
| 31 |