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/deprecated-functions.php
<?php

/**
 * Echoes a sign-up checkbox.
 *
 * @since 1.0
 * @deprecated 3.0
 * @use `mc4wp_get_integration`
 * @ignore
 */
function mc4wp_checkbox() {
	_deprecated_function( __FUNCTION__, 'MailChimp for WordPress v3.0' );
	mc4wp_get_integration('wp-comment-form')->output_checkbox();
}

/**
 * Echoes a MailChimp for WordPress form
 *
 * @ignore
 * @since 1.0
 * @deprecated 3.0
 * @use mc4wp_show_form()
 *
 * @param   int     $id     The form ID
 *
 * @return MC4WP_Form
 *
 */
function mc4wp_form( $id = 0, $attributes = array() ) {
	_deprecated_function( __FUNCTION__, 'MailChimp for WordPress v3.0', 'mc4wp_show_form' );
	return mc4wp_show_form( $id, $attributes );
}