PluginProbe
WP Directory Kit / 1.3.4
WP Directory Kit v1.3.4
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / application / views / wdk_settings / tabs / tab_emails.php

tab_emails.php in WP Directory Kit 1.3.4, at application/views/wdk_settings/tabs/tab_emails.php

39 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="wdk-field-edit">
2 <p class="alert alert-info"><?php echo __('This is code editing so may cause trouble if you put error in code','wpdirectorykit'); ?></p>
3 </div>
4 <table class="wp-list-table widefat striped table-view-list pages">
5 <thead>
6 <tr>
7 <th>#</th>
8 <th><?php echo esc_html__('Template', 'wdk-bookings'); ?></th>
9 <th><?php echo esc_html__('Description', 'wdk-bookings'); ?></th>
10 <th class="actions_column"><?php echo esc_html__('Actions', 'wdk-bookings'); ?></th>
11 </tr>
12 </thead>
13 <tbody>
14 <?php foreach ($mailtemplates as $key=>$template) : ?>
15 <tr>
16 <td>
17 <?php echo ($key + 1); ?>
18 </td>
19 <td>
20 <?php echo $template['template']; ?>
21 </td>
22 <td>
23 <?php echo $template['description']; ?>
24 </td>
25 <td class="actions_column">
26 <a target="_blank" href="<?php echo esc_url(get_admin_url() . "admin.php?page=wdk_settings&function=mailtemplate&file=".$template['template'].""); ?>"><span class="dashicons dashicons-edit"></span></a>
27 </td>
28 </tr>
29 <?php endforeach; ?>
30 </tbody>
31 <tfoot>
32 <tr>
33 <th>#</th>
34 <th><?php echo esc_html__('Template', 'wdk-bookings'); ?></th>
35 <th><?php echo esc_html__('Description', 'wdk-bookings'); ?></th>
36 <th class="actions_column"><?php echo esc_html__('Actions', 'wdk-bookings'); ?></th>
37 </tr>
38 </tfoot>
39 </table>