| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 34 | public function display() |
||
| 35 | { |
||
| 36 | $wpFormTable = $this->formsTable->load(); |
||
| 37 | $wpFormTable->prepare_items(); ?> |
||
| 38 | <div class="wrap"> |
||
| 39 | <h2><?php _e('General', \WPSymfonyForm::TRANSLATION_DOMAIN); ?></h2> |
||
| 40 | <div id="poststuff"> |
||
| 41 | <div id="post-body" class="metabox-holder"> |
||
| 42 | <div id="post-body-content"> |
||
| 43 | <?php $wpFormTable->display(); ?> |
||
| 44 | </div> |
||
| 45 | </div> |
||
| 46 | <br class="clear"> |
||
| 47 | </div> |
||
| 48 | </div> |
||
| 49 | <?php |
||
| 50 | |||
| 51 | } |
||
| 52 | |||
| 65 |