# profile-builder/3.9.8/assets/misc/elementor/widgets/class-pb-widget-epf.php

User Profile Builder – Beautiful User Registration Forms, User Profiles &amp; User Role Editor, version 3.9.8. 60 lines.

- Page: https://pluginprobe.com/plugins/profile-builder/3.9.8/code/assets/misc/elementor/widgets/class-pb-widget-epf.php
- Raw: https://pluginprobe.com/plugins/profile-builder/3.9.8/raw/assets/misc/elementor/widgets/class-pb-widget-epf.php
- Modified: 2022-04-20T11:31:32+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/profile-builder/3.9.8/code/assets/misc/elementor/widgets/class-pb-widget-epf.php#L10-L20`.

```php
<?php

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;

require_once "class-pb-widget-rf-epf.php";

/**
 * Elementor widget for our wppb-edit-profile shortcode
 */
class PB_Elementor_Edit_Profile_Widget extends PB_Elementor_Register_Edit_Profile_Widget {

    public function __construct($data = [], $args = null) {
        parent::__construct($data, $args);

        $this -> register_pb_scripts_styles();
    }

	/**
	 * Get widget name.
	 *
	 */
	public function get_name() {
		return 'wppb-edit-profile';
	}

	/**
	 * Get widget title.
	 *
	 */
	public function get_title() {
		return __( 'Edit Profile', 'profile-builder' );
	}

	/**
	 * Get widget icon.
	 *
	 */
	public function get_icon() {
		return 'eicon-form-horizontal';
	}

	/**
	 * Register widget controls.
	 *
	 */
	protected function register_controls() {
        $this->register_rf_epf_controls( 'epf' );
	}

	/**
	 * Render widget output in the front-end.
	 *
	 */
	protected function render() {
        $this->render_widget( 'epf');
	}

}

```
