Completed
Branch dependabot/npm_and_yarn/wordpr... (563a96)
by
unknown
57:01 queued 49:08
created
core/domain/services/admin/privacy/export/ExportTransaction.php 1 patch
Indentation   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -15,106 +15,106 @@
 block discarded – undo
15 15
  */
16 16
 class ExportTransaction implements PersonalDataExporterInterface
17 17
 {
18
-    /**
19
-     * @var EEM_Transaction $transaction_model
20
-     */
21
-    protected $transaction_model;
18
+	/**
19
+	 * @var EEM_Transaction $transaction_model
20
+	 */
21
+	protected $transaction_model;
22 22
 
23
-    /**
24
-     * ExportTransaction constructor.
25
-     *
26
-     * @param $transaction_model
27
-     */
28
-    public function __construct(EEM_Transaction $transaction_model)
29
-    {
30
-        $this->transaction_model = $transaction_model;
31
-    }
23
+	/**
24
+	 * ExportTransaction constructor.
25
+	 *
26
+	 * @param $transaction_model
27
+	 */
28
+	public function __construct(EEM_Transaction $transaction_model)
29
+	{
30
+		$this->transaction_model = $transaction_model;
31
+	}
32 32
 
33 33
 
34
-    /**
35
-     * Returns data for export.
36
-     *
37
-     * @param string    $email_address ,
38
-     * @param int       $page          starts at 1, not 0
39
-     * @return array {
40
-     * @type array      $data          {
41
-     * @type array {
42
-     * @type string     $group_id      (not translated, same for all exports)
43
-     * @type string     $group_label   (translated string)
44
-     * @type string|int $item_id
45
-     * @type array      $data          {
46
-     * @type array {
47
-     * @type string     $name          what's shown in the left-column of the export row
48
-     * @type string     $value         what's showin the right-column of the export row
49
-     *                                 }
50
-     *                                 }
51
-     *                                 }
52
-     *                                 }
53
-     *                                 }
54
-     */
55
-    public function export($email_address, $page = 1)
56
-    {
57
-        $page_size = 10;
58
-        $transactions = $this->transaction_model->get_all(
59
-            array(
60
-                array(
61
-                    'Registration.Attendee.ATT_email' => $email_address,
62
-                ),
63
-                'limit' => array(
64
-                    ($page - 1) * $page_size,
65
-                    $page_size,
66
-                ),
67
-            )
68
-        );
69
-        $export_fields = array_intersect_key(
70
-            EEM_Transaction::instance()->field_settings(),
71
-            array_flip(
72
-                array(
73
-                    'TXN_timestamp',
74
-                    'TXN_total',
75
-                    'TXN_paid',
76
-                    'TXN_session_data',
77
-                )
78
-            )
79
-        );
80
-        $export_items = array();
81
-        $found_something = false;
82
-        foreach ($transactions as $transaction) {
83
-            $found_something = true;
84
-            $data = array();
85
-            foreach ($export_fields as $field_name => $field_obj) {
86
-                if ($field_name === 'TXN_session_data') {
87
-                    $value = $transaction->get_pretty($field_name, 'print_r');
88
-                } else {
89
-                    $value = $transaction->get_pretty($field_name);
90
-                }
91
-                $data[] = array(
92
-                    'name'  => $field_obj->get_nicename(),
93
-                    'value' => $value,
94
-                );
95
-            }
96
-            $export_items[] = array(
97
-                'group_id'    => 'transactions',
98
-                'group_label' => esc_html__('Transactions', 'event_espresso'),
99
-                'item_id'     => $transaction->ID(),
100
-                'data'        => $data,
101
-            );
102
-        }
103
-        return array(
104
-            'data' => $export_items,
105
-            'done' => ! $found_something,
106
-        );
107
-    }
34
+	/**
35
+	 * Returns data for export.
36
+	 *
37
+	 * @param string    $email_address ,
38
+	 * @param int       $page          starts at 1, not 0
39
+	 * @return array {
40
+	 * @type array      $data          {
41
+	 * @type array {
42
+	 * @type string     $group_id      (not translated, same for all exports)
43
+	 * @type string     $group_label   (translated string)
44
+	 * @type string|int $item_id
45
+	 * @type array      $data          {
46
+	 * @type array {
47
+	 * @type string     $name          what's shown in the left-column of the export row
48
+	 * @type string     $value         what's showin the right-column of the export row
49
+	 *                                 }
50
+	 *                                 }
51
+	 *                                 }
52
+	 *                                 }
53
+	 *                                 }
54
+	 */
55
+	public function export($email_address, $page = 1)
56
+	{
57
+		$page_size = 10;
58
+		$transactions = $this->transaction_model->get_all(
59
+			array(
60
+				array(
61
+					'Registration.Attendee.ATT_email' => $email_address,
62
+				),
63
+				'limit' => array(
64
+					($page - 1) * $page_size,
65
+					$page_size,
66
+				),
67
+			)
68
+		);
69
+		$export_fields = array_intersect_key(
70
+			EEM_Transaction::instance()->field_settings(),
71
+			array_flip(
72
+				array(
73
+					'TXN_timestamp',
74
+					'TXN_total',
75
+					'TXN_paid',
76
+					'TXN_session_data',
77
+				)
78
+			)
79
+		);
80
+		$export_items = array();
81
+		$found_something = false;
82
+		foreach ($transactions as $transaction) {
83
+			$found_something = true;
84
+			$data = array();
85
+			foreach ($export_fields as $field_name => $field_obj) {
86
+				if ($field_name === 'TXN_session_data') {
87
+					$value = $transaction->get_pretty($field_name, 'print_r');
88
+				} else {
89
+					$value = $transaction->get_pretty($field_name);
90
+				}
91
+				$data[] = array(
92
+					'name'  => $field_obj->get_nicename(),
93
+					'value' => $value,
94
+				);
95
+			}
96
+			$export_items[] = array(
97
+				'group_id'    => 'transactions',
98
+				'group_label' => esc_html__('Transactions', 'event_espresso'),
99
+				'item_id'     => $transaction->ID(),
100
+				'data'        => $data,
101
+			);
102
+		}
103
+		return array(
104
+			'data' => $export_items,
105
+			'done' => ! $found_something,
106
+		);
107
+	}
108 108
 
109
-    /**
110
-     * Gets the Translated name of this exporter
111
-     *
112
-     * @return string
113
-     */
114
-    public function name()
115
-    {
116
-        return esc_html__('Event Espresso Transaction Exporter', 'event_espresso');
117
-    }
109
+	/**
110
+	 * Gets the Translated name of this exporter
111
+	 *
112
+	 * @return string
113
+	 */
114
+	public function name()
115
+	{
116
+		return esc_html__('Event Espresso Transaction Exporter', 'event_espresso');
117
+	}
118 118
 }
119 119
 // End of file ExportTransaction.php
120 120
 // Location: EventEspresso\core\domain\services\admin\privacy\export/ExportTransaction.php
Please login to merge, or discard this patch.
core/domain/services/admin/privacy/export/ExportCheckins.php 1 patch
Indentation   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -16,112 +16,112 @@
 block discarded – undo
16 16
  */
17 17
 class ExportCheckins implements PersonalDataExporterInterface
18 18
 {
19
-    /**
20
-     * @var EEM_Checkin
21
-     */
22
-    protected $checkin_model;
19
+	/**
20
+	 * @var EEM_Checkin
21
+	 */
22
+	protected $checkin_model;
23 23
 
24
-    /**
25
-     * ExportCheckins constructor.
26
-     *
27
-     * @param EEM_Checkin $checkin_model
28
-     */
29
-    public function __construct(EEM_Checkin $checkin_model)
30
-    {
31
-        $this->checkin_model = $checkin_model;
32
-    }
24
+	/**
25
+	 * ExportCheckins constructor.
26
+	 *
27
+	 * @param EEM_Checkin $checkin_model
28
+	 */
29
+	public function __construct(EEM_Checkin $checkin_model)
30
+	{
31
+		$this->checkin_model = $checkin_model;
32
+	}
33 33
 
34 34
 
35
-    /**
36
-     * Returns data for export.
37
-     *
38
-     * @param string    $email_address ,
39
-     * @param int       $page          starts at 1, not 0
40
-     * @return array {
41
-     * @type array      $data          {
42
-     * @type array {
43
-     * @type string     $group_id      (not translated, same for all exports)
44
-     * @type string     $group_label   (translated string)
45
-     * @type string|int $item_id
46
-     * @type array      $data          {
47
-     * @type array {
48
-     * @type string     $name          what's shown in the left-column of the export row
49
-     * @type string     $value         what's showin the right-column of the export row
50
-     *                                 }
51
-     *                                 }
52
-     *                                 }
53
-     *                                 }
54
-     *                                 }
55
-     */
56
-    public function export($email_address, $page = 1)
57
-    {
58
-        $page_size = 10;
59
-        $checkins = $this->checkin_model->get_all(
60
-            array(
61
-                array(
62
-                    'Registration.Attendee.ATT_email' => $email_address,
63
-                ),
64
-                'limit'      => array(
65
-                    ($page - 1) * $page_size,
66
-                    $page_size,
67
-                ),
68
-                'force_join' => array('Registration.Event'),
69
-            )
70
-        );
35
+	/**
36
+	 * Returns data for export.
37
+	 *
38
+	 * @param string    $email_address ,
39
+	 * @param int       $page          starts at 1, not 0
40
+	 * @return array {
41
+	 * @type array      $data          {
42
+	 * @type array {
43
+	 * @type string     $group_id      (not translated, same for all exports)
44
+	 * @type string     $group_label   (translated string)
45
+	 * @type string|int $item_id
46
+	 * @type array      $data          {
47
+	 * @type array {
48
+	 * @type string     $name          what's shown in the left-column of the export row
49
+	 * @type string     $value         what's showin the right-column of the export row
50
+	 *                                 }
51
+	 *                                 }
52
+	 *                                 }
53
+	 *                                 }
54
+	 *                                 }
55
+	 */
56
+	public function export($email_address, $page = 1)
57
+	{
58
+		$page_size = 10;
59
+		$checkins = $this->checkin_model->get_all(
60
+			array(
61
+				array(
62
+					'Registration.Attendee.ATT_email' => $email_address,
63
+				),
64
+				'limit'      => array(
65
+					($page - 1) * $page_size,
66
+					$page_size,
67
+				),
68
+				'force_join' => array('Registration.Event'),
69
+			)
70
+		);
71 71
 
72
-        if (empty($checkins)) {
73
-            return array(
74
-                'data' => array(),
75
-                'done' => true,
76
-            );
77
-        }
72
+		if (empty($checkins)) {
73
+			return array(
74
+				'data' => array(),
75
+				'done' => true,
76
+			);
77
+		}
78 78
 
79
-        $export_items = array();
80
-        foreach ($checkins as $checkin) {
81
-            $reg = $checkin->get_first_related('Registration');
82
-            if ($reg instanceof EE_Registration) {
83
-                $event_name = $reg->event_name();
84
-            } else {
85
-                $event_name = esc_html__('Unknown', 'event_espresso');
86
-            }
87
-            $export_items[] =
88
-                array(
89
-                    'group_id'    => 'check-ins',
90
-                    'group_label' => esc_html__('Event Check-Ins', 'event_espresso'),
91
-                    'item_id'     => $checkin->ID(),
92
-                    'data'        => array(
93
-                        array(
94
-                            'name'  => esc_html__('Time', 'event_espresso'),
95
-                            'value' => $checkin->get_pretty('CHK_timestamp'),
96
-                        ),
97
-                        array(
98
-                            'name'  => esc_html__('Check in/out', 'event_espresso'),
99
-                            'value' => $checkin->get('CHK_in')
100
-                                ? esc_html__('In', 'event_espresso')
101
-                                : esc_html__('Out', 'event_espresso'),
102
-                        ),
103
-                        array(
104
-                            'name'  => esc_html__('Event', 'event_espresso'),
105
-                            'value' => $event_name,
106
-                        ),
107
-                    ),
108
-                );
109
-        }
110
-        return array(
111
-            'data' => $export_items,
112
-            'done' => true,
113
-        );
114
-    }
79
+		$export_items = array();
80
+		foreach ($checkins as $checkin) {
81
+			$reg = $checkin->get_first_related('Registration');
82
+			if ($reg instanceof EE_Registration) {
83
+				$event_name = $reg->event_name();
84
+			} else {
85
+				$event_name = esc_html__('Unknown', 'event_espresso');
86
+			}
87
+			$export_items[] =
88
+				array(
89
+					'group_id'    => 'check-ins',
90
+					'group_label' => esc_html__('Event Check-Ins', 'event_espresso'),
91
+					'item_id'     => $checkin->ID(),
92
+					'data'        => array(
93
+						array(
94
+							'name'  => esc_html__('Time', 'event_espresso'),
95
+							'value' => $checkin->get_pretty('CHK_timestamp'),
96
+						),
97
+						array(
98
+							'name'  => esc_html__('Check in/out', 'event_espresso'),
99
+							'value' => $checkin->get('CHK_in')
100
+								? esc_html__('In', 'event_espresso')
101
+								: esc_html__('Out', 'event_espresso'),
102
+						),
103
+						array(
104
+							'name'  => esc_html__('Event', 'event_espresso'),
105
+							'value' => $event_name,
106
+						),
107
+					),
108
+				);
109
+		}
110
+		return array(
111
+			'data' => $export_items,
112
+			'done' => true,
113
+		);
114
+	}
115 115
 
116
-    /**
117
-     * Gets the Translated name of this exporter
118
-     *
119
-     * @return string
120
-     */
121
-    public function name()
122
-    {
123
-        return esc_html__('Event Espresso Checkins Exporter', 'event_espresso');
124
-    }
116
+	/**
117
+	 * Gets the Translated name of this exporter
118
+	 *
119
+	 * @return string
120
+	 */
121
+	public function name()
122
+	{
123
+		return esc_html__('Event Espresso Checkins Exporter', 'event_espresso');
124
+	}
125 125
 }
