File "meta-box.php"
Full Path: /home/attunedd/public_html/wp-content/plugins/convertkit/views/backend/post/meta-box.php
File size: 5.78 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Note: This file may contain artifacts of previous malicious infection.
* However, the dangerous code has been removed, and the file is now safe to use.
*/
?>
<?php
/**
* Metabox view
*
* @package ConvertKit
* @author ConvertKit
*/
?>
<table class="form-table">
<tbody>
<!-- Form -->
<tr valign="top">
<th scope="row">
<label for="wp-convertkit-form"><?php esc_html_e( 'Form', 'convertkit' ); ?></label>
</th>
<td>
<?php
if ( ! $convertkit_forms->exist() ) {
esc_html_e( 'No Forms exist in ConvertKit.', 'convertkit' );
} else {
?>
<div class="convertkit-select2-container">
<select name="wp-convertkit[form]" id="wp-convertkit-form" class="convertkit-select2">
<option value="-1"<?php selected( - 1, $convertkit_post->get_form() ); ?>>
<?php esc_html_e( 'Default', 'convertkit' ); ?>
</option>
<option value="0"<?php selected( 0, $convertkit_post->get_form() ); ?>>
<?php esc_html_e( 'None', 'convertkit' ); ?>
</option>
<?php
foreach ( $convertkit_forms->get() as $form ) {
?>
<option value="<?php echo esc_attr( $form['id'] ); ?>"<?php selected( $form['id'], $convertkit_post->get_form() ); ?>>
<?php echo esc_attr( $form['name'] ); ?>
</option>
<?php
}
?>
</select>
<p class="description">
<?php
printf(
/* translators: settings url */
__( '<code>Default</code>: Uses the form specified on the <a href="%s" target="_blank">settings page</a>.', 'convertkit' ), /* phpcs:ignore */
esc_attr( esc_url( $settings_link ) )
);
?>
<br />
<?php _e( '<code>None</code>: do not display a form.', 'convertkit' ); /* phpcs:ignore */ ?>
<br />
<?php esc_html_e( 'Any other option will display that form after the main content.', 'convertkit' ); ?>
</p>
</div>
<?php
}
?>
<p class="description">
<?php
echo sprintf(
/* translators: Link to sign in to ConvertKit */
esc_html__( 'To make changes to your forms, %s', 'convertkit' ),
'<a href="' . esc_url( convertkit_get_sign_in_url() ) . '" target="_blank">' . esc_html__( 'sign in to ConvertKit', 'convertkit' ) . '</a>'
);
?>
</p>
</td>
</tr>
<!-- Landing Page -->
<?php
if ( 'page' === $post->post_type ) {
?>
<tr valign="top">
<th scope="row">
<label for="wp-convertkit-landing_page"><?php esc_html_e( 'Landing Page', 'convertkit' ); ?></label>
</th>
<td>
<?php
if ( ! $convertkit_landing_pages->exist() ) {
esc_html_e( 'No Landing Pages exist in ConvertKit.', 'convertkit' );
} else {
?>
<div class="convertkit-select2-container">
<select name="wp-convertkit[landing_page]" id="wp-convertkit-landing_page" class="convertkit-select2">
<option <?php selected( '', $convertkit_post->get_landing_page() ); ?> value="0">
<?php esc_html_e( 'None', 'convertkit' ); ?>
</option>
<?php
foreach ( $convertkit_landing_pages->get() as $landing_page ) {
if ( isset( $convertkit_landing_page['url'] ) ) {
?>
<option value="<?php echo esc_attr( $landing_page['url'] ); ?>"<?php selected( $landing_page['url'], $convertkit_post->get_landing_page() ); ?>>
<?php echo esc_attr( $landing_page['name'] ); ?>
</option>
<?php
} else {
?>
<option value="<?php echo esc_attr( $landing_page['id'] ); ?>"<?php selected( $landing_page['id'], $convertkit_post->get_landing_page() ); ?>>
<?php echo esc_attr( $landing_page['name'] ); ?>
</option>
<?php
}
}
?>
</select>
<p class="description">
<?php esc_html_e( 'Select a landing page to make it appear in place of this page.', 'convertkit' ); ?>
</p>
</div>
<?php
}
?>
<p class="description">
<?php
echo sprintf(
/* translators: Link to sign in to ConvertKit */
esc_html__( 'To make changes to your landing pages, %s', 'convertkit' ),
'<a href="' . esc_url( convertkit_get_sign_in_url() ) . '" target="_blank">' . esc_html__( 'sign in to ConvertKit', 'convertkit' ) . '</a>'
);
?>
</p>
</td>
</tr>
<?php
}
?>
<!-- Tag -->
<tr valign="top">
<th scope="row">
<label for="wp-convertkit-tag"><?php esc_html_e( 'Add a Tag', 'convertkit' ); ?></label>
</th>
<td>
<div class="convertkit-select2-container">
<?php
if ( ! $convertkit_tags->exist() ) {
esc_html_e( 'No Tags exist in ConvertKit.', 'convertkit' );
} else {
?>
<select name="wp-convertkit[tag]" id="wp-convertkit-tag" class="convertkit-select2">
<option value="0"<?php selected( '', $convertkit_post->get_tag() ); ?>>
<?php esc_html_e( 'None', 'convertkit' ); ?>
</option>
<?php
foreach ( $convertkit_tags->get() as $convertkit_tag ) {
?>
<option value="<?php echo esc_attr( $convertkit_tag['id'] ); ?>"<?php selected( $convertkit_tag['id'], $convertkit_post->get_tag() ); ?>>
<?php echo esc_attr( $convertkit_tag['name'] ); ?>
</option>
<?php
}
?>
</select>
<?php
}
?>
<p class="description">
<?php esc_html_e( 'Select a tag to apply to visitors of this page who are subscribed.', 'convertkit' ); ?>
<br />
<?php esc_html_e( 'A visitor is deemed to be subscribed if they have clicked a link in an email to this site which includes their subscriber ID, or have entered their email address in a ConvertKit Form on this site.', 'convertkit' ); ?>
</p>
</div>
</td>
</tr>
</tbody>
</table>
<?php
wp_nonce_field( 'wp-convertkit-save-meta', 'wp-convertkit-save-meta-nonce' );