PluginProbe
Webling / 3.0.3
Webling v3.0.3
trunk 2.0 3.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.5.0 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.9.0 3.9.1 3.9.2
webling / src / admin / pages / form_list.php

form_list.php in Webling 3.0.3, at src/admin/pages/form_list.php

33 lines 693 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class webling_page_form_list {
4
5 public static function html() {
6 $forms = new Form_List();
7 $forms->prepare_items();
8
9 ?>
10 <div class="wrap">
11 <h2>
12 Anmeldeformulare
13 <a href="<?php echo admin_url( 'admin.php?page=webling_page_form_edit' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Neues Formular', 'webling' ); ?></a>
14 </h2>
15
16 <div id="poststuff">
17 <div id="post-body">
18 <div id="post-body-content">
19 <div class="meta-box-sortables ui-sortable">
20 <form method="post">
21 <?php
22 $forms->display(); ?>
23 </form>
24 </div>
25 </div>
26 </div>
27 <br class="clear">
28 </div>
29 </div>
30 <?php
31 }
32 }
33