126 126
 // End of file ExportCheckins.php
127 127
 // Location: EventEspresso\core\domain\services\admin\privacy\export/ExportCheckins.php
Please login to merge, or discard this patch.
core/domain/services/admin/privacy/export/ExportAttendee.php 2 patches
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -15,116 +15,116 @@
 block discarded – undo
15 15
  */
16 16
 class ExportAttendee implements PersonalDataExporterInterface
17 17
 {
18
-    /**
19
-     * @var EEM_Attendee
20
-     */
21
-    protected $attendee_model;
18
+	/**
19
+	 * @var EEM_Attendee
20
+	 */
21
+	protected $attendee_model;
22 22
 
23
-    /**
24
-     * ExportAttendee constructor.
25
-     *
26
-     * @param EEM_Attendee $attendee_model
27
-     */
28
-    public function __construct(EEM_Attendee $attendee_model)
29
-    {
30
-        $this->attendee_model = $attendee_model;
31
-    }
23
+	/**
24
+	 * ExportAttendee constructor.
25
+	 *
26
+	 * @param EEM_Attendee $attendee_model
27
+	 */
28
+	public function __construct(EEM_Attendee $attendee_model)
29
+	{
30
+		$this->attendee_model = $attendee_model;
31
+	}
32 32
 
33 33
 
34
-    /**
35
-     * Returns data for export.
36
-     *
37
-     * @param string    $email_address ,
38
-     * @param int       $page          starts at 1, not 0
39
-     * @return array {
40
-     * @type array      $data          {
41
-     * @type array {
42
-     * @type string     $group_id      (not translated, same for all exports)
43
-     * @type string     $group_label   (translated string)
44
-     * @type string|int $item_id
45
-     * @type array      $data          {
46
-     * @type array {
47
-     * @type string     $name          what's shown in the left-column of the export row
48
-     * @type string     $value         what's showin the right-column of the export row
49
-     *                                 }
50
-     *                                 }
51
-     *                                 }
52
-     *                                 }
53
-     *                                 }
54
-     */
55
-    public function export($email_address, $page = 1)
56
-    {
57
-        $attendees = $this->attendee_model->get_all(
58
-            array(
59
-                array(
60
-                    'ATT_email' => $email_address,
61
-                ),
62
-            )
63
-        );
34
+	/**
35
+	 * Returns data for export.
36
+	 *
37
+	 * @param string    $email_address ,
38
+	 * @param int       $page          starts at 1, not 0
39
+	 * @return array {
40
+	 * @type array      $data          {
41
+	 * @type array {
42
+	 * @type string     $group_id      (not translated, same for all exports)
43
+	 * @type string     $group_label   (translated string)
44
+	 * @type string|int $item_id
45
+	 * @type array      $data          {
46
+	 * @type array {
47
+	 * @type string     $name          what's shown in the left-column of the export row
48
+	 * @type string     $value         what's showin the right-column of the export row
49
+	 *                                 }
50
+	 *                                 }
51
+	 *                                 }
52
+	 *                                 }
53
+	 *                                 }
54
+	 */
55
+	public function export($email_address, $page = 1)
56
+	{
57
+		$attendees = $this->attendee_model->get_all(
58
+			array(
59
+				array(
60
+					'ATT_email' => $email_address,
61
+				),
62
+			)
63
+		);
64 64
 
65
-        if (empty($attendees)) {
66
-            return array(
67
-                'data' => array(),
68
-                'done' => true,
69
-            );
70
-        }
65
+		if (empty($attendees)) {
66
+			return array(
67
+				'data' => array(),
68
+				'done' => true,
69
+			);
70
+		}
71 71
 
72
-        $export_items = array();
73
-        foreach ($attendees as $attendee) {
74
-            $export_fields = array_intersect_key(
75
-                $this->attendee_model->field_settings(),
76
-                array_flip(
77
-                    array(
78
-                        'ATT_fname',
79
-                        'ATT_lname',
80
-                        'ATT_email',
81
-                        'ATT_address1',
82
-                        'ATT_address2',
83
-                        'ATT_city',
84
-                        'STA_ID',
85
-                        'CNT_ISO',
86
-                        'ATT_zip',
87
-                        'ATT_phone',
88
-                    )
89
-                )
90
-            );
91
-            $data = array();
92
-            foreach ($export_fields as $field_name => $field_obj) {
93
-                if ($field_name === 'STA_ID') {
94
-                    $value = $attendee->state_name();
95
-                } elseif ($field_name == 'CNT_ISO') {
96
-                    $value = $attendee->country_name();
97
-                } else {
98
-                    $value = $attendee->get_pretty($field_name);
99
-                }
100
-                $data[] = array(
101
-                    'name'  => $field_obj->get_nicename(),
102
-                    'value' => $value,
103
-                );
104
-            }
105
-            $export_items[] =
106
-                array(
107
-                    'group_id'    => 'att-' . $attendee->ID(),
108
-                    'group_label' => esc_html__('Contact Profiles', 'event_espresso'),
109
-                    'item_id'     => $attendee->ID(),
110
-                    'data'        => $data,
111
-                );
112
-        }
113
-        return array(
114
-            'data' => $export_items,
115
-            'done' => true,
116
-        );
117
-    }
72
+		$export_items = array();
73
+		foreach ($attendees as $attendee) {
74
+			$export_fields = array_intersect_key(
75
+				$this->attendee_model->field_settings(),
76
+				array_flip(
77
+					array(
78
+						'ATT_fname',
79
+						'ATT_lname',
80
+						'ATT_email',
81
+						'ATT_address1',
82
+						'ATT_address2',
83
+						'ATT_city',
84
+						'STA_ID',
85
+						'CNT_ISO',
86
+						'ATT_zip',
87
+						'ATT_phone',
88
+					)
89
+				)
90
+			);
91
+			$data = array();
92
+			foreach ($export_fields as $field_name => $field_obj) {
93
+				if ($field_name === 'STA_ID') {
94
+					$value = $attendee->state_name();
95
+				} elseif ($field_name == 'CNT_ISO') {
96
+					$value = $attendee->country_name();
97
+				} else {
98
+					$value = $attendee->get_pretty($field_name);
99
+				}
100
+				$data[] = array(
101
+					'name'  => $field_obj->get_nicename(),
102
+					'value' => $value,
103
+				);
104
+			}
105
+			$export_items[] =
106
+				array(
107
+					'group_id'    => 'att-' . $attendee->ID(),
108
+					'group_label' => esc_html__('Contact Profiles', 'event_espresso'),
109
+					'item_id'     => $attendee->ID(),
110
+					'data'        => $data,
111
+				);
112
+		}
113
+		return array(
114
+			'data' => $export_items,
115
+			'done' => true,
116
+		);
117
+	}
118 118
 
119
-    /**
120
-     * Gets the Translated name of this exporter
121
-     *
122
-     * @return string
123
-     */
124
-    public function name()
125
-    {
126
-        return esc_html__('Event Espresso Attendee Data Exporter', 'event_espresso');
127
-    }
119
+	/**
120
+	 * Gets the Translated name of this exporter
121
+	 *
122
+	 * @return string
123
+	 */
124
+	public function name()
125
+	{
126
+		return esc_html__('Event Espresso Attendee Data Exporter', 'event_espresso');
127
+	}
128 128
 }
129 129
 // End of file ExportAttendee.php
130 130
 // Location: EventEspresso\core\domain\services\admin\privacy\export/ExportAttendee.php
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
             }
105 105
             $export_items[] =
