HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/easing-slider/resources/views/edit-settings.php
<div class="wrap">
	<h1 class="nav-tab-wrapper">
		<?php
			foreach ($tabs as $tabID => $tab_name) :

				// Get tab URL
				$tab_url = add_query_arg(array(
					'tab' => $tabID
				));

				// Print the tab
				?>
					<a href="<?php echo esc_url($tab_url); ?>" title="<?php echo esc_attr($tab_name); ?>'" class="nav-tab <?php if ($activeTab == $tabID) { ?>nav-tab-active<?php } ?>">
						<?php echo esc_html($tab_name); ?>
					</a>
				<?php

			endforeach;
		?>
	</h1>

	<?php settings_errors(); ?>

	<div id="tab_container">
		<form method="post" action="options.php">
			<table class="form-table">
				<?php
					settings_fields($optionName);
					do_settings_fields("{$optionName}_{$activeTab}", "easingslider_settings_{$activeTab}");
				?>
			</table>

			<?php submit_button(); ?>
		</form>
	</div>
</div>