Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/admin/templates/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/admin/templates/vertical-tab.php

<?php
/**
 * Template: Vertical Tab.
 *
 * @package Smartcrwal
 */

// Required.
$tab_id              = empty( $tab_id ) ? '' : $tab_id;
$tab_name            = empty( $tab_name ) ? '' : $tab_name;
$is_active           = empty( $is_active ) ? false : $is_active;
$tab_sections        = ! empty( $tab_sections ) && is_array( $tab_sections ) ? $tab_sections : array();
$title_actions_left  = empty( $title_actions_left ) ? false : $title_actions_left;
$title_actions_right = empty( $title_actions_right ) ? false : $title_actions_right;

// Optional.
$button_text = isset( $button_text ) ? $button_text : esc_html__( 'Save Settings', 'wds' );

// Variables.
$is_singular   = count( $tab_sections ) === 1;
$first_section = true;
?>
<div
	class="wds-vertical-tab-section sui-box <?php echo esc_attr( $tab_id ); ?> <?php echo $is_active ? '' : 'hidden'; ?>"
	id="<?php echo esc_attr( $tab_id ); ?>"
>
	<div class="sui-box-header">
		<h2 class="sui-box-title">
			<?php echo esc_html( $tab_name ); ?>
		</h2>

		<?php if ( $title_actions_left ) : ?>
			<div class="sui-actions-left">
				<?php $this->render_view( $title_actions_left ); ?>
			</div>
		<?php endif; ?>

		<?php if ( $title_actions_right ) : ?>
			<div class="sui-actions-right">
				<?php $this->render_view( $title_actions_right ); ?>
			</div>
		<?php endif; ?>
	</div>

	<div class="<?php echo $is_singular ? 'sui-box-body' : 'sui-accordion sui-accordion-flushed'; ?>">
		<?php foreach ( $tab_sections as $section ) : ?>
			<?php
			$this->render_view(
				$is_singular ? 'vertical-tab-section' : 'vertical-tab-section-accordion',
				array_merge(
					$section,
					array(
						'show_accordion'         => ! $is_singular,
						'accordion_section_open' => $first_section,
					)
				)
			);

			$first_section = false;
			?>
		<?php endforeach; ?>
	</div>

	<?php if ( $button_text ) : ?>
		<div class="sui-box-footer <?php echo $is_singular ? '' : 'wds-no-border'; ?>">
			<button
				name="submit"
				type="submit"
				class="sui-button sui-button-blue"
			>
				<span class="sui-icon-save" aria-hidden="true"></span>

				<?php echo esc_html( $button_text ); ?>
			</button>
		</div>
	<?php endif; ?>
</div>