form_list.php in Webling 3.0.3, at src/admin/pages/form_list.php
| 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 |