# give/2.3.0/includes/admin/shortcodes/shortcode-give-profile-editor.php

GiveWP – Donation Plugin and Fundraising Platform, version 2.3.0. 31 lines.

- Page: https://pluginprobe.com/plugins/give/2.3.0/code/includes/admin/shortcodes/shortcode-give-profile-editor.php
- Raw: https://pluginprobe.com/plugins/give/2.3.0/raw/includes/admin/shortcodes/shortcode-give-profile-editor.php
- Modified: 2018-05-03T03:28:36+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/give/2.3.0/code/includes/admin/shortcodes/shortcode-give-profile-editor.php#L10-L20`.

```php
<?php
/**
 * The [give_profile_editor] Shortcode Generator class
 *
 * @package     Give
 * @subpackage  Admin
 * @copyright   Copyright (c) 2016, WordImpress
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.3.0
 */

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

class Give_Shortcode_Profile_Editor extends Give_Shortcode_Generator {

	/**
	 * Class constructor
	 */
	public function __construct() {

		$this->shortcode['label'] = esc_html__( 'Profile Editor', 'give' );

		parent::__construct( 'give_profile_editor' );
	}
}

new Give_Shortcode_Profile_Editor;

```
