|
1 |
| -<h2>Omise settings</h2> |
2 |
| -<h3>Cards</h3> |
| 1 | +<h3><?php _e( 'Cards', 'omise' ); ?></h3> |
3 | 2 | <div id="omise_card_panel">
|
4 | 3 | <table>
|
5 | 4 | <tr>
|
6 |
| - <th>Name</th> |
7 |
| - <th>Number</th> |
8 |
| - <th>Created date</th> |
9 |
| - <th>Action</th> |
| 5 | + <th><?php _e( 'Name', 'omise' ); ?></th> |
| 6 | + <th><?php _e( 'Number', 'omise' ); ?></th> |
| 7 | + <th><?php _e( 'Created date', 'omise' ); ?></th> |
| 8 | + <th><?php _e( 'Action', 'omise' ); ?></th> |
10 | 9 | </tr>
|
11 | 10 | <tbody>
|
12 | 11 | <?php if ( isset( $viewData['existingCards']['data'] ) ): ?>
|
13 | 12 | <?php foreach( $viewData['existingCards']['data'] as $card ): ?>
|
14 | 13 | <?php
|
15 |
| - $nonce = wp_create_nonce( 'omise_delete_card_' . $card['id'] ); |
16 |
| - echo "<tr><td>{$card['name']}</td><td>XXXX XXXX XXXX {$card['last_digits']}</td>"; |
17 |
| - $created_date = date_i18n( get_option( 'date_format' ), strtotime($card['created'])); |
18 |
| - echo "<td>{$created_date}</td>"; |
19 |
| - echo "<td><button class='button delete_card' data-card-id='{$card['id']}' data-delete-card-nonce='{$nonce}'>Delete</button></td></tr>"; |
| 14 | + $nonce = wp_create_nonce( 'omise_delete_card_' . $card['id'] ); |
| 15 | + $created_date = date_i18n( get_option( 'date_format' ), strtotime($card['created'])); |
20 | 16 | ?>
|
| 17 | + <tr> |
| 18 | + <td><?= $card['name'] ?></td> |
| 19 | + <td>XXXX XXXX XXXX <?= $card['last_digits'] ?></td> |
| 20 | + <td><?= $created_date ?></td> |
| 21 | + <td> |
| 22 | + <button |
| 23 | + class='button delete_card' |
| 24 | + data-card-id=<?= $card['id'] ?> |
| 25 | + data-delete-card-nonce=<?= $nonce ?> |
| 26 | + > |
| 27 | + <?php _e( 'Delete', 'omise' ); ?> |
| 28 | + </button> |
| 29 | + </td> |
| 30 | + </tr> |
21 | 31 | <?php endforeach; ?>
|
22 | 32 | <?php endif; ?>
|
23 | 33 | </tbody>
|
24 | 34 | </table>
|
25 | 35 |
|
26 |
| - <h4>Add new card</h4> |
| 36 | + <h4><?php _e( 'Add new card', 'omise' ); ?></h4> |
27 | 37 | <form name="omise_cc_form" id="omise_cc_form">
|
28 | 38 | <?php wp_nonce_field('omise_add_card','omise_add_card_nonce'); ?>
|
29 | 39 | <fieldset>
|
30 | 40 | <?php require_once( __DIR__ . '/../payment/form-creditcard.php' ); ?>
|
31 | 41 | <div class="clear"></div>
|
32 | 42 | </fieldset>
|
33 | 43 | </form>
|
34 |
| - <button id="omise_add_new_card" class="button">Save card</button> |
| 44 | + <button id="omise_add_new_card" class="button"><?php _e( 'Save card', 'omise' ); ?></button> |
35 | 45 | </div>
|
0 commit comments