Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
byp
/
wp-content
/
plugins
/
convertkit
/
includes
:
class-convertkit-widgets.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' ); } }