106 106
                 array(
107
-                    'group_id'    => 'att-' . $attendee->ID(),
107
+                    'group_id'    => 'att-'.$attendee->ID(),
108 108
                     'group_label' => esc_html__('Contact Profiles', 'event_espresso'),
109 109
                     'item_id'     => $attendee->ID(),
110 110
                     'data'        => $data,
Please login to merge, or discard this patch.
modules/single_page_checkout/inc/EE_SPCO_JSON_Response.php 2 patches
Indentation   +399 added lines, -399 removed lines patch added patch discarded remove patch
@@ -15,403 +15,403 @@
 block discarded – undo
15 15
 class EE_SPCO_JSON_Response
16 16
 {
17 17
 
18
-    /**
19
-     * @var string
20
-     */
21
-    protected $_errors = '';
22
-
23
-    /**
24
-     * @var string
25
-     */
26
-    protected $_unexpected_errors = '';
27
-
28
-    /**
29
-     * @var string
30
-     */
31
-    protected $_attention = '';
32
-
33
-    /**
34
-     * @var string
35
-     */
36
-    protected $_success = '';
37
-
38
-    /**
39
-     * @var string
40
-     */
41
-    protected $_plz_select_method_of_payment = '';
42
-
43
-    /**
44
-     * @var string
45
-     */
46
-    protected $_redirect_url = '';
47
-
48
-    /**
49
-     * @var string
50
-     */
51
-    protected $_registration_time_limit = '';
52
-
53
-    /**
54
-     * @var string
55
-     */
56
-    protected $_redirect_form = '';
57
-
58
-    /**
59
-     * @var string
60
-     */
61
-    protected $_reg_step_html = '';
62
-
63
-    /**
64
-     * @var string
65
-     */
66
-    protected $_method_of_payment = '';
67
-
68
-    /**
69
-     * @var float
70
-     */
71
-    protected $_payment_amount;
72
-
73
-    /**
74
-     * @var array
75
-     */
76
-    protected $_return_data = array();
77
-
78
-
79
-    /**
80
-     * @var array
81
-     */
82
-    protected $_validation_rules = array();
83
-
84
-
85
-    /**
86
-     *    class constructor
87
-     */
88
-    public function __construct()
89
-    {
90
-    }
91
-
92
-
93
-    /**
94
-     *    __toString
95
-     *
96
-     *        allows you to simply echo or print an EE_SPCO_JSON_Response object to produce a  JSON encoded string
97
-     *        ie: $json_response = new EE_SPCO_JSON_Response();
98
-     *        echo $json_response;
99
-     *
100
-     * @access    public
101
-     * @return    string
102
-     */
103
-    public function __toString()
104
-    {
105
-        $JSON_response = array();
106
-        // grab notices
107
-        $notices = EE_Error::get_notices(false);
108
-        $this->set_attention(isset($notices['attention']) ? $notices['attention'] : '');
109
-        $this->set_errors(isset($notices['errors']) ? $notices['errors'] : '');
110
-        $this->set_success(isset($notices['success']) ? $notices['success'] : '');
111
-        // add notices to JSON response, but only if they exist
112
-        if ($this->attention()) {
113
-            $JSON_response['attention'] = $this->attention();
114
-        }
115
-        if ($this->errors()) {
116
-            $JSON_response['errors'] = $this->errors();
117
-        }
118
-        if ($this->unexpected_errors()) {
119
-            $JSON_response['unexpected_errors'] = $this->unexpected_errors();
120
-        }
121
-        if ($this->success()) {
122
-            $JSON_response['success'] = $this->success();
123
-        }
124
-        // but if NO notices are set... at least set the "success" as a key so that the JS knows everything worked
125
-        if (! isset($JSON_response['attention']) && ! isset($JSON_response['errors']) && ! isset($JSON_response['success'])) {
126
-            $JSON_response['success'] = null;
127
-        }
128
-        // set redirect_url, IF it exists
129
-        if ($this->redirect_url()) {
130
-            $JSON_response['redirect_url'] = $this->redirect_url();
131
-        }
132
-        // set registration_time_limit, IF it exists
133
-        if ($this->registration_time_limit()) {
134
-            $JSON_response['registration_time_limit'] = $this->registration_time_limit();
135
-        }
136
-        // set payment_amount, IF it exists
137
-        if ($this->payment_amount() !== null) {
138
-            $JSON_response['payment_amount'] = $this->payment_amount();
139
-        }
140
-        // grab generic return data
141
-        $return_data = $this->return_data();
142
-        // add billing form validation rules
143
-        if ($this->validation_rules()) {
144
-            $return_data['validation_rules'] = $this->validation_rules();
145
-        }
146
-        // set reg_step_html, IF it exists
147
-        if ($this->reg_step_html()) {
148
-            $return_data['reg_step_html'] = $this->reg_step_html();
149
-        }
150
-        // set method of payment, IF it exists
151
-        if ($this->method_of_payment()) {
152
-            $return_data['method_of_payment'] = $this->method_of_payment();
153
-        }
154
-        // set "plz_select_method_of_payment" message, IF it exists
155
-        if ($this->plz_select_method_of_payment()) {
156
-            $return_data['plz_select_method_of_payment'] = $this->plz_select_method_of_payment();
157
-        }
158
-        // set redirect_form, IF it exists
159
-        if ($this->redirect_form()) {
160
-            $return_data['redirect_form'] = $this->redirect_form();
161
-        }
162
-        // and finally, add return_data array to main JSON response array, IF it contains anything
163
-        // why did we add some of the above properties to the return data array?
164
-        // because it is easier and cleaner in the Javascript to deal with this way
165
-        if (! empty($return_data)) {
166
-            $JSON_response['return_data'] = $return_data;
167
-        }
168
-        // filter final array
169
-        $JSON_response = apply_filters('FHEE__EE_SPCO_JSON_Response___toString__JSON_response', $JSON_response);
170
-        // return encoded array
171
-        return (string) wp_json_encode($JSON_response);
172
-    }
173
-
174
-
175
-    /**
176
-     * @param string $attention
177
-     */
178
-    public function set_attention($attention)
179
-    {
180
-        $this->_attention = $attention;
181
-    }
182
-
183
-
184
-    /**
185
-     * @return string
186
-     */
187
-    public function attention()
188
-    {
189
-        return $this->_attention;
190
-    }
191
-
192
-
193
-    /**
194
-     * @param string $errors
195
-     */
196
-    public function set_errors($errors)
197
-    {
198
-        $this->_errors = $errors;
199
-    }
200
-
201
-
202
-    /**
203
-     * @return string
204
-     */
205
-    public function errors()
206
-    {
207
-        return $this->_errors;
208
-    }
209
-
210
-
211
-    /**
212
-     * @return string
213
-     */
214
-    public function unexpected_errors()
215
-    {
216
-        return $this->_unexpected_errors;
217
-    }
218
-
219
-
220
-    /**
221
-     * @param string $unexpected_errors
222
-     */
223
-    public function set_unexpected_errors($unexpected_errors)
224
-    {
225
-        $this->_unexpected_errors = $unexpected_errors;
226
-    }
227
-
228
-
229
-    /**
230
-     * @param string $success
231
-     */
232
-    public function set_success($success)
233
-    {
234
-        $this->_success = $success;
235
-    }
236
-
237
-
238
-    /**
239
-     * @return string
240
-     */
241
-    public function success()
242
-    {
243
-        return $this->_success;
244
-    }
245
-
246
-
247
-    /**
248
-     * @param string $method_of_payment
249
-     */
250
-    public function set_method_of_payment($method_of_payment)
251
-    {
252
-        $this->_method_of_payment = $method_of_payment;
253
-    }
254
-
255
-
256
-    /**
257
-     * @return string
258
-     */
259
-    public function method_of_payment()
260
-    {
261
-        return $this->_method_of_payment;
262
-    }
263
-
264
-
265
-    /**
266
-     * @return float
267
-     */
268
-    public function payment_amount()
269
-    {
270
-        return $this->_payment_amount;
271
-    }
272
-
273
-
274
-    /**
275
-     * @param float $payment_amount
276
-     * @throws EE_Error
277
-     */
278
-    public function set_payment_amount($payment_amount)
279
-    {
280
-        $this->_payment_amount = (float) $payment_amount;
281
-    }
282
-
283
-
284
-    /**
285
-     * @param string $next_step_html
286
-     */
287
-    public function set_reg_step_html($next_step_html)
288
-    {
289
-        $this->_reg_step_html = $next_step_html;
290
-    }
291
-
292
-
293
-    /**
294
-     * @return string
295
-     */
296
-    public function reg_step_html()
297
-    {
298
-        return $this->_reg_step_html;
299
-    }
300
-
301
-
302
-    /**
303
-     * @param string $redirect_form
304
-     */
305
-    public function set_redirect_form($redirect_form)
306
-    {
307
-        $this->_redirect_form = $redirect_form;
308
-    }
309
-
310
-
311
-    /**
312
-     * @return string
313
-     */
314
-    public function redirect_form()
315
-    {
316
-        return ! empty($this->_redirect_form) ? $this->_redirect_form : false;
317
-    }
318
-
319
-
320
-    /**
321
-     * @param string $plz_select_method_of_payment
322
-     */
323
-    public function set_plz_select_method_of_payment($plz_select_method_of_payment)
324
-    {
325
-        $this->_plz_select_method_of_payment = $plz_select_method_of_payment;
326
-    }
327
-
328
-
329
-    /**
330
-     * @return string
331
-     */
332
-    public function plz_select_method_of_payment()
333
-    {
334
-        return $this->_plz_select_method_of_payment;
335
-    }
336
-
337
-
338
-    /**
339
-     * @param string $redirect_url
340
-     */
341
-    public function set_redirect_url($redirect_url)
342
-    {
343
-        $this->_redirect_url = $redirect_url;
344
-    }
345
-
346
-
347
-    /**
348
-     * @return string
349
-     */
350
-    public function redirect_url()
351
-    {
352
-        return $this->_redirect_url;
353
-    }
354
-
355
-
356
-    /**
357
-     * @return string
358
-     */
359
-    public function registration_time_limit()
360
-    {
361
-        return $this->_registration_time_limit;
362
-    }
363
-
364
-
365
-    /**
366
-     * @param string $registration_time_limit
367
-     */
368
-    public function set_registration_time_limit($registration_time_limit)
369
-    {
370
-        $this->_registration_time_limit = $registration_time_limit;
371
-    }
372
-
373
-
374
-    /**
375
-     * @param array $return_data
376
-     */
377
-    public function set_return_data($return_data)
378
-    {
379
-        $this->_return_data = array_merge($this->_return_data, $return_data);
380
-    }
381
-
382
-
383
-    /**
384
-     * @return array
385
-     */
386
-    public function return_data()
387
-    {
388
-        return $this->_return_data;
389
-    }
390
-
391
-
392
-    /**
393
-     * @param array $validation_rules
394
-     */
395
-    public function add_validation_rules(array $validation_rules = array())
396
-    {
397
-        if (is_array($validation_rules) && ! empty($validation_rules)) {
398
-            $this->_validation_rules = array_merge($this->_validation_rules, $validation_rules);
399
-        }
400
-    }
401
-
402
-
403
-    /**
404
-     * @return array | bool
405
-     */
406
-    public function validation_rules()
407
-    {
408
-        return ! empty($this->_validation_rules) ? $this->_validation_rules : false;
409
-    }
410
-
411
-
412
-    public function echoAndExit()
413
-    {
414
-        echo $this;
415
-        exit();
416
-    }
18
+	/**
19
+	 * @var string
20
+	 */
21
+	protected $_errors = '';
22
+
23
+	/**
24
+	 * @var string
25
+	 */
26
+	protected $_unexpected_errors = '';
27
+
28
+	/**
29
+	 * @var string
30
+	 */
31
+	protected $_attention = '';
32
+
33
+	/**
34
+	 * @var string
35
+	 */
36
+	protected $_success = '';
37
+
38
+	/**
39
+	 * @var string
40
+	 */
41
+	protected $_plz_select_method_of_payment = '';
42
+
43
+	/**
44
+	 * @var string
45
+	 */
46
+	protected $_redirect_url = '';
47
+
48
+	/**
49
+	 * @var string
50
+	 */
51
+	protected $_registration_time_limit = '';
52
+
53
+	/**
54
+	 * @var string
55
+	 */
56
+	protected $_redirect_form = '';
57
+
58
+	/**
59
+	 * @var string
60
+	 */
61
+	protected $_reg_step_html = '';
62
+
63
+	/**
64
+	 * @var string
65
+	 */
66
+	protected $_method_of_payment = '';
67
+
68
+	/**
69
+	 * @var float
70
+	 */
71
+	protected $_payment_amount;
72
+
73
+	/**
74
+	 * @var array
75
+	 */
76
+	protected $_return_data = array();
77
+
78
+
79
+	/**
80
+	 * @var array
81
+	 */
82
+	protected $_validation_rules = array();
83
+
84
+
85
+	/**
86
+	 *    class constructor
87
+	 */
88
+	public function __construct()
89
+	{
90
+	}
91
+
92
+
93
+	/**
94
+	 *    __toString
95
+	 *
96
+	 *        allows you to simply echo or print an EE_SPCO_JSON_Response object to produce a  JSON encoded string
97
+	 *        ie: $json_response = new EE_SPCO_JSON_Response();
98
+	 *        echo $json_response;
99
+	 *
100
+	 * @access    public
101
+	 * @return    string
102
+	 */
103
+	public function __toString()
104
+	{
105
+		$JSON_response = array();
106
+		// grab notices
107
+		$notices = EE_Error::get_notices(false);
108
+		$this->set_attention(isset($notices['attention']) ? $notices['attention'] : '');
109
+		$this->set_errors(isset($notices['errors']) ? $notices['errors'] : '');
110
+		$this->set_success(isset($notices['success']) ? $notices['success'] : '');
111
+		// add notices to JSON response, but only if they exist
112
+		if ($this->attention()) {
113
+			$JSON_response['attention'] = $this->attention();
114
+		}
115
+		if ($this->errors()) {
116
+			$JSON_response['errors'] = $this->errors();
117
+		}
118
+		if ($this->unexpected_errors()) {
119
+			$JSON_response['unexpected_errors'] = $this->unexpected_errors();
120
+		}
121
+		if ($this->success()) {
122
+			$JSON_response['success'] = $this->success();
123
+		}
124
+		// but if NO notices are set... at least set the "success" as a key so that the JS knows everything worked
125
+		if (! isset($JSON_response['attention']) && ! isset($JSON_response['errors']) && ! isset($JSON_response['success'])) {
126
+			$JSON_response['success'] = null;
127
+		}
128
+		// set redirect_url, IF it exists
129
+		if ($this->redirect_url()) {
130
+			$JSON_response['redirect_url'] = $this->redirect_url();
131
+		}
132
+		// set registration_time_limit, IF it exists
133
+		if ($this->registration_time_limit()) {
134
+			$JSON_response['registration_time_limit'] = $this->registration_time_limit();
135
+		}
136
+		// set payment_amount, IF it exists
137
+		if ($this->payment_amount() !== null) {
138
+			$JSON_response['payment_amount'] = $this->payment_amount();
139
+		}
140
+		// grab generic return data
141
+		$return_data = $this->return_data();
142
+		// add billing form validation rules
143
+		if ($this->validation_rules()) {
144
+			$return_data['validation_rules'] = $this->validation_rules();
145
+		}
146
+		// set reg_step_html, IF it exists
147
+		if ($this->reg_step_html()) {
148
+			$return_data['reg_step_html'] = $this->reg_step_html();
149
+		}
150
+		// set method of payment, IF it exists
151
+		if ($this->method_of_payment()) {
152
+			$return_data['method_of_payment'] = $this->method_of_payment();
153
+		}
154
+		// set "plz_select_method_of_payment" message, IF it exists
155
+		if ($this->plz_select_method_of_payment()) {
156
+			$return_data['plz_select_method_of_payment'] = $this->plz_select_method_of_payment();
157
+		}
158
+		// set redirect_form, IF it exists
159
+		if ($this->redirect_form()) {
160
+			$return_data['redirect_form'] = $this->redirect_form();
161
+		}
162
+		// and finally, add return_data array to main JSON response array, IF it contains anything
163
+		// why did we add some of the above properties to the return data array?
164
+		// because it is easier and cleaner in the Javascript to deal with this way
165
+		if (! empty($return_data)) {
166
+			$JSON_response['return_data'] = $return_data;
167
+		}
168
+		// filter final array
169
+		$JSON_response = apply_filters('FHEE__EE_SPCO_JSON_Response___toString__JSON_response', $JSON_response);
170
+		// return encoded array
171
+		return (string) wp_json_encode($JSON_response);
172
+	}
173
+
174
+
175
+	/**
176
+	 * @param string $attention
177
+	 */
178
+	public function set_attention($attention)
179
+	{
180
+		$this->_attention = $attention;
181
+	}
182
+
183
+
184
+	/**
185
+	 * @return string
186
+	 */
187
+	public function attention()
188
+	{
189
+		return $this->_attention;
190
+	}
191
+
192
+
193
+	/**
194
+	 * @param string $errors
195
+	 */
196
+	public function set_errors($errors)
197
+	{
198
+		$this->_errors = $errors;
199
+	}
200
+
201
+
202
+	/**
203
+	 * @return string
204
+	 */
205
+	public function errors()
206
+	{
207
+		return $this->_errors;
208
+	}
209
+
210
+
211
+	/**
212
+	 * @return string
213
+	 */
214
+	public function unexpected_errors()
215
+	{
216
+		return $this->_unexpected_errors;
217
+	}
218
+
219
+
220
+	/**
221
+	 * @param string $unexpected_errors
222
+	 */
223
+	public function set_unexpected_errors($unexpected_errors)
224
+	{
225
+		$this->_unexpected_errors = $unexpected_errors;
226
+	}
227
+
228
+
229
+	/**
230
+	 * @param string $success
231
+	 */
232
+	public function set_success($success)
233
+	{
234
+		$this->_success = $success;
235
+	}
236
+
237
+
238
+	/**
239
+	 * @return string
240
+	 */
241
+	public function success()
242
+	{
243
+		return $this->_success;
244
+	}
245
+
246
+
247
+	/**
248
+	 * @param string $method_of_payment
249
+	 */
250
+	public function set_method_of_payment($method_of_payment)
251
+	{
252
+		$this->_method_of_payment = $method_of_payment;
253
+	}
254
+
255
+
256
+	/**
257
+	 * @return string
258
+	 */
259
+	public function method_of_payment()
260
+	{
261
+		return $this->_method_of_payment;
262
+	}
263
+
264
+
265
+	/**
266
+	 * @return float
267
+	 */
268
+	public function payment_amount()
269
+	{
270
+		return $this->_payment_amount;
271
+	}
272
+
273
+
274
+	/**
275
+	 * @param float $payment_amount
276
+	 * @throws EE_Error
277
+	 */
278
+	public function set_payment_amount($payment_amount)
279
+	{
280
+		$this->_payment_amount = (float) $payment_amount;
281
+	}
282
+
283
+
284
+	/**
285
+	 * @param string $next_step_html
286
+	 */
287
+	public function set_reg_step_html($next_step_html)
288
+	{
289
+		$this->_reg_step_html = $next_step_html;
290
+	}
291
+
292
+
293
+	/**
294
+	 * @return string
295
+	 */
296
+	public function reg_step_html()
297
+	{
298
+		return $this->_reg_step_html;
299
+	}
300
+
301
+
302
+	/**
303
+	 * @param string $redirect_form
304
+	 */
305
+	public function set_redirect_form($redirect_form)
306
+	{
307
+		$this->_redirect_form = $redirect_form;
308
+	}
309
+
310
+
311
+	/**
312
+	 * @return string
313
+	 */
314
+	public function redirect_form()
315
+	{
316
+		return ! empty($this->_redirect_form) ? $this->_redirect_form : false;
317
+	}
318
+
319
+
320
+	/**
321
+	 * @param string $plz_select_method_of_payment
322
+	 */
323
+	public function set_plz_select_method_of_payment($plz_select_method_of_payment)
324
+	{
325
+		$this->_plz_select_method_of_payment = $plz_select_method_of_payment;
326
+	}
327
+
328
+
329
+	/**
330
+	 * @return string
331
+	 */
332
+	public function plz_select_method_of_payment()
333
+	{
334
+		return $this->_plz_select_method_of_payment;
335
+	}
336
+
337
+
338
+	/**
339
+	 * @param string $redirect_url
340
+	 */
341
+	public function set_redirect_url($redirect_url)
342
+	{
343
+		$this->_redirect_url = $redirect_url;
344
+	}
345
+
346
+
347
+	/**
348
+	 * @return string
349
+	 */
350
+	public function redirect_url()
351
+	{
352
+		return $this->_redirect_url;
353
+	}
354
+
355
+
356
+	/**
357
+	 * @return string
358
+	 */
359
+	public function registration_time_limit()
360
+	{
361
+		return $this->_registration_time_limit;
362
+	}
363
+
364
+
365
+	/**
366
+	 * @param string $registration_time_limit
367
+	 */
368
+	public function set_registration_time_limit($registration_time_limit)
369
+	{
370
+		$this->_registration_time_limit = $registration_time_limit;
371
+	}
372
+
373
+
374
+	/**
375
+	 * @param array $return_data
376
+	 */
377
+	public function set_return_data($return_data)
378
+	{
379
+		$this->_return_data = array_merge($this->_return_data, $return_data);
380
+	}
381
+
382
+
383
+	/**
384
+	 * @return array
385
+	 */
386
+	public function return_data()
387
+	{
388
+		return $this->_return_data;
389
+	}
390
+
391
+
392
+	/**
393
+	 * @param array $validation_rules
394
+	 */
395
+	public function add_validation_rules(array $validation_rules = array())
396
+	{
397
+		if (is_array($validation_rules) && ! empty($validation_rules)) {
398
+			$this->_validation_rules = array_merge($this->_validation_rules, $validation_rules);
399
+		}
400
+	}
401
+
402
+
403
+	/**
404
+	 * @return array | bool
405
+	 */
406
+	public function validation_rules()
407
+	{
408
+		return ! empty($this->_validation_rules) ? $this->_validation_rules : false;
409
+	}
410
+
411
+
412
+	public function echoAndExit()
413
+	{
414
+		echo $this;
415
+		exit();
416
+	}
417 417
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
             $JSON_response['success'] = $this->success();
123 123
         }
124 124
         // but if NO notices are set... at least set the "success" as a key so that the JS knows everything worked
125
-        if (! isset($JSON_response['attention']) && ! isset($JSON_response['errors']) && ! isset($JSON_response['success'])) {
125
+        if ( ! isset($JSON_response['attention']) && ! isset($JSON_response['errors']) && ! isset($JSON_response['success'])) {
126 126
             $JSON_response['success'] = null;
127 127
         }
128 128
         // set redirect_url, IF it exists
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         // and finally, add return_data array to main JSON response array, IF it contains anything
163 163
         // why did we add some of the above properties to the return data array?
164 164
         // because it is easier and cleaner in the Javascript to deal with this way
165
-        if (! empty($return_data)) {
165
+        if ( ! empty($return_data)) {
166 166
             $JSON_response['return_data'] = $return_data;
167 167
         }
168 168
         // filter final array
Please login to merge, or discard this patch.
help_tours/Registration_Form_Questions_Overview_Help_Tour.class.php 2 patches
Indentation   +124 added lines, -124 removed lines patch added patch discarded remove patch
@@ -15,64 +15,64 @@  discard block
 block discarded – undo
15 15
 class Registration_Form_Questions_Overview_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Questions Overview Tour', 'event_espresso');
21
-        $this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Questions Overview Tour', 'event_espresso');
21
+		$this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
22
+	}
23 23
 
24
-    protected function _set_tour_stops()
25
-    {
26
-        $this->_stops = array(
27
-            10  => array(
28
-                'content' => $this->_start(),
29
-            ),
30
-            30  => array(
31
-                'id'      => 'display_text',
32
-                'content' => $this->_display_text_stop(),
33
-                'options' => array(
34
-                    'tipLocation'    => 'top',
35
-                    'tipAdjustmentX' => -5,
36
-                    'tipAdjustmentY' => -25,
37
-                ),
38
-            ),
39
-            40  => array(
40
-                'id'      => 'admin_label',
41
-                'content' => $this->_admin_label_stop(),
42
-                'options' => array(
43
-                    'tipLocation'    => 'top',
44
-                    'tipAdjustmentX' => 20,
45
-                    'tipAdjustmentY' => -25,
46
-                ),
47
-            ),
48
-            50  => array(
49
-                'id'      => 'type',
50
-                'content' => $this->_type_stop(),
51
-                'options' => array(
52
-                    'tipLocation'    => 'top',
53
-                    'tipAdjustmentX' => -5,
54
-                    'tipAdjustmentY' => -25,
55
-                ),
56
-            ),
57
-            60  => array(
58
-                'id'      => 'values',
59
-                'content' => $this->_values_stop(),
60
-                'options' => array(
61
-                    'tipLocation'    => 'top',
62
-                    'tipAdjustmentX' => -5,
63
-                    'tipAdjustmentY' => -25,
64
-                ),
65
-            ),
66
-            70  => array(
67
-                'id'      => 'required',
68
-                'content' => $this->_required_stop(),
69
-                'options' => array(
70
-                    'tipLocation'    => 'top',
71
-                    'tipAdjustmentY' => -20,
72
-                    'tipAdjustmentX' => -15,
73
-                ),
74
-            ),
75
-            /*80 => array(
24
+	protected function _set_tour_stops()
25
+	{
26
+		$this->_stops = array(
27
+			10  => array(
28
+				'content' => $this->_start(),
29
+			),
30
+			30  => array(
31
+				'id'      => 'display_text',
32
+				'content' => $this->_display_text_stop(),
33
+				'options' => array(
34
+					'tipLocation'    => 'top',
35
+					'tipAdjustmentX' => -5,
36
+					'tipAdjustmentY' => -25,
37
+				),
38
+			),
39
+			40  => array(
40
+				'id'      => 'admin_label',
41
+				'content' => $this->_admin_label_stop(),
42
+				'options' => array(
43
+					'tipLocation'    => 'top',
44
+					'tipAdjustmentX' => 20,
45
+					'tipAdjustmentY' => -25,
46
+				),
47
+			),
48
+			50  => array(
49
+				'id'      => 'type',
50
+				'content' => $this->_type_stop(),
51
+				'options' => array(
52
+					'tipLocation'    => 'top',
53
+					'tipAdjustmentX' => -5,
54
+					'tipAdjustmentY' => -25,
55
+				),
56
+			),
57
+			60  => array(
58
+				'id'      => 'values',
59
+				'content' => $this->_values_stop(),
60
+				'options' => array(
61
+					'tipLocation'    => 'top',
62
+					'tipAdjustmentX' => -5,
63
+					'tipAdjustmentY' => -25,
64
+				),
65
+			),
66
+			70  => array(
67
+				'id'      => 'required',
68
+				'content' => $this->_required_stop(),
69
+				'options' => array(
70
+					'tipLocation'    => 'top',
71
+					'tipAdjustmentY' => -20,
72
+					'tipAdjustmentX' => -15,
73
+				),
74
+			),
75
+			/*80 => array(
76 76
                 'class' => 'bulkactions',
77 77
                 'content' => $this->_bulk_actions_stop(),
78 78
                 'options' => array(
@@ -81,84 +81,84 @@  discard block
 block discarded – undo
81 81
                     'tipAdjustmentX' => -15
82 82
                     )
83 83
                 ),*/
84
-            90  => array(
85
-                'id'      => 'event-espresso_page_espresso_registration_form-search-input',
86
-                'content' => $this->_search_stop(),
87
-                'options' => array(
88
-                    'tipLocation'    => 'left',
89
-                    'tipAdjustmentY' => -50,
90
-                    'tipAdjustmentX' => -15,
91
-                ),
92
-            ),
93
-            100 => array(
94
-                'id'      => 'add-new-question',
95
-                'content' => $this->_add_new_question_stop(),
96
-                'options' => array(
97
-                    'tipLocation'    => 'right',
98
-                    'tipAdjustmentY' => -50,
99
-                    'tipAdjustmentX' => 15,
100
-                ),
101
-            ),
102
-        );
103
-    }
84
+			90  => array(
85
+				'id'      => 'event-espresso_page_espresso_registration_form-search-input',
86
+				'content' => $this->_search_stop(),
87
+				'options' => array(
88
+					'tipLocation'    => 'left',
89
+					'tipAdjustmentY' => -50,
90
+					'tipAdjustmentX' => -15,
91
+				),
92
+			),
93
+			100 => array(
94
+				'id'      => 'add-new-question',
95
+				'content' => $this->_add_new_question_stop(),
96
+				'options' => array(
97
+					'tipLocation'    => 'right',
98
+					'tipAdjustmentY' => -50,
99
+					'tipAdjustmentX' => 15,
100
+				),
101
+			),
102
+		);
103
+	}
104 104
 
