abstract-shortcode-generator.php
8 years ago
admin-shortcodes.js
7 years ago
class-shortcode-button.php
7 years ago
mce-plugin.js
8 years ago
shortcode-give-donation-grid.php
7 years ago
shortcode-give-donation-history.php
8 years ago
shortcode-give-donor-wall.php
7 years ago
shortcode-give-form.php
8 years ago
shortcode-give-goal.php
8 years ago
shortcode-give-login.php
8 years ago
shortcode-give-profile-editor.php
8 years ago
shortcode-give-receipt.php
8 years ago
shortcode-give-register.php
8 years ago
shortcode-give-totals.php
8 years ago
shortcode-give-profile-editor.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The [give_profile_editor] Shortcode Generator class |
| 4 | * |
| 5 | * @package Give |
| 6 | * @subpackage Admin |
| 7 | * @copyright Copyright (c) 2016, WordImpress |
| 8 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
| 9 | * @since 1.3.0 |
| 10 | */ |
| 11 | |
| 12 | // Exit if accessed directly. |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; |
| 15 | } |
| 16 | |
| 17 | class Give_Shortcode_Profile_Editor extends Give_Shortcode_Generator { |
| 18 | |
| 19 | /** |
| 20 | * Class constructor |
| 21 | */ |
| 22 | public function __construct() { |
| 23 | |
| 24 | $this->shortcode['label'] = esc_html__( 'Profile Editor', 'give' ); |
| 25 | |
| 26 | parent::__construct( 'give_profile_editor' ); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | new Give_Shortcode_Profile_Editor; |
| 31 |