| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* displays the settings tab in Polylang settings |
| 5 |
*/ |
| 6 |
|
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; // don't access directly |
| 9 |
}; |
| 10 |
?> |
| 11 |
<div class="form-wrap"><?php |
| 12 |
wp_nonce_field( 'pll_options', '_pll_nonce' ); |
| 13 |
$list_table = new PLL_Table_Settings(); |
| 14 |
$list_table->prepare_items( $this->modules ); |
| 15 |
$list_table->display(); ?> |
| 16 |
</div> |
| 17 |
|