105 105
 
106
-    protected function _start()
107
-    {
108
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
109
-        $content .= '<p>' . __(
110
-            'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
111
-            'event_espresso'
112
-        ) . '</p>';
106
+	protected function _start()
107
+	{
108
+		$content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
109
+		$content .= '<p>' . __(
110
+			'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
111
+			'event_espresso'
112
+		) . '</p>';
113 113
 
114
-        return $content;
115
-    }
114
+		return $content;
115
+	}
116 116
 
117
-    protected function _display_text_stop()
118
-    {
119
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
120
-    }
117
+	protected function _display_text_stop()
118
+	{
119
+		return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
120
+	}
121 121
 
122
-    protected function _admin_label_stop()
123
-    {
124
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
125
-    }
122
+	protected function _admin_label_stop()
123
+	{
124
+		return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
125
+	}
126 126
 
127
-    protected function _type_stop()
128
-    {
129
-        return '<p>' . __(
130
-            'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
131
-            'event_espresso'
132
-        ) . '</p>';
133
-    }
127
+	protected function _type_stop()
128
+	{
129
+		return '<p>' . __(
130
+			'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
131
+			'event_espresso'
132
+		) . '</p>';
133
+	}
134 134
 
135
-    protected function _values_stop()
136
-    {
137
-        return '<p>' . __(
138
-            'View stored values for checkboxes, radio buttons, and select boxes.',
139
-            'event_espresso'
140
-        ) . '</p>';
141
-    }
135
+	protected function _values_stop()
136
+	{
137
+		return '<p>' . __(
138
+			'View stored values for checkboxes, radio buttons, and select boxes.',
139
+			'event_espresso'
140
+		) . '</p>';
141
+	}
142 142
 
