# powerkit/2.3.6/modules/widget-about/class-powerkit-widget-about.php

Powerkit – Supercharge your WordPress Site, version 2.3.6. 46 lines.

- Page: https://pluginprobe.com/plugins/powerkit/2.3.6/code/modules/widget-about/class-powerkit-widget-about.php
- Raw: https://pluginprobe.com/plugins/powerkit/2.3.6/raw/modules/widget-about/class-powerkit-widget-about.php
- Modified: 2020-09-19T14:20:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/powerkit/2.3.6/code/modules/widget-about/class-powerkit-widget-about.php#L10-L20`.

```php
<?php
/**
 * About Widget
 *
 * @package    Powerkit
 * @subpackage Modules
 */

/**
 * Init module
 */
class Powerkit_Widget_About extends Powerkit_Module {

	/**
	 * Register module
	 */
	public function register() {
		$this->name     = esc_html__( 'About Widget', 'powerkit' );
		$this->desc     = esc_html__( 'Display Image, Text and Social Accounts.', 'powerkit' );
		$this->slug     = 'widget_about';
		$this->type     = 'default';
		$this->category = 'widget';
		$this->priority = 155;
		$this->public   = true;
		$this->enabled  = true;
	}

	/**
	 * Initialize module
	 */
	public function initialize() {
		// Helpers Functions for the module.
		require_once dirname( __FILE__ ) . '/helpers/helper-powerkit-about.php';

		// The classes responsible for defining all actions.
		require_once dirname( __FILE__ ) . '/public/class-powerkit-widget-about-init.php';

		// Admin and public area.
		require_once dirname( __FILE__ ) . '/public/class-powerkit-widget-about-public.php';

		new Powerkit_Widget_About_Public( $this->slug );
	}
}

new Powerkit_Widget_About();

```
