MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/mailchimp-for-wp/includes/forms/views/edit-form.php
<?php defined( 'ABSPATH' ) or exit;

$tabs = array(
	'fields'        => __( 'Fields', 'mailchimp-for-wp' ),
	'messages'      => __( 'Messages', 'mailchimp-for-wp' ),
	'settings'      => __( 'Settings', 'mailchimp-for-wp' ),
	'appearance'    => __( 'Appearance', 'mailchimp-for-wp' )
);

/**
 * Filters the setting tabs on the "edit form" screen.
 *
 * @param array $tabs
 * @ignore
 */
$tabs = apply_filters( 'mc4wp_admin_edit_form_tabs', $tabs );

?>
<div id="mc4wp-admin" class="wrap mc4wp-settings">

	<p class="breadcrumbs">
		<span class="prefix"><?php echo __( 'You are here: ', 'mailchimp-for-wp' ); ?></span>
		<a href="<?php echo admin_url( 'admin.php?page=mailchimp-for-wp' ); ?>">MailChimp for WordPress</a> &rsaquo;
		<a href="<?php echo admin_url( 'admin.php?page=mailchimp-for-wp-forms' ); ?>"><?php _e( 'Forms', 'mailchimp-for-wp' ); ?></a> &rsaquo;
		<span class="current-crumb"><strong><?php echo __( 'Form', 'mailchimp-for-wp' ); ?> <?php echo $form_id; ?> | <?php echo $form->name; ?></strong></span>
	</p>

	<div class="row">

		<!-- Main Content -->
		<div class="main-content col col-4">

			<h1 class="page-title">
				<?php _e( "Edit Form", 'mailchimp-for-wp' ); ?>

				<!-- Form actions -->
				<?php

				/**
				 * @ignore
				 */
				do_action( 'mc4wp_admin_edit_form_after_title' );
				?>
			</h1>

			<h2 style="display: none;"></h2><?php // fake h2 for admin notices ?>

			<!-- Wrap entire page in <form> -->
			<form method="post">
				<?php // default submit button to prevent opening preview ?>
				<input type="submit" style="display: none; " />
				<input type="hidden" name="_mc4wp_action" value="edit_form" />
				<input type="hidden" name="mc4wp_form_id" value="<?php echo esc_attr( $form->ID ); ?>" />
				<?php wp_nonce_field( 'edit_form', '_mc4wp_nonce' ); ?>

				<div id="titlediv" class="small-margin">
					<div id="titlewrap">
						<label class="screen-reader-text" for="title"><?php _e( 'Enter form title here', 'mailchimp-for-wp' ); ?></label>
						<input type="text" name="mc4wp_form[name]" size="30" value="<?php echo esc_attr( $form->name ); ?>" id="title" spellcheck="true" autocomplete="off" placeholder="<?php echo __( "Enter the title of your sign-up form", 'mailchimp-for-wp' ); ?>" style="line-height: initial;" >
					</div>
					<div class="inside" style="margin-top: 3px;">

						<input id="shortcode" type="hidden" value="<?php echo esc_attr( sprintf( '[mc4wp_form id="%d"]', $form->ID ) ); ?>">

						<a href="#" class="button-secondary" onclick="prompt('<?php echo esc_attr__( 'Shortcode', 'mailchimp-for-wp' ); ?>', document.getElementById('shortcode').value); return false;">
							<span class="dashicons dashicons-editor-code"></span>
							<?php _e( 'Get shortcode', 'mailchimp-for-wp' ); ?>
						</a>

						<button type="submit" name="_mc4wp_action" value="preview_form" onblur="this.form.removeAttribute('target');" onfocus="this.form.setAttribute('target','_form_preview');" class="button-secondary" tabindex="-1">
							<span class="dashicons dashicons-welcome-view-site" style=""></span>
							<?php _e( 'Preview this form', 'mailchimp-for-wp' ); ?>
						</button>

					</div>
				</div>

				<h2 class="nav-tab-wrapper" id="mc4wp-tabs-nav">
					<?php foreach( $tabs as $tab => $name ) {
						$class = ( $active_tab === $tab ) ? 'nav-tab-active' : '';
						echo sprintf( '<a class="nav-tab nav-tab-%s %s" href="%s">%s</a>', $tab, $class, $this->tab_url( $tab ), $name );
					} ?>
				</h2>

				<div id="mc4wp-tabs">

					<?php foreach( $tabs as $tab => $name ) :

						$class = ( $active_tab === $tab ) ? 'tab-active' : '';

						// start of .tab
						echo sprintf( '<div class="tab %s" id="tab-%s">', $class, $tab );

						/**
						 * Runs when outputting a tab section on the "edit form" screen
						 *
						 * @param string $tab
						 * @ignore
						 */
						do_action( 'mc4wp_admin_edit_form_output_' . $tab . '_tab', $opts, $form );

						$tab_file = dirname( __FILE__ ) . '/tabs/form-' . $tab . '.php';
						if( file_exists( $tab_file ) ) {
							include $tab_file;
						}

						// end of .tab
						echo '</div>';

					endforeach; // foreach tabs ?>

				</div>

			</form><!-- Entire page form wrap -->


			<?php include MC4WP_PLUGIN_DIR . 'includes/views/parts/admin-footer.php'; ?>

		</div>

		<!-- Sidebar -->
		<div class="sidebar col col-2">
			<?php include MC4WP_PLUGIN_DIR . 'includes/views/parts/admin-sidebar.php'; ?>
		</div>


	</div>

</div>