143
-    protected function _required_stop()
144
-    {
145
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
146
-    }
143
+	protected function _required_stop()
144
+	{
145
+		return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
146
+	}
147 147
 
148
-    /* protected function _bulk_actions_stop() {
148
+	/* protected function _bulk_actions_stop() {
149 149
         return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
150 150
     } */
151 151
 
152
-    protected function _search_stop()
153
-    {
154
-        return '<p>' . __(
155
-            'Search through questions. The following sources will be searched: Name of Question (display text).',
156
-            'event_espresso'
157
-        ) . '</p>';
158
-    }
152
+	protected function _search_stop()
153
+	{
154
+		return '<p>' . __(
155
+			'Search through questions. The following sources will be searched: Name of Question (display text).',
156
+			'event_espresso'
157
+		) . '</p>';
158
+	}
159 159
 
160
-    protected function _add_new_question_stop()
161
-    {
162
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
163
-    }
160
+	protected function _add_new_question_stop()
161
+	{
162
+		return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
163
+	}
164 164
 }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -105,44 +105,44 @@  discard block
 block discarded – undo
105 105
 
106 106
     protected function _start()
107 107
     {
108
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
109
-        $content .= '<p>' . __(
108
+        $content = '<h3>'.__('Questions Overview', 'event_espresso').'</h3>';
109
+        $content .= '<p>'.__(
110 110
             'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
111 111
             'event_espresso'
112
-        ) . '</p>';
112
+        ).'</p>';
113 113
 
114 114
         return $content;
115 115
     }
116 116
 
117 117
     protected function _display_text_stop()
118 118
     {
119
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
119
+        return '<p>'.__('View available questions.', 'event_espresso').'</p>';
120 120
     }
121 121
 
122 122
     protected function _admin_label_stop()
123 123
     {
124
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
124
+        return '<p>'.__('View the admin label for your questions.', 'event_espresso').'</p>';
125 125
     }
126 126
 
127 127
     protected function _type_stop()
128 128
     {
129
-        return '<p>' . __(
129
+        return '<p>'.__(
130 130
             'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
131 131
             'event_espresso'
132
-        ) . '</p>';
132
+        ).'</p>';
133 133
     }
134 134
 
135 135
     protected function _values_stop()
136 136
     {
137
-        return '<p>' . __(
137
+        return '<p>'.__(
138 138
             'View stored values for checkboxes, radio buttons, and select boxes.',
139 139
             'event_espresso'
140
-        ) . '</p>';
140
+        ).'</p>';
141 141
     }
142 142
 
143 143
     protected function _required_stop()
144 144
     {
145
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
145
+        return '<p>'.__('View if a question is required.', 'event_espresso').'</p>';
146 146
     }
147 147
 
