File "class-convertkit-widgets.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/convertkit/includes/class-convertkit-widgets.php
File size: 638 bytes
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
/**
 * ConvertKit Widgets class.
 *
 * @package ConvertKit
 * @author ConvertKit
 */

/**
 * Registers Widgets.
 *
 * @since   1.0.0
 */
class ConvertKit_Widgets {

	/**
	 * Constructor.
	 *
	 * @since   1.0.0
	 */
	public function __construct() {

		add_action( 'widgets_init', array( $this, 'register_widgets' ) );

	}

	/**
	 * Register widget.
	 *
	 * @since   1.0.0
	 */
	public function register_widgets() {

		register_widget( 'CK_Widget_Form' );

	}

}