PluginProbe
Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) / 1.6.60
Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) v1.6.60
1.8.12.3 1.8.12.2 1.8.12.1 1.8.12 1.8.11.3 1.8.11.2 1.8.11.1 1.8.11 1.6.6 1.6.60 1.6.7 1.6.8 1.6.9 1.7.0 1.7.0.1 1.7.0.11 1.7.0.12 1.7.0.14 1.7.0.2 1.7.0.3 1.7.0.5 1.7.0.6 1.7.0.7 1.7.0.9 1.8.0 All 210 releases
charitable / includes / shortcodes / class-charitable-registration-shortcode.php

class-charitable-registration-shortcode.php in Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) 1.6.60, at includes/shortcodes/class-charitable-registration-shortcode.php

62 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Registration shortcode class.
4 *
5 * @package Charitable/Shortcodes/Registration
6 * @author Eric Daams
7 * @copyright Copyright (c) 2022, Studio 164a
8 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
9 * @since 1.0.0
10 * @version 1.5.7
11 */
12
13 // Exit if accessed directly.
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 if ( ! class_exists( 'Charitable_Registration_Shortcode' ) ) :
19
20 /**
21 * Charitable_Registration_Shortcode class.
22 *
23 * @since 1.0.0
24 */
25 class Charitable_Registration_Shortcode {
26
27 /**
28 * The callback method for the campaigns shortcode.
29 *
30 * This receives the user-defined attributes and passes the logic off to the class.
31 *
32 * @since 1.0.0
33 *
34 * @param array $atts User-defined shortcode attributes.
35 * @return string
36 */
37 public static function display( $atts = array() ) {
38 $defaults = array(
39 'logged_in_message' => __( 'You are already logged in!', 'charitable' ),
40 'redirect' => false,
41 'login_link_text' => __( 'Signed up already? Login instead.', 'charitable' ),
42 );
43
44 $args = shortcode_atts( $defaults, $atts, 'charitable_registration' );
45
46 ob_start();
47
48 if ( is_user_logged_in() ) {
49 charitable_template( 'shortcodes/logged-in.php', $args );
50 return ob_get_clean();
51 }
52
53 $args['form'] = new Charitable_Registration_Form( $args );
54
55 charitable_template( 'shortcodes/registration.php', $args );
56
57 return apply_filters( 'charitable_registration_shortcode', ob_get_clean() );
58 }
59 }
60
61 endif;
62