HEX
Server: LiteSpeed
System: Linux server318.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: sahadove (2893)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/sahadove/public_html/wp-content/plugins/gallery-1766620036/parts/settings-page.php
<?php
	// Exits if accessed directly.
	if ( ! defined( 'ABSPATH' ) ) exit;
	
	flush_rewrite_rules();
?>

<div class="wrap ymfseo-settings-page">
	<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>

	<!-- Navigation -->
	<nav class="ymfseo-settings-page__nav">
		<?php foreach ( YMFSEO_Settings::$registered_sections as $section ) : ?>
			<div class="ymfseo-settings-page__nav-item" data-target="<?php echo esc_attr( $section[ 'slug' ] ); ?>">
				<span class="dashicons <?php echo esc_attr( $section[ 'icon' ] ); ?>"></span>
				<span class="label"><?php echo esc_attr( $section[ 'title' ] ); ?></span>
			</div>
		<?php endforeach; ?>
	</nav>

	<!-- Form -->
	<form method="POST" action="options.php">
		<?php settings_fields( YMFSEO_Settings::$params[ 'page_slug' ] ); ?>

		<section>
			<?php do_settings_sections( YMFSEO_Settings::$params[ 'page_slug' ] ); ?>
		</section>
			
		<?php submit_button(); ?>
	</form>

	<!-- JS -->
	<script>
		window.addEventListener( 'DOMContentLoaded', e => {
			YMFSEO_Settings.initSettingsNav();
			YMFSEO_Settings.initSettingsSaveButtons();
			YMFSEO_Settings.initSettingsSections();
		});
	</script>
</div>