PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.1
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.1
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / assets / spa / components / form-entries / template.php

template.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.1, at assets/spa/components/form-entries/template.php

53 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="wpuf-contact-form-entries">
2 <div>
3 <h1 class="wp-heading-inline">
4 <?php _e( 'Entries', 'weforms' ); ?>
5 <span class="dashicons dashicons-arrow-right-alt2" style="margin-top: 5px;"></span>
6
7 <span style="color: #999;" class="form-name">
8 {{ form_title }}
9 </span>
10
11 <router-link class="page-title-action" to="/"><?php _e( 'Back to forms', 'weforms' ); ?></router-link>
12 </h1>
13 </div>
14
15 <div>
16 <ul class="subsubsub">
17 <li class="all">
18 <a href="#" :class="{ current: status =='publish' }" @click.prevent="status='publish'">
19 All
20 <span class="count">
21 ({{total}})
22 </span>
23 </a> |
24 </li>
25 <li class="trash">
26 <a href="#" :class="{ current: status =='trash' }" @click.prevent="status='trash'">
27 Trash
28 <span class="count">
29 ({{totalTrash}})
30 </span>
31 </a>
32 </li>
33 </ul>
34 </div>
35 <div>
36 <template>
37
38 <wpuf-table
39 action="weforms_form_entries"
40 :status="status"
41 :id="id"
42 v-on:ajaxsuccess="
43 form_title = $event.form_title;
44 total = $event.meta.total;
45 totalTrash = $event.meta.totalTrash
46 "
47 >
48 </wpuf-table>
49 </template>
50 </div>
51
52 </div>
53