1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-02-17 20:21:05 +01:00
2024-04-05 23:26:11 +02:00

19 lines
393 B
PHP

<?php
namespace MobilizonConnector;
// Exit if this file is called directly.
if (!defined('ABSPATH')) {
exit;
}
?>
<div class="wrap">
<h1><?php echo esc_html(get_admin_page_title()); ?></h1>
<form action="options.php" method="post">
<?php
settings_fields(self::$OPTIONS_GROUP_NAME);
do_settings_sections(self::$PAGE_NAME);
submit_button('Save');
?>
</form>
</div>