148 148
     /* protected function _bulk_actions_stop() {
@@ -151,14 +151,14 @@  discard block
 block discarded – undo
151 151
 
152 152
     protected function _search_stop()
153 153
     {
154
-        return '<p>' . __(
154
+        return '<p>'.__(
155 155
             'Search through questions. The following sources will be searched: Name of Question (display text).',
156 156
             'event_espresso'
157
-        ) . '</p>';
157
+        ).'</p>';
158 158
     }
159 159
 
160 160
     protected function _add_new_question_stop()
161 161
     {
162
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
162
+        return '<p>'.__('Click here to add a new question.', 'event_espresso').'</p>';
163 163
     }
164 164
 }
Please login to merge, or discard this patch.
admin_pages/messages/espresso_events_Messages_Hooks.class.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
 {
17 17
 
18 18
 
19
-    public function __construct(EE_Admin_Page $admin_page)
20
-    {
21
-        parent::__construct($admin_page);
22
-    }
19
+	public function __construct(EE_Admin_Page $admin_page)
20
+	{
21
+		parent::__construct($admin_page);
22
+	}
23 23
 
24 24
 
25
-    protected function _set_hooks_properties()
26
-    {
27
-        $this->_name = 'messages';
28
-    }
25
+	protected function _set_hooks_properties()
26
+	{
27
+		$this->_name = 'messages';
28
+	}
29 29
 }
Please login to merge, or discard this patch.
Extend_Registration_Form_Questions_Admin_List_Table.class.php 2 patches
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -16,113 +16,113 @@
 block discarded – undo
16 16
 class Extend_Registration_Form_Questions_Admin_List_Table extends Registration_Form_Questions_Admin_List_Table
17 17
 {
18 18
 
19
-    public function __construct($admin_page)
20
-    {
21
-        parent::__construct($admin_page);
22
-    }
19
+	public function __construct($admin_page)
20
+	{
21
+		parent::__construct($admin_page);
22
+	}
23 23
 
24
-    public function column_display_text(EE_Question $item)
25
-    {
26
-        $system_question = $item->is_system_question();
27
-        $actions = array();
24
+	public function column_display_text(EE_Question $item)
25
+	{
26
+		$system_question = $item->is_system_question();
27
+		$actions = array();
28 28
 
29
-        if (! defined('REG_ADMIN_URL')) {
30
-            define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31
-        }
29
+		if (! defined('REG_ADMIN_URL')) {
30
+			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31
+		}
32 32
 
33
-        $edit_query_args = array(
34
-            'action' => 'edit_question',
35
-            'QST_ID' => $item->ID(),
36
-        );
33
+		$edit_query_args = array(
34
+			'action' => 'edit_question',
35
+			'QST_ID' => $item->ID(),
36
+		);
37 37
 
38
-        $trash_query_args = array(
39
-            'action' => 'trash_question',
40
-            'QST_ID' => $item->ID(),
41
-        );
38
+		$trash_query_args = array(
39
+			'action' => 'trash_question',
40
+			'QST_ID' => $item->ID(),
41
+		);
42 42
 
43
-        $restore_query_args = array(
44
-            'action' => 'restore_question',
45
-            'QST_ID' => $item->ID(),
46
-        );
43
+		$restore_query_args = array(
44
+			'action' => 'restore_question',
45
+			'QST_ID' => $item->ID(),
46
+		);
47 47
 
48
-        $delete_query_args = array(
49
-            'action' => 'delete_questions',
50
-            'QST_ID' => $item->ID(),
51
-        );
48
+		$delete_query_args = array(
49
+			'action' => 'delete_questions',
50
+			'QST_ID' => $item->ID(),
51
+		);
52 52
 
53
-        $duplicate_query_args = array(
54
-            'action' => 'duplicate_question',
55
-            'QST_ID' => $item->ID(),
56
-        );
53
+		$duplicate_query_args = array(
54
+			'action' => 'duplicate_question',
55
+			'QST_ID' => $item->ID(),
56
+		);
57 57
 
58
-        $edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
59
-        $trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
60
-        $restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
61
-        $delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
62
-        $duplicate_link = EE_Admin_Page::add_query_args_and_nonce($duplicate_query_args, EE_FORMS_ADMIN_URL);
58
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
59
+		$trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
60
+		$restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
61
+		$delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
62
+		$duplicate_link = EE_Admin_Page::add_query_args_and_nonce($duplicate_query_args, EE_FORMS_ADMIN_URL);
63 63
 
64
-        if (EE_Registry::instance()->CAP->current_user_can(
65
-            'ee_edit_question',
66
-            'espresso_registration_form_edit_question',
67
-            $item->ID()
68
-        )) {
69
-            $actions = array(
70
-                'edit' => '<a href="' . $edit_link . '" title="'
71
-                          . __('Edit Question', 'event_espresso') . '">'
72
-                          . __('Edit', 'event_espresso') . '</a>',
73
-            );
74
-        }
64
+		if (EE_Registry::instance()->CAP->current_user_can(
65
+			'ee_edit_question',
66
+			'espresso_registration_form_edit_question',
67
+			$item->ID()
68
+		)) {
69
+			$actions = array(
70
+				'edit' => '<a href="' . $edit_link . '" title="'
71
+						  . __('Edit Question', 'event_espresso') . '">'
72
+						  . __('Edit', 'event_espresso') . '</a>',
73
+			);
74
+		}
75 75
 
76
-        if (! $system_question
77
-            && $this->_view != 'trash'
78
-            && EE_Registry::instance()->CAP->current_user_can(
79
-                'ee_delete_question',
80
-                'espresso_registration_form_trash_question',
81
-                $item->ID()
82
-            )) {
83
-                $actions['delete'] = '<a href="' . $trash_link . '" title="'
84
-                                     . __('Trash Question', 'event_espresso') . '">'
85
-                                     . __('Trash', 'event_espresso') . '</a>';
86
-        }
76
+		if (! $system_question
77
+			&& $this->_view != 'trash'
78
+			&& EE_Registry::instance()->CAP->current_user_can(
79
+				'ee_delete_question',
80
+				'espresso_registration_form_trash_question',
81
+				$item->ID()
82
+			)) {
83
+				$actions['delete'] = '<a href="' . $trash_link . '" title="'
84
+									 . __('Trash Question', 'event_espresso') . '">'
85
+									 . __('Trash', 'event_espresso') . '</a>';
86
+		}
87 87
 
88
-        if ($this->_view == 'trash') {
89
-            if (EE_Registry::instance()->CAP->current_user_can(
90
-                'ee_delete_question',
91
-                'espresso_registration_form_restore_question',
92
-                $item->ID()
93
-            )) {
94
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
95
-                                      . __('Restore Question', 'event_espresso') . '">'
96
-                                      . __('Restore', 'event_espresso') . '</a>';
97
-            }
98
-            if ($item->count_related('Answer') === 0
99
-                && EE_Registry::instance()->CAP->current_user_can(
100
-                    'ee_delete_question',
101
-                    'espresso_registration_form_delete_questions',
102
-                    $item->ID()
103
-                )) {
104
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
105
-                                         . __('Delete Question Permanently', 'event_espresso') . '">'
106
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
107
-            }
108
-        }
109
-        if (EE_Registry::instance()->CAP->current_user_can(
110
-            'ee_edit_questions',
111
-            'espresso_registration_form_edit_question'
112
-        )) {
113
-            $actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
-                                    . __('Duplicate Question', 'event_espresso') . '">'
115
-                                    . __('Duplicate', 'event_espresso') . '</a>';
116
-        }
88
+		if ($this->_view == 'trash') {
89
+			if (EE_Registry::instance()->CAP->current_user_can(
90
+				'ee_delete_question',
91
+				'espresso_registration_form_restore_question',
92
+				$item->ID()
93
+			)) {
94
+				$actions['restore'] = '<a href="' . $restore_link . '" title="'
95
+									  . __('Restore Question', 'event_espresso') . '">'
96
+									  . __('Restore', 'event_espresso') . '</a>';
97
+			}
98
+			if ($item->count_related('Answer') === 0
99
+				&& EE_Registry::instance()->CAP->current_user_can(
100
+					'ee_delete_question',
101
+					'espresso_registration_form_delete_questions',
102
+					$item->ID()
103
+				)) {
104
+					$actions['delete'] = '<a href="' . $delete_link . '" title="'
105
+										 . __('Delete Question Permanently', 'event_espresso') . '">'
106
+										 . __('Delete Permanently', 'event_espresso') . '</a>';
107
+			}
108
+		}
109
+		if (EE_Registry::instance()->CAP->current_user_can(
110
+			'ee_edit_questions',
111
+			'espresso_registration_form_edit_question'
112
+		)) {
113
+			$actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
+									. __('Duplicate Question', 'event_espresso') . '">'
115
+									. __('Duplicate', 'event_espresso') . '</a>';
116
+		}
117 117
 
118
-        $content = EE_Registry::instance()->CAP->current_user_can(
119
-            'ee_edit_question',
120
-            'espresso_registration_form_edit_question',
121
-            $item->ID()
122
-        )
123
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
124
-            : $item->display_text();
125
-        $content .= $this->row_actions($actions);
126
-        return $content;
127
-    }
118
+		$content = EE_Registry::instance()->CAP->current_user_can(
119
+			'ee_edit_question',
120
+			'espresso_registration_form_edit_question',
121
+			$item->ID()
122
+		)
123
+			? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
124
+			: $item->display_text();
125
+		$content .= $this->row_actions($actions);
126
+		return $content;
127
+	}
128 128
 }
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $system_question = $item->is_system_question();
27 27
         $actions = array();
28 28
 
29
-        if (! defined('REG_ADMIN_URL')) {
29
+        if ( ! defined('REG_ADMIN_URL')) {
30 30
             define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
31 31
         }
32 32
 
@@ -67,22 +67,22 @@  discard block
 block discarded – undo
67 67
             $item->ID()
68 68
         )) {
69 69
             $actions = array(
70
-                'edit' => '<a href="' . $edit_link . '" title="'
71
-                          . __('Edit Question', 'event_espresso') . '">'
72
-                          . __('Edit', 'event_espresso') . '</a>',
70
+                'edit' => '<a href="'.$edit_link.'" title="'
71
+                          . __('Edit Question', 'event_espresso').'">'
72
+                          . __('Edit', 'event_espresso').'</a>',
73 73
             );
74 74
         }
75 75
 
76
-        if (! $system_question
76
+        if ( ! $system_question
77 77
             && $this->_view != 'trash'
78 78
             && EE_Registry::instance()->CAP->current_user_can(
79 79
                 'ee_delete_question',
80 80
                 'espresso_registration_form_trash_question',
81 81
                 $item->ID()
82 82
             )) {
83
-                $actions['delete'] = '<a href="' . $trash_link . '" title="'
84
-                                     . __('Trash Question', 'event_espresso') . '">'
85
-                                     . __('Trash', 'event_espresso') . '</a>';
83
+                $actions['delete'] = '<a href="'.$trash_link.'" title="'
84
+                                     . __('Trash Question', 'event_espresso').'">'
85
+                                     . __('Trash', 'event_espresso').'</a>';
86 86
         }
87 87
 
88 88
         if ($this->_view == 'trash') {
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
                 'espresso_registration_form_restore_question',
92 92
                 $item->ID()
93 93
             )) {
94
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
95
-                                      . __('Restore Question', 'event_espresso') . '">'
96
-                                      . __('Restore', 'event_espresso') . '</a>';
94
+                $actions['restore'] = '<a href="'.$restore_link.'" title="'
95
+                                      . __('Restore Question', 'event_espresso').'">'
96
+                                      . __('Restore', 'event_espresso').'</a>';
97 97
             }
98 98
             if ($item->count_related('Answer') === 0
99 99
                 && EE_Registry::instance()->CAP->current_user_can(
@@ -101,18 +101,18 @@  discard block
 block discarded – undo
101 101
                     'espresso_registration_form_delete_questions',
102 102
                     $item->ID()
103 103
                 )) {
104
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
105
-                                         . __('Delete Question Permanently', 'event_espresso') . '">'
106
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
104
+                    $actions['delete'] = '<a href="'.$delete_link.'" title="'
105
+                                         . __('Delete Question Permanently', 'event_espresso').'">'
106
+                                         . __('Delete Permanently', 'event_espresso').'</a>';
107 107
             }
108 108
         }
109 109
         if (EE_Registry::instance()->CAP->current_user_can(
110 110
             'ee_edit_questions',
111 111
             'espresso_registration_form_edit_question'
112 112
         )) {
113
-            $actions['duplicate'] = '<a href="' . $duplicate_link . '" title="'
114
-                                    . __('Duplicate Question', 'event_espresso') . '">'
115
-                                    . __('Duplicate', 'event_espresso') . '</a>';
113
+            $actions['duplicate'] = '<a href="'.$duplicate_link.'" title="'
114
+                                    . __('Duplicate Question', 'event_espresso').'">'
115
+                                    . __('Duplicate', 'event_espresso').'</a>';
116 116
         }
117 117
 
118 118
         $content = EE_Registry::instance()->CAP->current_user_can(
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             'espresso_registration_form_edit_question',
121 121
             $item->ID()
122 122
         )
123
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->display_text() . '</a></strong>'
123
+            ? '<strong><a class="row-title" href="'.$edit_link.'">'.$item->display_text().'</a></strong>'
124 124
             : $item->display_text();
125 125
         $content .= $this->row_actions($actions);
126 126
         return $content;
Please login to merge, or discard this patch.
Registration_Form_Question_Groups_Admin_List_Table.class.php 2 patches
Indentation   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -30,231 +30,231 @@
 block discarded – undo
30 30
 {
31 31
 
32 32
 
33
-    public function __construct($admin_page)
34
-    {
35
-        parent::__construct($admin_page);
36
-    }
37
-
38
-
39
-    protected function _setup_data()
40
-    {
41
-        $this->_data = $this->_view != 'trash'
42
-            ? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, false)
43
-            : $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, false);
44
-        $this->_all_data_count = $this->_view != 'trash'
45
-            ? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, true)
46
-            : $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, true);
47
-    }
48
-
49
-
50
-    protected function _set_properties()
51
-    {
52
-        $this->_wp_list_args = array(
53
-            'singular' => __('question group', 'event_espresso'),
54
-            'plural'   => __('question groups', 'event_espresso'),
55
-            'ajax'     => true, // for now,
56
-            'screen'   => $this->_admin_page->get_current_screen()->id,
57
-        );
58
-
59
-        $this->_columns = array(
60
-            'cb'              => '<input type="checkbox" />',
61
-            'id'              => __('ID', 'event_espresso'),
62
-            'name'            => __('Group Name', 'event_espresso'),
63
-            'description'     => __('Description', 'event_espresso'),
64
-            'show_group_name' => __('Show Name', 'event_espresso'),
65
-            'show_group_desc' => __('Show Desc', 'event_espresso'),
66
-        );
67
-
68
-        $this->_sortable_columns = array(
69
-            'id'   => array('QSG_ID' => false),
70
-            'name' => array('QSG_name' => false),
71
-        );
72
-
73
-        $this->_hidden_columns = array(
74
-            'id',
75
-        );
76
-
77
-        $this->_ajax_sorting_callback = 'update_question_group_order';
78
-    }
79
-
80
-
81
-    // not needed
82
-    protected function _get_table_filters()
83
-    {
84
-        return array();
85
-    }
86
-
87
-
88
-    protected function _add_view_counts()
89
-    {
90
-        $this->_views['all']['count'] = $this->_admin_page->get_question_groups(
91
-            $this->_per_page,
92
-            $this->_current_page,
93
-            true
94
-        );
95
-        if (EE_Registry::instance()->CAP->current_user_can(
96
-            'ee_delete_question_groups',
97
-            'espresso_registration_form_trash_question_group'
98
-        )) {
99
-            $this->_views['trash']['count'] = $this->_admin_page->get_trashed_question_groups(
100
-                $this->_per_page,
101
-                $this->_current_page,
102
-                true
103
-            );
104
-        }
105
-    }
106
-
107
-
108
-    public function column_cb($item)
109
-    {
110
-        $system_group = $item->get('QSG_system');
111
-        $has_questions_with_answers = $item->has_questions_with_answers();
112
-        $lock_icon = $system_group === 0 && $this->_view == 'trash' && $has_questions_with_answers
113
-            ? 'ee-lock-icon ee-alternate-color'
114
-            : 'ee-lock-icon ee-system-lock';
115
-        return $system_group > 0
116
-               || ($system_group === 0
117
-                    && $this->_view == 'trash'
118
-                    && $has_questions_with_answers
119
-                )
120
-               || ! EE_Registry::instance()->CAP->current_user_can(
121
-                   'ee_delete_question_groups',
122
-                   'espresso_registration_form_trash_question_groups',
123
-                   $item->ID()
124
-               )
125
-            ? '<span class="' . $lock_icon . '"></span>'
126
-              . sprintf(
127
-                  '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128
-                  $item->ID()
129
-              )
130
-            : sprintf(
131
-                '<input type="checkbox" id="QSG_ID[%1$d]" name="checkbox[%1$d]" value="%1$d" />',
132
-                $item->ID()
133
-            );
134
-    }
135
-
136
-
137
-    public function column_id(EE_Question_Group $item)
138
-    {
139
-        $content = $item->ID();
140
-        $content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
141
-        return $content;
142
-    }
143
-
144
-
145
-    public function column_name(EE_Question_Group $item)
146
-    {
147
-        $actions = array();
148
-
149
-        // return $item->name();
150
-        if (! defined('REG_ADMIN_URL')) {
151
-            define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152
-        }
153
-
154
-        $edit_query_args = array(
155
-            'action' => 'edit_question_group',
156
-            'QSG_ID' => $item->ID(),
157
-        );
158
-
159
-        $trash_query_args = array(
160
-            'action' => 'trash_question_group',
161
-            'QSG_ID' => $item->ID(),
162
-        );
163
-
164
-        $restore_query_args = array(
165
-            'action' => 'restore_question_group',
166
-            'QSG_ID' => $item->ID(),
167
-        );
168
-
169
-        $delete_query_args = array(
170
-            'action' => 'delete_question_group',
171
-            'QSG_ID' => $item->ID(),
172
-        );
173
-
174
-
175
-        $edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
176
-        $trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
177
-        $restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
178
-        $delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
179
-
180
-        if (EE_Registry::instance()->CAP->current_user_can(
181
-            'ee_edit_question_group',
182
-            'espresso_registration_form_edit_question_group',
183
-            $item->ID()
184
-        )) {
185
-            $actions = array(
186
-                'edit' => '<a href="' . $edit_link . '" title="'
187
-                          . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
-                          . __('Edit', 'event_espresso') . '</a>',
189
-            );
190
-        }
191
-        if ($item->get('QSG_system') < 1
192
-            && $this->_view != 'trash'
193
-            && EE_Registry::instance()->CAP->current_user_can(
194
-                'ee_delete_question_group',
195
-                'espresso_registration_form_trash_question_group',
196
-                $item->ID()
197
-            )) {
198
-            $actions['delete'] = '<a href="' . $trash_link . '" title="'
199
-                                 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
-                                 . __('Trash', 'event_espresso') . '</a>';
201
-        }
202
-
203
-        if ($this->_view == 'trash') {
204
-            if (EE_Registry::instance()->CAP->current_user_can(
205
-                'ee_delete_question_group',
206
-                'espresso_registration_form_restore_question_group',
207
-                $item->ID()
208
-            )) {
209
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
210
-                                      . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
-                                      . __('Restore', 'event_espresso') . '</a>';
212
-            }
213
-
214
-            if (! $item->has_questions_with_answers()
215
-                && EE_Registry::instance()->CAP->current_user_can(
216
-                    'ee_delete_question_group',
217
-                    'espresso_registration_form_delete_question_group',
218
-                    $item->ID()
219
-                )) {
220
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
221
-                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
223
-            }
224
-        }
225
-
226
-        $content = EE_Registry::instance()->CAP->current_user_can(
227
-            'ee_edit_question_group',
228
-            'espresso_registration_form_edit_question_group',
229
-            $item->ID()
230
-        )
231
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
232
-            : $item->name();
233
-        $content .= $this->row_actions($actions);
234
-        return $content;
235
-    }
236
-
237
-
238
-    public function column_identifier(EE_Question_Group $item)
239
-    {
240
-        return $item->identifier();
241
-    }
242
-
243
-
244
-    public function column_description(EE_Question_Group $item)
245
-    {
246
-        return $item->desc();
247
-    }
248
-
249
-
250
-    public function column_show_group_name(EE_Question_Group $item)
251
-    {
252
-        return $this->_yes_no[ $item->show_group_name() ];
253
-    }
254
-
255
-
256
-    public function column_show_group_desc(EE_Question_Group $item)
257
-    {
258
-        return $this->_yes_no[ $item->show_group_desc() ];
259
-    }
33
+	public function __construct($admin_page)
34
+	{
35
+		parent::__construct($admin_page);
36
+	}
37
+
38
+
39
+	protected function _setup_data()
40
+	{
41
+		$this->_data = $this->_view != 'trash'
42
+			? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, false)
43
+			: $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, false);
44
+		$this->_all_data_count = $this->_view != 'trash'
45
+			? $this->_admin_page->get_question_groups($this->_per_page, $this->_current_page, true)
46
+			: $this->_admin_page->get_trashed_question_groups($this->_per_page, $this->_current_page, true);
47
+	}
48
+
49
+
50
+	protected function _set_properties()
51
+	{
52
+		$this->_wp_list_args = array(
53
+			'singular' => __('question group', 'event_espresso'),
54
+			'plural'   => __('question groups', 'event_espresso'),
55
+			'ajax'     => true, // for now,
56
+			'screen'   => $this->_admin_page->get_current_screen()->id,
57
+		);
58
+
59
+		$this->_columns = array(
60
+			'cb'              => '<input type="checkbox" />',
61
+			'id'              => __('ID', 'event_espresso'),
62
+			'name'            => __('Group Name', 'event_espresso'),
63
+			'description'     => __('Description', 'event_espresso'),
64
+			'show_group_name' => __('Show Name', 'event_espresso'),
65
+			'show_group_desc' => __('Show Desc', 'event_espresso'),
66
+		);
67
+
68
+		$this->_sortable_columns = array(
69
+			'id'   => array('QSG_ID' => false),
70
+			'name' => array('QSG_name' => false),
71
+		);
72
+
73
+		$this->_hidden_columns = array(
74
+			'id',
75
+		);
76
+
77
+		$this->_ajax_sorting_callback = 'update_question_group_order';
78
+	}
79
+
80
+
81
+	// not needed
82
+	protected function _get_table_filters()
83
+	{
84
+		return array();
85
+	}
86
+
87
+
88
+	protected function _add_view_counts()
89
+	{
90
+		$this->_views['all']['count'] = $this->_admin_page->get_question_groups(
91
+			$this->_per_page,
92
+			$this->_current_page,
93
+			true
94
+		);
95
+		if (EE_Registry::instance()->CAP->current_user_can(
96
+			'ee_delete_question_groups',
97
+			'espresso_registration_form_trash_question_group'
98
+		)) {
99
+			$this->_views['trash']['count'] = $this->_admin_page->get_trashed_question_groups(
100
+				$this->_per_page,
101
+				$this->_current_page,
102
+				true
103
+			);
104
+		}
105
+	}
106
+
107
+
108
+	public function column_cb($item)
109
+	{
110
+		$system_group = $item->get('QSG_system');
111
+		$has_questions_with_answers = $item->has_questions_with_answers();
112
+		$lock_icon = $system_group === 0 && $this->_view == 'trash' && $has_questions_with_answers
113
+			? 'ee-lock-icon ee-alternate-color'
114
+			: 'ee-lock-icon ee-system-lock';
115
+		return $system_group > 0
116
+			   || ($system_group === 0
117
+					&& $this->_view == 'trash'
118
+					&& $has_questions_with_answers
119
+				)
120
+			   || ! EE_Registry::instance()->CAP->current_user_can(
121
+				   'ee_delete_question_groups',
122
+				   'espresso_registration_form_trash_question_groups',
123
+				   $item->ID()
124
+			   )
125
+			? '<span class="' . $lock_icon . '"></span>'
126
+			  . sprintf(
127
+				  '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128
+				  $item->ID()
129
+			  )
130
+			: sprintf(
131
+				'<input type="checkbox" id="QSG_ID[%1$d]" name="checkbox[%1$d]" value="%1$d" />',
132
+				$item->ID()
133
+			);
134
+	}
135
+
136
+
137
+	public function column_id(EE_Question_Group $item)
138
+	{
139
+		$content = $item->ID();
140
+		$content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
141
+		return $content;
142
+	}
143
+
144
+
145
+	public function column_name(EE_Question_Group $item)
146
+	{
147
+		$actions = array();
148
+
149
+		// return $item->name();
150
+		if (! defined('REG_ADMIN_URL')) {
151
+			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152
+		}
153
+
154
+		$edit_query_args = array(
155
+			'action' => 'edit_question_group',
156
+			'QSG_ID' => $item->ID(),
157
+		);
158
+
159
+		$trash_query_args = array(
160
+			'action' => 'trash_question_group',
161
+			'QSG_ID' => $item->ID(),
162
+		);
163
+
164
+		$restore_query_args = array(
165
+			'action' => 'restore_question_group',
166
+			'QSG_ID' => $item->ID(),
167
+		);
168
+
169
+		$delete_query_args = array(
170
+			'action' => 'delete_question_group',
171
+			'QSG_ID' => $item->ID(),
172
+		);
173
+
174
+
175
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EE_FORMS_ADMIN_URL);
176
+		$trash_link = EE_Admin_Page::add_query_args_and_nonce($trash_query_args, EE_FORMS_ADMIN_URL);
177
+		$restore_link = EE_Admin_Page::add_query_args_and_nonce($restore_query_args, EE_FORMS_ADMIN_URL);
178
+		$delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EE_FORMS_ADMIN_URL);
179
+
180
+		if (EE_Registry::instance()->CAP->current_user_can(
181
+			'ee_edit_question_group',
182
+			'espresso_registration_form_edit_question_group',
183
+			$item->ID()
184
+		)) {
185
+			$actions = array(
186
+				'edit' => '<a href="' . $edit_link . '" title="'
187
+						  . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
+						  . __('Edit', 'event_espresso') . '</a>',
189
+			);
190
+		}
191
+		if ($item->get('QSG_system') < 1
192
+			&& $this->_view != 'trash'
193
+			&& EE_Registry::instance()->CAP->current_user_can(
194
+				'ee_delete_question_group',
195
+				'espresso_registration_form_trash_question_group',
196
+				$item->ID()
197
+			)) {
198
+			$actions['delete'] = '<a href="' . $trash_link . '" title="'
199
+								 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
+								 . __('Trash', 'event_espresso') . '</a>';
201
+		}
202
+
203
+		if ($this->_view == 'trash') {
204
+			if (EE_Registry::instance()->CAP->current_user_can(
205
+				'ee_delete_question_group',
206
+				'espresso_registration_form_restore_question_group',
207
+				$item->ID()
208
+			)) {
209
+				$actions['restore'] = '<a href="' . $restore_link . '" title="'
210
+									  . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
+									  . __('Restore', 'event_espresso') . '</a>';
212
+			}
213
+
214
+			if (! $item->has_questions_with_answers()
215
+				&& EE_Registry::instance()->CAP->current_user_can(
216
+					'ee_delete_question_group',
217
+					'espresso_registration_form_delete_question_group',
218
+					$item->ID()
219
+				)) {
220
+					$actions['delete'] = '<a href="' . $delete_link . '" title="'
221
+										 . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
+										 . __('Delete Permanently', 'event_espresso') . '</a>';
223
+			}
224
+		}
225
+
226
+		$content = EE_Registry::instance()->CAP->current_user_can(
227
+			'ee_edit_question_group',
228
+			'espresso_registration_form_edit_question_group',
229
+			$item->ID()
230
+		)
231
+			? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
232
+			: $item->name();
233
+		$content .= $this->row_actions($actions);
234
+		return $content;
235
+	}
236
+
237
+
238
+	public function column_identifier(EE_Question_Group $item)
239
+	{
240
+		return $item->identifier();
241
+	}
242
+
243
+
244
+	public function column_description(EE_Question_Group $item)
245
+	{
246
+		return $item->desc();
247
+	}
248
+
249
+
250
+	public function column_show_group_name(EE_Question_Group $item)
251
+	{
252
+		return $this->_yes_no[ $item->show_group_name() ];
253
+	}
254
+
255
+
256
+	public function column_show_group_desc(EE_Question_Group $item)
257
+	{
258
+		return $this->_yes_no[ $item->show_group_desc() ];
259
+	}
260 260
 }
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                    'espresso_registration_form_trash_question_groups',
123 123
                    $item->ID()
124 124
                )
125
-            ? '<span class="' . $lock_icon . '"></span>'
125
+            ? '<span class="'.$lock_icon.'"></span>'
126 126
               . sprintf(
127 127
                   '<input type="hidden" name="hdnchk[%1$d]" value="%1$d" />',
128 128
                   $item->ID()
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     public function column_id(EE_Question_Group $item)
138 138
     {
139 139
         $content = $item->ID();
140
-        $content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
140
+        $content .= '  <span class="show-on-mobile-view-only">'.$item->name().'</span>';
141 141
         return $content;
142 142
     }
143 143
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         $actions = array();
148 148
 
149 149
         // return $item->name();
150
-        if (! defined('REG_ADMIN_URL')) {
150
+        if ( ! defined('REG_ADMIN_URL')) {
151 151
             define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
152 152
         }
153 153
 
@@ -183,9 +183,9 @@  discard block
 block discarded – undo
183 183
             $item->ID()
184 184
         )) {
185 185
             $actions = array(
186
-                'edit' => '<a href="' . $edit_link . '" title="'
187
-                          . esc_attr__('Edit Question Group', 'event_espresso') . '">'
188
-                          . __('Edit', 'event_espresso') . '</a>',
186
+                'edit' => '<a href="'.$edit_link.'" title="'
187
+                          . esc_attr__('Edit Question Group', 'event_espresso').'">'
188
+                          . __('Edit', 'event_espresso').'</a>',
189 189
             );
190 190
         }
191 191
         if ($item->get('QSG_system') < 1
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
                 'espresso_registration_form_trash_question_group',
196 196
                 $item->ID()
197 197
             )) {
198
-            $actions['delete'] = '<a href="' . $trash_link . '" title="'
199
-                                 . esc_attr__('Delete Question Group', 'event_espresso') . '">'
200
-                                 . __('Trash', 'event_espresso') . '</a>';
198
+            $actions['delete'] = '<a href="'.$trash_link.'" title="'
199
+                                 . esc_attr__('Delete Question Group', 'event_espresso').'">'
200
+                                 . __('Trash', 'event_espresso').'</a>';
201 201
         }
202 202
 
203 203
         if ($this->_view == 'trash') {
@@ -206,20 +206,20 @@  discard block
 block discarded – undo
206 206
                 'espresso_registration_form_restore_question_group',
207 207
                 $item->ID()
208 208
             )) {
209
-                $actions['restore'] = '<a href="' . $restore_link . '" title="'
210
-                                      . esc_attr__('Restore Question Group', 'event_espresso') . '">'
211
-                                      . __('Restore', 'event_espresso') . '</a>';
209
+                $actions['restore'] = '<a href="'.$restore_link.'" title="'
210
+                                      . esc_attr__('Restore Question Group', 'event_espresso').'">'
211
+                                      . __('Restore', 'event_espresso').'</a>';
212 212
             }
213 213
 
214
-            if (! $item->has_questions_with_answers()
214
+            if ( ! $item->has_questions_with_answers()
215 215
                 && EE_Registry::instance()->CAP->current_user_can(
216 216
                     'ee_delete_question_group',
217 217
                     'espresso_registration_form_delete_question_group',
218 218
                     $item->ID()
219 219
                 )) {
220
-                    $actions['delete'] = '<a href="' . $delete_link . '" title="'
221
-                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso') . '">'
222
-                                         . __('Delete Permanently', 'event_espresso') . '</a>';
220
+                    $actions['delete'] = '<a href="'.$delete_link.'" title="'
221
+                                         . esc_attr__('Delete Question Group Permanently', 'event_espresso').'">'
222
+                                         . __('Delete Permanently', 'event_espresso').'</a>';
223 223
             }
224 224
         }
225 225
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
             'espresso_registration_form_edit_question_group',
229 229
             $item->ID()
230 230
         )
231
-            ? '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>'
231
+            ? '<strong><a class="row-title" href="'.$edit_link.'">'.$item->name().'</a></strong>'
232 232
             : $item->name();
233 233
         $content .= $this->row_actions($actions);
234 234
         return $content;
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
 
250 250
     public function column_show_group_name(EE_Question_Group $item)
251 251
     {
252
-        return $this->_yes_no[ $item->show_group_name() ];
252
+        return $this->_yes_no[$item->show_group_name()];
253 253
     }
254 254
 
255 255
 
256 256
     public function column_show_group_desc(EE_Question_Group $item)
257 257
     {
258
-        return $this->_yes_no[ $item->show_group_desc() ];
258
+        return $this->_yes_no[$item->show_group_desc()];
259 259
     }
260 260
 }
Please login to merge, or discard this patch.
help_tours/Registration_Form_Questions_Overview_Help_Tour.class.php 2 patches
Indentation   +139 added lines, -139 removed lines patch added patch discarded remove patch
@@ -28,155 +28,155 @@
 block discarded – undo
28 28
 class Registration_Form_Questions_Overview_Help_Tour extends EE_Help_Tour
29 29
 {
30 30
 
31
-    protected function _set_tour_properties()
32
-    {
33
-        $this->_label = __('Questions Overview Tour', 'event_espresso');
34
-        $this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
35
-    }
31
+	protected function _set_tour_properties()
32
+	{
33
+		$this->_label = __('Questions Overview Tour', 'event_espresso');
34
+		$this->_slug = $this->_is_caf ? 'questions-overview-caf-joyride' : 'questions-overview-joyride';
35
+	}
36 36
 
37
-    protected function _set_tour_stops()
38
-    {
39
-        $this->_stops = array(
40
-            10  => array(
41
-                'content' => $this->_start(),
42
-            ),
43
-            30  => array(
44
-                'id'      => 'display_text',
45
-                'content' => $this->_display_text_stop(),
46
-                'options' => array(
47
-                    'tipLocation'    => 'top',
48
-                    'tipAdjustmentX' => -5,
49
-                    'tipAdjustmentY' => -25,
50
-                ),
51
-            ),
52
-            40  => array(
53
-                'id'      => 'admin_label',
54
-                'content' => $this->_admin_label_stop(),
55
-                'options' => array(
56
-                    'tipLocation'    => 'top',
57
-                    'tipAdjustmentX' => 20,
58
-                    'tipAdjustmentY' => -25,
59
-                ),
60
-            ),
61
-            50  => array(
62
-                'id'      => 'type',
63
-                'content' => $this->_type_stop(),
64
-                'options' => array(
65
-                    'tipLocation'    => 'top',
66
-                    'tipAdjustmentX' => -5,
67
-                    'tipAdjustmentY' => -25,
68
-                ),
69
-            ),
70
-            60  => array(
71
-                'id'      => 'values',
72
-                'content' => $this->_values_stop(),
73
-                'options' => array(
74
-                    'tipLocation'    => 'top',
75
-                    'tipAdjustmentX' => -5,
76
-                    'tipAdjustmentY' => -25,
77
-                ),
78
-            ),
79
-            70  => array(
80
-                'id'      => 'required',
81
-                'content' => $this->_required_stop(),
82
-                'options' => array(
83
-                    'tipLocation'    => 'top',
84
-                    'tipAdjustmentY' => -20,
85
-                    'tipAdjustmentX' => -15,
86
-                ),
87
-            ),
88
-            80  => array(
89
-                'class'   => 'bulkactions',
90
-                'content' => $this->_bulk_actions_stop(),
91
-                'options' => array(
92
-                    'tipLocation'    => 'top',
93
-                    'tipAdjustmentY' => -30,
94
-                    'tipAdjustmentX' => -15,
95
-                ),
96
-            ),
97
-            90  => array(
98
-                'id'      => 'event-espresso_page_espresso_registration_form-search-input',
99
-                'content' => $this->_search_stop(),
100
-                'options' => array(
101
-                    'tipLocation'    => 'left',
102
-                    'tipAdjustmentY' => -50,
103
-                    'tipAdjustmentX' => -15,
104
-                ),
105
-            ),
106
-            100 => array(
107
-                'id'      => 'add-new-question',
108
-                'content' => $this->_add_new_question_stop(),
109
-                'options' => array(
110
-                    'tipLocation'    => 'right',
111
-                    'tipAdjustmentY' => -50,
112
-                    'tipAdjustmentX' => 15,
113
-                ),
114
-            ),
115
-        );
116
-    }
37
+	protected function _set_tour_stops()
38
+	{
39
+		$this->_stops = array(
40
+			10  => array(
41
+				'content' => $this->_start(),
42
+			),
43
+			30  => array(
44
+				'id'      => 'display_text',
45
+				'content' => $this->_display_text_stop(),
46
+				'options' => array(
47
+					'tipLocation'    => 'top',
48
+					'tipAdjustmentX' => -5,
49
+					'tipAdjustmentY' => -25,
50
+				),
51
+			),
52
+			40  => array(
53
+				'id'      => 'admin_label',
54
+				'content' => $this->_admin_label_stop(),
55
+				'options' => array(
56
+					'tipLocation'    => 'top',
57
+					'tipAdjustmentX' => 20,
58
+					'tipAdjustmentY' => -25,
59
+				),
60
+			),
61
+			50  => array(
62
+				'id'      => 'type',
63
+				'content' => $this->_type_stop(),
64
+				'options' => array(
65
+					'tipLocation'    => 'top',
66
+					'tipAdjustmentX' => -5,
67
+					'tipAdjustmentY' => -25,
68
+				),
69
+			),
70
+			60  => array(
71
+				'id'      => 'values',
72
+				'content' => $this->_values_stop(),
73
+				'options' => array(
74
+					'tipLocation'    => 'top',
75
+					'tipAdjustmentX' => -5,
76
+					'tipAdjustmentY' => -25,
77
+				),
78
+			),
79
+			70  => array(
80
+				'id'      => 'required',
81
+				'content' => $this->_required_stop(),
82
+				'options' => array(
83
+					'tipLocation'    => 'top',
84
+					'tipAdjustmentY' => -20,
85
+					'tipAdjustmentX' => -15,
86
+				),
87
+			),
88
+			80  => array(
89
+				'class'   => 'bulkactions',
90
+				'content' => $this->_bulk_actions_stop(),
91
+				'options' => array(
92
+					'tipLocation'    => 'top',
93
+					'tipAdjustmentY' => -30,
94
+					'tipAdjustmentX' => -15,
95
+				),
96
+			),
97
+			90  => array(
98
+				'id'      => 'event-espresso_page_espresso_registration_form-search-input',
99
+				'content' => $this->_search_stop(),
100
+				'options' => array(
101
+					'tipLocation'    => 'left',
102
+					'tipAdjustmentY' => -50,
103
+					'tipAdjustmentX' => -15,
104
+				),
105
+			),
106
+			100 => array(
107
+				'id'      => 'add-new-question',
108
+				'content' => $this->_add_new_question_stop(),
109
+				'options' => array(
110
+					'tipLocation'    => 'right',
111
+					'tipAdjustmentY' => -50,
112
+					'tipAdjustmentX' => 15,
113
+				),
114
+			),
115
+		);
116
+	}
117 117
 
118 118
 
119
-    protected function _start()
120
-    {
121
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
122
-        $content .= '<p>'
123
-                    . __(
124
-                        'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125
-                        'event_espresso'
126
-                    ) . '</p>';
119
+	protected function _start()
120
+	{
121
+		$content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
122
+		$content .= '<p>'
123
+					. __(
124
+						'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125
+						'event_espresso'
126
+					) . '</p>';
127 127
 
128
-        return $content;
129
-    }
128
+		return $content;
129
+	}
130 130
 
131
-    protected function _display_text_stop()
132
-    {
133
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
134
-    }
131
+	protected function _display_text_stop()
132
+	{
133
+		return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
134
+	}
135 135
 
136
-    protected function _admin_label_stop()
137
-    {
138
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
139
-    }
136
+	protected function _admin_label_stop()
137
+	{
138
+		return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
139
+	}
140 140
 
141
-    protected function _type_stop()
142
-    {
143
-        return '<p>'
144
-               . __(
145
-                   'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146
-                   'event_espresso'
147
-               ) . '</p>';
148
-    }
141
+	protected function _type_stop()
142
+	{
143
+		return '<p>'
144
+			   . __(
145
+				   'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146
+				   'event_espresso'
147
+			   ) . '</p>';
148
+	}
149 149
 
150
-    protected function _values_stop()
151
-    {
152
-        return '<p>'
153
-               . __(
154
-                   'View stored values for checkboxes, radio buttons, and select boxes.',
155
-                   'event_espresso'
156
-               ) . '</p>';
157
-    }
150
+	protected function _values_stop()
151
+	{
152
+		return '<p>'
153
+			   . __(
154
+				   'View stored values for checkboxes, radio buttons, and select boxes.',
155
+				   'event_espresso'
156
+			   ) . '</p>';
157
+	}
158 158
 
159
-    protected function _required_stop()
160
-    {
161
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
162
-    }
159
+	protected function _required_stop()
160
+	{
161
+		return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
162
+	}
163 163
 
164
-    protected function _bulk_actions_stop()
165
-    {
166
-        return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
167
-    }
164
+	protected function _bulk_actions_stop()
165
+	{
166
+		return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
167
+	}
168 168
 
169
-    protected function _search_stop()
170
-    {
171
-        return '<p>'
172
-               . __(
173
-                   'Search through questions. The following sources will be searched: Name of Question (display text).',
174
-                   'event_espresso'
175
-               ) . '</p>';
176
-    }
169
+	protected function _search_stop()
170
+	{
171
+		return '<p>'
172
+			   . __(
173
+				   'Search through questions. The following sources will be searched: Name of Question (display text).',
174
+				   'event_espresso'
175
+			   ) . '</p>';
176
+	}
177 177
 
178
-    protected function _add_new_question_stop()
179
-    {
180
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
181
-    }
178
+	protected function _add_new_question_stop()
179
+	{
180
+		return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
181
+	}
182 182
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -118,24 +118,24 @@  discard block
 block discarded – undo
118 118
 
119 119
     protected function _start()
120 120
     {
121
-        $content = '<h3>' . __('Questions Overview', 'event_espresso') . '</h3>';
121
+        $content = '<h3>'.__('Questions Overview', 'event_espresso').'</h3>';
122 122
         $content .= '<p>'
123 123
                     . __(
124 124
                         'This tour of the Questions Overview page will go over different areas of the screen to help you understand what they are used for.',
125 125
                         'event_espresso'
126
-                    ) . '</p>';
126
+                    ).'</p>';
127 127
 
128 128
         return $content;
129 129
     }
130 130
 
131 131
     protected function _display_text_stop()
132 132
     {
133
-        return '<p>' . __('View available questions.', 'event_espresso') . '</p>';
133
+        return '<p>'.__('View available questions.', 'event_espresso').'</p>';
134 134
     }
135 135
 
136 136
     protected function _admin_label_stop()
137 137
     {
138
-        return '<p>' . __('View the admin label for your questions.', 'event_espresso') . '</p>';
138
+        return '<p>'.__('View the admin label for your questions.', 'event_espresso').'</p>';
139 139
     }
140 140
 
141 141
     protected function _type_stop()
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                . __(
145 145
                    'View the type of question. Available options are Text, Textarea, Checkboxes, Radio Buttons, Dropdown, State/Province Dropdown, Country Dropdown, and Date Picker.',
146 146
                    'event_espresso'
147
-               ) . '</p>';
147
+               ).'</p>';
148 148
     }
149 149
 
150 150
     protected function _values_stop()
@@ -153,17 +153,17 @@  discard block
 block discarded – undo
153 153
                . __(
154 154
                    'View stored values for checkboxes, radio buttons, and select boxes.',
155 155
                    'event_espresso'
156
-               ) . '</p>';
156
+               ).'</p>';
157 157
     }
158 158
 
159 159
     protected function _required_stop()
160 160
     {
161
-        return '<p>' . __('View if a question is required.', 'event_espresso') . '</p>';
161
+        return '<p>'.__('View if a question is required.', 'event_espresso').'</p>';
162 162
     }
163 163
 
164 164
     protected function _bulk_actions_stop()
165 165
     {
166
-        return '<p>' . __('Perform bulk actions to multiple questions.', 'event_espresso') . '</p>';
166
+        return '<p>'.__('Perform bulk actions to multiple questions.', 'event_espresso').'</p>';
167 167
     }
168 168
 
169 169
     protected function _search_stop()
@@ -172,11 +172,11 @@  discard block
 block discarded – undo
172 172
                . __(
173 173
                    'Search through questions. The following sources will be searched: Name of Question (display text).',
174 174
                    'event_espresso'
175
-               ) . '</p>';
175
+               ).'</p>';
176 176
     }
177 177
 
178 178
     protected function _add_new_question_stop()
179 179
     {
180
-        return '<p>' . __('Click here to add a new question.', 'event_espresso') . '</p>';
180
+        return '<p>'.__('Click here to add a new question.', 'event_espresso').'</p>';
181 181
     }
182 182
 }
Please login to merge, or discard this patch.