Completed
Branch BUG-10050-ticket-price-details (f8afc3)
by
unknown
130:17 queued 118:38
created
form_sections/inputs/EE_Checkbox_Dropdown_Selector_Input.input.php 2 patches
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 
5 5
 
@@ -17,43 +17,43 @@  discard block
 block discarded – undo
17 17
 class EE_Checkbox_Dropdown_Selector_Input extends EE_Form_Input_With_Options_Base
18 18
 {
19 19
 
20
-    /**
21
-     * @var string text to display on the select button itself
22
-     */
23
-    protected $_select_button_text;
24
-
25
-    /**
26
-     * @param array $answer_options
27
-     * @param array $input_settings
28
-     */
29
-    public function __construct($answer_options, $input_settings = array())
30
-    {
31
-        $this->_select_button_text = EEH_Array::is_set( $input_settings, 'select_button_text',
32
-            esc_html__('Select', 'event_espresso'));
33
-        $this->_set_display_strategy(
34
-            new EE_Checkbox_Dropdown_Selector_Display_Strategy()
35
-        );
36
-        $this->_add_validation_strategy(
37
-            new EE_Many_Valued_Validation_Strategy(
38
-                array(
39
-                    new EE_Enum_Validation_Strategy(
40
-                        isset($input_settings['validation_error_message'])
41
-                            ? $input_settings['validation_error_message']
42
-                            : null
43
-                    ),
44
-                )
45
-            )
46
-        );
47
-        $this->_multiple_selections = true;
48
-        parent::__construct($answer_options, $input_settings);
49
-    }
50
-
51
-    /*
20
+	/**
21
+	 * @var string text to display on the select button itself
22
+	 */
23
+	protected $_select_button_text;
24
+
25
+	/**
26
+	 * @param array $answer_options
27
+	 * @param array $input_settings
28
+	 */
29
+	public function __construct($answer_options, $input_settings = array())
30
+	{
31
+		$this->_select_button_text = EEH_Array::is_set( $input_settings, 'select_button_text',
32
+			esc_html__('Select', 'event_espresso'));
33
+		$this->_set_display_strategy(
34
+			new EE_Checkbox_Dropdown_Selector_Display_Strategy()
35
+		);
36
+		$this->_add_validation_strategy(
37
+			new EE_Many_Valued_Validation_Strategy(
38
+				array(
39
+					new EE_Enum_Validation_Strategy(
40
+						isset($input_settings['validation_error_message'])
41
+							? $input_settings['validation_error_message']
42
+							: null
43
+					),
44
+				)
45
+			)
46
+		);
47
+		$this->_multiple_selections = true;
48
+		parent::__construct($answer_options, $input_settings);
49
+	}
50
+
51
+	/*
52 52
      * Returns the text to display in the select button
53 53
      */
54
-    public function select_button_text(){
55
-        return $this->_select_button_text;
56
-    }
54
+	public function select_button_text(){
55
+		return $this->_select_button_text;
56
+	}
57 57
 
58 58
 
59 59
 }
60 60
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function __construct($answer_options, $input_settings = array())
30 30
     {
31
-        $this->_select_button_text = EEH_Array::is_set( $input_settings, 'select_button_text',
31
+        $this->_select_button_text = EEH_Array::is_set($input_settings, 'select_button_text',
32 32
             esc_html__('Select', 'event_espresso'));
33 33
         $this->_set_display_strategy(
34 34
             new EE_Checkbox_Dropdown_Selector_Display_Strategy()
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /*
52 52
      * Returns the text to display in the select button
53 53
      */
54
-    public function select_button_text(){
54
+    public function select_button_text() {
55 55
         return $this->_select_button_text;
56 56
     }
57 57
 
Please login to merge, or discard this patch.
core/db_classes/EE_Base_Class.class.php 2 patches
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
             list($this->_dt_frmt, $this->_tm_frmt) = $date_formats;
146 146
         } else {
147 147
             //set default formats for date and time
148
-            $this->_dt_frmt = (string)get_option('date_format', 'Y-m-d');
149
-            $this->_tm_frmt = (string)get_option('time_format', 'g:i a');
148
+            $this->_dt_frmt = (string) get_option('date_format', 'Y-m-d');
149
+            $this->_tm_frmt = (string) get_option('time_format', 'g:i a');
150 150
         }
151 151
         //if db model is instantiating
152 152
         if ($bydb) {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
      */
458 458
     public function get_format($full = true)
459 459
     {
460
-        return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt);
460
+        return $full ? $this->_dt_frmt.' '.$this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt);
461 461
     }
462 462
 
463 463
 
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
         //verify the field exists
566 566
         $this->get_model()->field_settings_for($fieldname);
567 567
         $cache_type = $pretty ? 'pretty' : 'standard';
568
-        $cache_type .= ! empty($extra_cache_ref) ? '_' . $extra_cache_ref : '';
568
+        $cache_type .= ! empty($extra_cache_ref) ? '_'.$extra_cache_ref : '';
569 569
         if (isset($this->_cached_properties[$fieldname][$cache_type])) {
570 570
             return $this->_cached_properties[$fieldname][$cache_type];
571 571
         }
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
         $current_cache_id = ''
754 754
     ) {
755 755
         // verify that incoming object is of the correct type
756
-        $obj_class = 'EE_' . $relationName;
756
+        $obj_class = 'EE_'.$relationName;
757 757
         if ($newly_saved_object instanceof $obj_class) {
758 758
             /* @type EE_Base_Class $newly_saved_object */
759 759
             // now get the type of relation
@@ -1261,7 +1261,7 @@  discard block
 block discarded – undo
1261 1261
      */
1262 1262
     public function get_i18n_datetime($field_name, $format = null)
1263 1263
     {
1264
-        $format = empty($format) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format;
1264
+        $format = empty($format) ? $this->_dt_frmt.' '.$this->_tm_frmt : $format;
1265 1265
         return date_i18n(
1266 1266
             $format,
1267 1267
             EEH_DTT_Helper::get_timestamp_with_offset($this->get_raw($field_name), $this->_timezone)
@@ -1399,8 +1399,8 @@  discard block
 block discarded – undo
1399 1399
         }
1400 1400
         $original_timezone = $this->_timezone;
1401 1401
         $this->set_timezone($timezone);
1402
-        $fn = (array)$field_name;
1403
-        $args = array_merge($fn, (array)$args);
1402
+        $fn = (array) $field_name;
1403
+        $args = array_merge($fn, (array) $args);
1404 1404
         if ( ! method_exists($this, $callback)) {
1405 1405
             throw new EE_Error(
1406 1406
                 sprintf(
@@ -1412,8 +1412,8 @@  discard block
 block discarded – undo
1412 1412
                 )
1413 1413
             );
1414 1414
         }
1415
-        $args = (array)$args;
1416
-        $return = $prepend . call_user_func_array(array($this, $callback), $args) . $append;
1415
+        $args = (array) $args;
1416
+        $return = $prepend.call_user_func_array(array($this, $callback), $args).$append;
1417 1417
         $this->set_timezone($original_timezone);
1418 1418
         return $return;
1419 1419
     }
@@ -1550,7 +1550,7 @@  discard block
 block discarded – undo
1550 1550
          * @param array         $set_cols_n_values
1551 1551
          * @param EE_Base_Class $model_object
1552 1552
          */
1553
-        $set_cols_n_values = (array)apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values,
1553
+        $set_cols_n_values = (array) apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values,
1554 1554
             $this);
1555 1555
         //set attributes as provided in $set_cols_n_values
1556 1556
         foreach ($set_cols_n_values as $column => $value) {
@@ -1605,8 +1605,8 @@  discard block
 block discarded – undo
1605 1605
                                 __('Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s',
1606 1606
                                     'event_espresso'),
1607 1607
                                 get_class($this),
1608
-                                get_class($this->get_model()) . '::instance()->add_to_entity_map()',
1609
-                                get_class($this->get_model()) . '::instance()->get_one_by_ID()',
1608
+                                get_class($this->get_model()).'::instance()->add_to_entity_map()',
1609
+                                get_class($this->get_model()).'::instance()->get_one_by_ID()',
1610 1610
                                 '<br />'
1611 1611
                             )
1612 1612
                         );
@@ -1873,7 +1873,7 @@  discard block
 block discarded – undo
1873 1873
         if (strpos($model_name, "EE_") === 0) {
1874 1874
             $model_classname = str_replace("EE_", "EEM_", $model_name);
1875 1875
         } else {
1876
-            $model_classname = "EEM_" . $model_name;
1876
+            $model_classname = "EEM_".$model_name;
1877 1877
         }
1878 1878
         return $model_classname;
1879 1879
     }
@@ -2257,7 +2257,7 @@  discard block
 block discarded – undo
2257 2257
      */
2258 2258
     protected function _property_exists($properties)
2259 2259
     {
2260
-        foreach ((array)$properties as $property_name) {
2260
+        foreach ((array) $properties as $property_name) {
2261 2261
             //first make sure this property exists
2262 2262
             if ( ! $this->_fields[$property_name]) {
2263 2263
                 throw new EE_Error(
@@ -2588,8 +2588,8 @@  discard block
 block discarded – undo
2588 2588
                         __('Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.',
2589 2589
                             'event_espresso'),
2590 2590
                         $this->ID(),
2591
-                        get_class($this->get_model()) . '::instance()->add_to_entity_map()',
2592
-                        get_class($this->get_model()) . '::instance()->refresh_entity_map()'
2591
+                        get_class($this->get_model()).'::instance()->add_to_entity_map()',
2592
+                        get_class($this->get_model()).'::instance()->refresh_entity_map()'
2593 2593
                     )
2594 2594
                 );
2595 2595
             }
@@ -2648,7 +2648,7 @@  discard block
 block discarded – undo
2648 2648
     {
2649 2649
         foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
2650 2650
             if ($relation_obj instanceof EE_Belongs_To_Relation) {
2651
-                $classname = 'EE_' . $this->get_model()->get_this_model_name();
2651
+                $classname = 'EE_'.$this->get_model()->get_this_model_name();
2652 2652
                 if (
2653 2653
                     $this->get_one_from_cache($relation_name) instanceof $classname
2654 2654
                     && $this->get_one_from_cache($relation_name)->ID()
Please login to merge, or discard this patch.
Indentation   +2647 added lines, -2647 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 do_action('AHEE_log', __FILE__, ' FILE LOADED', '');
5 5
 
@@ -25,2652 +25,2652 @@  discard block
 block discarded – undo
25 25
 abstract class EE_Base_Class
26 26
 {
27 27
 
28
-    /**
29
-     * This is an array of the original properties and values provided during construction
30
-     * of this model object. (keys are model field names, values are their values).
31
-     * This list is important to remember so that when we are merging data from the db, we know
32
-     * which values to override and which to not override.
33
-     *
34
-     * @var array
35
-     */
36
-    protected $_props_n_values_provided_in_constructor;
37
-
38
-    /**
39
-     * Timezone
40
-     * This gets set by the "set_timezone()" method so that we know what timezone incoming strings|timestamps are in.
41
-     * This can also be used before a get to set what timezone you want strings coming out of the object to be in.  NOT
42
-     * all EE_Base_Class child classes use this property but any that use a EE_Datetime_Field data type will have
43
-     * access to it.
44
-     *
45
-     * @var string
46
-     */
47
-    protected $_timezone;
48
-
49
-
50
-
51
-    /**
52
-     * date format
53
-     * pattern or format for displaying dates
54
-     *
55
-     * @var string $_dt_frmt
56
-     */
57
-    protected $_dt_frmt;
58
-
59
-
60
-
61
-    /**
62
-     * time format
63
-     * pattern or format for displaying time
64
-     *
65
-     * @var string $_tm_frmt
66
-     */
67
-    protected $_tm_frmt;
68
-
69
-
70
-
71
-    /**
72
-     * This property is for holding a cached array of object properties indexed by property name as the key.
73
-     * The purpose of this is for setting a cache on properties that may have calculated values after a
74
-     * prepare_for_get.  That way the cache can be checked first and the calculated property returned instead of having
75
-     * to recalculate. Used by _set_cached_property() and _get_cached_property() methods.
76
-     *
77
-     * @var array
78
-     */
79
-    protected $_cached_properties = array();
80
-
81
-    /**
82
-     * An array containing keys of the related model, and values are either an array of related mode objects or a
83
-     * single
84
-     * related model object. see the model's _model_relations. The keys should match those specified. And if the
85
-     * relation is of type EE_Belongs_To (or one of its children), then there should only be ONE related model object,
86
-     * all others have an array)
87
-     *
88
-     * @var array
89
-     */
90
-    protected $_model_relations = array();
91
-
92
-    /**
93
-     * Array where keys are field names (see the model's _fields property) and values are their values. To see what
94
-     * their types should be, look at what that field object returns on its prepare_for_get and prepare_for_set methods)
95
-     *
96
-     * @var array
97
-     */
98
-    protected $_fields = array();
99
-
100
-    /**
101
-     * @var boolean indicating whether or not this model object is intended to ever be saved
102
-     * For example, we might create model objects intended to only be used for the duration
103
-     * of this request and to be thrown away, and if they were accidentally saved
104
-     * it would be a bug.
105
-     */
106
-    protected $_allow_persist = true;
107
-
108
-
109
-
110
-    /**
111
-     * basic constructor for Event Espresso classes, performs any necessary initialization, and verifies it's children
112
-     * play nice
113
-     *
114
-     * @param array   $fieldValues                             where each key is a field (ie, array key in the 2nd
115
-     *                                                         layer of the model's _fields array, (eg, EVT_ID,
116
-     *                                                         TXN_amount, QST_name, etc) and values are their values
117
-     * @param boolean $bydb                                    a flag for setting if the class is instantiated by the
118
-     *                                                         corresponding db model or not.
119
-     * @param string  $timezone                                indicate what timezone you want any datetime fields to
120
-     *                                                         be in when instantiating a EE_Base_Class object.
121
-     * @param array   $date_formats                            An array of date formats to set on construct where first
122
-     *                                                         value is the date_format and second value is the time
123
-     *                                                         format.
124
-     * @throws EE_Error
125
-     */
126
-    protected function __construct($fieldValues = array(), $bydb = false, $timezone = '', $date_formats = array())
127
-    {
128
-        $className = get_class($this);
129
-        do_action("AHEE__{$className}__construct", $this, $fieldValues);
130
-        $model = $this->get_model();
131
-        $model_fields = $model->field_settings(false);
132
-        // ensure $fieldValues is an array
133
-        $fieldValues = is_array($fieldValues) ? $fieldValues : array($fieldValues);
134
-        // EEH_Debug_Tools::printr( $fieldValues, '$fieldValues  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
135
-        // verify client code has not passed any invalid field names
136
-        foreach ($fieldValues as $field_name => $field_value) {
137
-            if ( ! isset($model_fields[$field_name])) {
138
-                throw new EE_Error(sprintf(__("Invalid field (%s) passed to constructor of %s. Allowed fields are :%s",
139
-                    "event_espresso"), $field_name, get_class($this), implode(", ", array_keys($model_fields))));
140
-            }
141
-        }
142
-        // EEH_Debug_Tools::printr( $model_fields, '$model_fields  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
143
-        $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone);
144
-        if ( ! empty($date_formats) && is_array($date_formats)) {
145
-            list($this->_dt_frmt, $this->_tm_frmt) = $date_formats;
146
-        } else {
147
-            //set default formats for date and time
148
-            $this->_dt_frmt = (string)get_option('date_format', 'Y-m-d');
149
-            $this->_tm_frmt = (string)get_option('time_format', 'g:i a');
150
-        }
151
-        //if db model is instantiating
152
-        if ($bydb) {
153
-            //client code has indicated these field values are from the database
154
-            foreach ($model_fields as $fieldName => $field) {
155
-                $this->set_from_db($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null);
156
-            }
157
-        } else {
158
-            //we're constructing a brand
159
-            //new instance of the model object. Generally, this means we'll need to do more field validation
160
-            foreach ($model_fields as $fieldName => $field) {
161
-                $this->set($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null, true);
162
-            }
163
-        }
164
-        //remember what values were passed to this constructor
165
-        $this->_props_n_values_provided_in_constructor = $fieldValues;
166
-        //remember in entity mapper
167
-        if ( ! $bydb && $model->has_primary_key_field() && $this->ID()) {
168
-            $model->add_to_entity_map($this);
169
-        }
170
-        //setup all the relations
171
-        foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
172
-            if ($relation_obj instanceof EE_Belongs_To_Relation) {
173
-                $this->_model_relations[$relation_name] = null;
174
-            } else {
175
-                $this->_model_relations[$relation_name] = array();
176
-            }
177
-        }
178
-        /**
179
-         * Action done at the end of each model object construction
180
-         *
181
-         * @param EE_Base_Class $this the model object just created
182
-         */
183
-        do_action('AHEE__EE_Base_Class__construct__finished', $this);
184
-    }
185
-
186
-
187
-
188
-    /**
189
-     * Gets whether or not this model object is allowed to persist/be saved to the database.
190
-     *
191
-     * @return boolean
192
-     */
193
-    public function allow_persist()
194
-    {
195
-        return $this->_allow_persist;
196
-    }
197
-
198
-
199
-
200
-    /**
201
-     * Sets whether or not this model object should be allowed to be saved to the DB.
202
-     * Normally once this is set to FALSE you wouldn't set it back to TRUE, unless
203
-     * you got new information that somehow made you change your mind.
204
-     *
205
-     * @param boolean $allow_persist
206
-     * @return boolean
207
-     */
208
-    public function set_allow_persist($allow_persist)
209
-    {
210
-        return $this->_allow_persist = $allow_persist;
211
-    }
212
-
213
-
214
-
215
-    /**
216
-     * Gets the field's original value when this object was constructed during this request.
217
-     * This can be helpful when determining if a model object has changed or not
218
-     *
219
-     * @param string $field_name
220
-     * @return mixed|null
221
-     * @throws \EE_Error
222
-     */
223
-    public function get_original($field_name)
224
-    {
225
-        if (isset($this->_props_n_values_provided_in_constructor[$field_name])
226
-            && $field_settings = $this->get_model()->field_settings_for($field_name)
227
-        ) {
228
-            return $field_settings->prepare_for_get($this->_props_n_values_provided_in_constructor[$field_name]);
229
-        } else {
230
-            return null;
231
-        }
232
-    }
233
-
234
-
235
-
236
-    /**
237
-     * @param EE_Base_Class $obj
238
-     * @return string
239
-     */
240
-    public function get_class($obj)
241
-    {
242
-        return get_class($obj);
243
-    }
244
-
245
-
246
-
247
-    /**
248
-     * Overrides parent because parent expects old models.
249
-     * This also doesn't do any validation, and won't work for serialized arrays
250
-     *
251
-     * @param    string $field_name
252
-     * @param    mixed  $field_value
253
-     * @param bool      $use_default
254
-     * @throws \EE_Error
255
-     */
256
-    public function set($field_name, $field_value, $use_default = false)
257
-    {
258
-        $field_obj = $this->get_model()->field_settings_for($field_name);
259
-        if ($field_obj instanceof EE_Model_Field_Base) {
260
-            //			if ( method_exists( $field_obj, 'set_timezone' )) {
261
-            if ($field_obj instanceof EE_Datetime_Field) {
262
-                $field_obj->set_timezone($this->_timezone);
263
-                $field_obj->set_date_format($this->_dt_frmt);
264
-                $field_obj->set_time_format($this->_tm_frmt);
265
-            }
266
-            $holder_of_value = $field_obj->prepare_for_set($field_value);
267
-            //should the value be null?
268
-            if (($field_value === null || $holder_of_value === null || $holder_of_value === '') && $use_default) {
269
-                $this->_fields[$field_name] = $field_obj->get_default_value();
270
-                /**
271
-                 * To save having to refactor all the models, if a default value is used for a
272
-                 * EE_Datetime_Field, and that value is not null nor is it a DateTime
273
-                 * object.  Then let's do a set again to ensure that it becomes a DateTime
274
-                 * object.
275
-                 *
276
-                 * @since 4.6.10+
277
-                 */
278
-                if (
279
-                    $field_obj instanceof EE_Datetime_Field
280
-                    && $this->_fields[$field_name] !== null
281
-                    && ! $this->_fields[$field_name] instanceof DateTime
282
-                ) {
283
-                    empty($this->_fields[$field_name])
284
-                        ? $this->set($field_name, time())
285
-                        : $this->set($field_name, $this->_fields[$field_name]);
286
-                }
287
-            } else {
288
-                $this->_fields[$field_name] = $holder_of_value;
289
-            }
290
-            //if we're not in the constructor...
291
-            //now check if what we set was a primary key
292
-            if (
293
-                //note: props_n_values_provided_in_constructor is only set at the END of the constructor
294
-                $this->_props_n_values_provided_in_constructor
295
-                && $field_value
296
-                && $field_name === self::_get_primary_key_name(get_class($this))
297
-            ) {
298
-                //if so, we want all this object's fields to be filled either with
299
-                //what we've explicitly set on this model
300
-                //or what we have in the db
301
-                // echo "setting primary key!";
302
-                $fields_on_model = self::_get_model(get_class($this))->field_settings();
303
-                $obj_in_db = self::_get_model(get_class($this))->get_one_by_ID($field_value);
304
-                foreach ($fields_on_model as $field_obj) {
305
-                    if ( ! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor)
306
-                         && $field_obj->get_name() !== $field_name
307
-                    ) {
308
-                        $this->set($field_obj->get_name(), $obj_in_db->get($field_obj->get_name()));
309
-                    }
310
-                }
311
-                //oh this model object has an ID? well make sure its in the entity mapper
312
-                $this->get_model()->add_to_entity_map($this);
313
-            }
314
-            //let's unset any cache for this field_name from the $_cached_properties property.
315
-            $this->_clear_cached_property($field_name);
316
-        } else {
317
-            throw new EE_Error(sprintf(__("A valid EE_Model_Field_Base could not be found for the given field name: %s",
318
-                "event_espresso"), $field_name));
319
-        }
320
-    }
321
-
322
-
323
-
324
-    /**
325
-     * This sets the field value on the db column if it exists for the given $column_name or
326
-     * saves it to EE_Extra_Meta if the given $column_name does not match a db column.
327
-     *
328
-     * @see EE_message::get_column_value for related documentation on the necessity of this method.
329
-     * @param string $field_name  Must be the exact column name.
330
-     * @param mixed  $field_value The value to set.
331
-     * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs.
332
-     * @throws \EE_Error
333
-     */
334
-    public function set_field_or_extra_meta($field_name, $field_value)
335
-    {
336
-        if ($this->get_model()->has_field($field_name)) {
337
-            $this->set($field_name, $field_value);
338
-            return true;
339
-        } else {
340
-            //ensure this object is saved first so that extra meta can be properly related.
341
-            $this->save();
342
-            return $this->update_extra_meta($field_name, $field_value);
343
-        }
344
-    }
345
-
346
-
347
-
348
-    /**
349
-     * This retrieves the value of the db column set on this class or if that's not present
350
-     * it will attempt to retrieve from extra_meta if found.
351
-     * Example Usage:
352
-     * Via EE_Message child class:
353
-     * Due to the dynamic nature of the EE_messages system, EE_messengers will always have a "to",
354
-     * "from", "subject", and "content" field (as represented in the EE_Message schema), however they may
355
-     * also have additional main fields specific to the messenger.  The system accommodates those extra
356
-     * fields through the EE_Extra_Meta table.  This method allows for EE_messengers to retrieve the
357
-     * value for those extra fields dynamically via the EE_message object.
358
-     *
359
-     * @param  string $field_name expecting the fully qualified field name.
360
-     * @return mixed|null  value for the field if found.  null if not found.
361
-     * @throws \EE_Error
362
-     */
363
-    public function get_field_or_extra_meta($field_name)
364
-    {
365
-        if ($this->get_model()->has_field($field_name)) {
366
-            $column_value = $this->get($field_name);
367
-        } else {
368
-            //This isn't a column in the main table, let's see if it is in the extra meta.
369
-            $column_value = $this->get_extra_meta($field_name, true, null);
370
-        }
371
-        return $column_value;
372
-    }
373
-
374
-
375
-
376
-    /**
377
-     * See $_timezone property for description of what the timezone property is for.  This SETS the timezone internally
378
-     * for being able to reference what timezone we are running conversions on when converting TO the internal timezone
379
-     * (UTC Unix Timestamp) for the object OR when converting FROM the internal timezone (UTC Unix Timestamp). This is
380
-     * available to all child classes that may be using the EE_Datetime_Field for a field data type.
381
-     *
382
-     * @access public
383
-     * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php
384
-     * @return void
385
-     * @throws \EE_Error
386
-     */
387
-    public function set_timezone($timezone = '')
388
-    {
389
-        $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone);
390
-        //make sure we clear all cached properties because they won't be relevant now
391
-        $this->_clear_cached_properties();
392
-        //make sure we update field settings and the date for all EE_Datetime_Fields
393
-        $model_fields = $this->get_model()->field_settings(false);
394
-        foreach ($model_fields as $field_name => $field_obj) {
395
-            if ($field_obj instanceof EE_Datetime_Field) {
396
-                $field_obj->set_timezone($this->_timezone);
397
-                if (isset($this->_fields[$field_name]) && $this->_fields[$field_name] instanceof DateTime) {
398
-                    $this->_fields[$field_name]->setTimezone(new DateTimeZone($this->_timezone));
399
-                }
400
-            }
401
-        }
402
-    }
403
-
404
-
405
-
406
-    /**
407
-     * This just returns whatever is set for the current timezone.
408
-     *
409
-     * @access public
410
-     * @return string timezone string
411
-     */
412
-    public function get_timezone()
413
-    {
414
-        return $this->_timezone;
415
-    }
416
-
417
-
418
-
419
-    /**
420
-     * This sets the internal date format to what is sent in to be used as the new default for the class
421
-     * internally instead of wp set date format options
422
-     *
423
-     * @since 4.6
424
-     * @param string $format should be a format recognizable by PHP date() functions.
425
-     */
426
-    public function set_date_format($format)
427
-    {
428
-        $this->_dt_frmt = $format;
429
-        //clear cached_properties because they won't be relevant now.
430
-        $this->_clear_cached_properties();
431
-    }
432
-
433
-
434
-
435
-    /**
436
-     * This sets the internal time format string to what is sent in to be used as the new default for the
437
-     * class internally instead of wp set time format options.
438
-     *
439
-     * @since 4.6
440
-     * @param string $format should be a format recognizable by PHP date() functions.
441
-     */
442
-    public function set_time_format($format)
443
-    {
444
-        $this->_tm_frmt = $format;
445
-        //clear cached_properties because they won't be relevant now.
446
-        $this->_clear_cached_properties();
447
-    }
448
-
449
-
450
-
451
-    /**
452
-     * This returns the current internal set format for the date and time formats.
453
-     *
454
-     * @param bool $full           if true (default), then return the full format.  Otherwise will return an array
455
-     *                             where the first value is the date format and the second value is the time format.
456
-     * @return mixed string|array
457
-     */
458
-    public function get_format($full = true)
459
-    {
460
-        return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt);
461
-    }
462
-
463
-
464
-
465
-    /**
466
-     * cache
467
-     * stores the passed model object on the current model object.
468
-     * In certain circumstances, we can use this cached model object instead of querying for another one entirely.
469
-     *
470
-     * @param string        $relationName    one of the keys in the _model_relations array on the model. Eg
471
-     *                                       'Registration' associated with this model object
472
-     * @param EE_Base_Class $object_to_cache that has a relation to this model object. (Eg, if this is a Transaction,
473
-     *                                       that could be a payment or a registration)
474
-     * @param null          $cache_id        a string or number that will be used as the key for any Belongs_To_Many
475
-     *                                       items which will be stored in an array on this object
476
-     * @throws EE_Error
477
-     * @return mixed    index into cache, or just TRUE if the relation is of type Belongs_To (because there's only one
478
-     *                  related thing, no array)
479
-     */
480
-    public function cache($relationName = '', $object_to_cache = null, $cache_id = null)
481
-    {
482
-        // its entirely possible that there IS no related object yet in which case there is nothing to cache.
483
-        if ( ! $object_to_cache instanceof EE_Base_Class) {
484
-            return false;
485
-        }
486
-        // also get "how" the object is related, or throw an error
487
-        if ( ! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) {
488
-            throw new EE_Error(sprintf(__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'),
489
-                $relationName, get_class($this)));
490
-        }
491
-        // how many things are related ?
492
-        if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
493
-            // if it's a "belongs to" relationship, then there's only one related model object  eg, if this is a registration, there's only 1 attendee for it
494
-            // so for these model objects just set it to be cached
495
-            $this->_model_relations[$relationName] = $object_to_cache;
496
-            $return = true;
497
-        } else {
498
-            // otherwise, this is the "many" side of a one to many relationship, so we'll add the object to the array of related objects for that type.
499
-            // eg: if this is an event, there are many registrations for that event, so we cache the registrations in an array
500
-            if ( ! is_array($this->_model_relations[$relationName])) {
501
-                // if for some reason, the cached item is a model object, then stick that in the array, otherwise start with an empty array
502
-                $this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class
503
-                    ? array($this->_model_relations[$relationName]) : array();
504
-            }
505
-            // first check for a cache_id which is normally empty
506
-            if ( ! empty($cache_id)) {
507
-                // if the cache_id exists, then it means we are purposely trying to cache this with a known key that can then be used to retrieve the object later on
508
-                $this->_model_relations[$relationName][$cache_id] = $object_to_cache;
509
-                $return = $cache_id;
510
-            } elseif ($object_to_cache->ID()) {
511
-                // OR the cached object originally came from the db, so let's just use it's PK for an ID
512
-                $this->_model_relations[$relationName][$object_to_cache->ID()] = $object_to_cache;
513
-                $return = $object_to_cache->ID();
514
-            } else {
515
-                // OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID
516
-                $this->_model_relations[$relationName][] = $object_to_cache;
517
-                // move the internal pointer to the end of the array
518
-                end($this->_model_relations[$relationName]);
519
-                // and grab the key so that we can return it
520
-                $return = key($this->_model_relations[$relationName]);
521
-            }
522
-        }
523
-        return $return;
524
-    }
525
-
526
-
527
-
528
-    /**
529
-     * For adding an item to the cached_properties property.
530
-     *
531
-     * @access protected
532
-     * @param string      $fieldname the property item the corresponding value is for.
533
-     * @param mixed       $value     The value we are caching.
534
-     * @param string|null $cache_type
535
-     * @return void
536
-     * @throws \EE_Error
537
-     */
538
-    protected function _set_cached_property($fieldname, $value, $cache_type = null)
539
-    {
540
-        //first make sure this property exists
541
-        $this->get_model()->field_settings_for($fieldname);
542
-        $cache_type = empty($cache_type) ? 'standard' : $cache_type;
543
-        $this->_cached_properties[$fieldname][$cache_type] = $value;
544
-    }
545
-
546
-
547
-
548
-    /**
549
-     * This returns the value cached property if it exists OR the actual property value if the cache doesn't exist.
550
-     * This also SETS the cache if we return the actual property!
551
-     *
552
-     * @param string $fieldname        the name of the property we're trying to retrieve
553
-     * @param bool   $pretty
554
-     * @param string $extra_cache_ref  This allows the user to specify an extra cache ref for the given property
555
-     *                                 (in cases where the same property may be used for different outputs
556
-     *                                 - i.e. datetime, money etc.)
557
-     *                                 It can also accept certain pre-defined "schema" strings
558
-     *                                 to define how to output the property.
559
-     *                                 see the field's prepare_for_pretty_echoing for what strings can be used
560
-     * @return mixed                   whatever the value for the property is we're retrieving
561
-     * @throws \EE_Error
562
-     */
563
-    protected function _get_cached_property($fieldname, $pretty = false, $extra_cache_ref = null)
564
-    {
565
-        //verify the field exists
566
-        $this->get_model()->field_settings_for($fieldname);
567
-        $cache_type = $pretty ? 'pretty' : 'standard';
568
-        $cache_type .= ! empty($extra_cache_ref) ? '_' . $extra_cache_ref : '';
569
-        if (isset($this->_cached_properties[$fieldname][$cache_type])) {
570
-            return $this->_cached_properties[$fieldname][$cache_type];
571
-        }
572
-        $field_obj = $this->get_model()->field_settings_for($fieldname);
573
-        if ($field_obj instanceof EE_Model_Field_Base) {
574
-            // If this is an EE_Datetime_Field we need to make sure timezone, formats, and output are correct
575
-            if ($field_obj instanceof EE_Datetime_Field) {
576
-                $this->_prepare_datetime_field($field_obj, $pretty, $extra_cache_ref);
577
-            }
578
-            if ( ! isset($this->_fields[$fieldname])) {
579
-                $this->_fields[$fieldname] = null;
580
-            }
581
-            $value = $pretty
582
-                ? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref)
583
-                : $field_obj->prepare_for_get($this->_fields[$fieldname]);
584
-            $this->_set_cached_property($fieldname, $value, $cache_type);
585
-            return $value;
586
-        }
587
-        return null;
588
-    }
589
-
590
-
591
-
592
-    /**
593
-     * set timezone, formats, and output for EE_Datetime_Field objects
594
-     *
595
-     * @param \EE_Datetime_Field $datetime_field
596
-     * @param bool               $pretty
597
-     * @param null $date_or_time
598
-     * @return void
599
-     * @throws \EE_Error
600
-     */
601
-    protected function _prepare_datetime_field(
602
-        EE_Datetime_Field $datetime_field,
603
-        $pretty = false,
604
-        $date_or_time = null
605
-    ) {
606
-        $datetime_field->set_timezone($this->_timezone);
607
-        $datetime_field->set_date_format($this->_dt_frmt, $pretty);
608
-        $datetime_field->set_time_format($this->_tm_frmt, $pretty);
609
-        //set the output returned
610
-        switch ($date_or_time) {
611
-            case 'D' :
612
-                $datetime_field->set_date_time_output('date');
613
-                break;
614
-            case 'T' :
615
-                $datetime_field->set_date_time_output('time');
616
-                break;
617
-            default :
618
-                $datetime_field->set_date_time_output();
619
-        }
620
-    }
621
-
622
-
623
-
624
-    /**
625
-     * This just takes care of clearing out the cached_properties
626
-     *
627
-     * @return void
628
-     */
629
-    protected function _clear_cached_properties()
630
-    {
631
-        $this->_cached_properties = array();
632
-    }
633
-
634
-
635
-
636
-    /**
637
-     * This just clears out ONE property if it exists in the cache
638
-     *
639
-     * @param  string $property_name the property to remove if it exists (from the _cached_properties array)
640
-     * @return void
641
-     */
642
-    protected function _clear_cached_property($property_name)
643
-    {
644
-        if (isset($this->_cached_properties[$property_name])) {
645
-            unset($this->_cached_properties[$property_name]);
646
-        }
647
-    }
648
-
649
-
650
-
651
-    /**
652
-     * Ensures that this related thing is a model object.
653
-     *
654
-     * @param mixed  $object_or_id EE_base_Class/int/string either a related model object, or its ID
655
-     * @param string $model_name   name of the related thing, eg 'Attendee',
656
-     * @return EE_Base_Class
657
-     * @throws \EE_Error
658
-     */
659
-    protected function ensure_related_thing_is_model_obj($object_or_id, $model_name)
660
-    {
661
-        $other_model_instance = self::_get_model_instance_with_name(
662
-            self::_get_model_classname($model_name),
663
-            $this->_timezone
664
-        );
665
-        return $other_model_instance->ensure_is_obj($object_or_id);
666
-    }
667
-
668
-
669
-
670
-    /**
671
-     * Forgets the cached model of the given relation Name. So the next time we request it,
672
-     * we will fetch it again from the database. (Handy if you know it's changed somehow).
673
-     * If a specific object is supplied, and the relationship to it is either a HasMany or HABTM,
674
-     * then only remove that one object from our cached array. Otherwise, clear the entire list
675
-     *
676
-     * @param string $relationName                         one of the keys in the _model_relations array on the model.
677
-     *                                                     Eg 'Registration'
678
-     * @param mixed  $object_to_remove_or_index_into_array or an index into the array of cached things, or NULL
679
-     *                                                     if you intend to use $clear_all = TRUE, or the relation only
680
-     *                                                     has 1 object anyways (ie, it's a BelongsToRelation)
681
-     * @param bool   $clear_all                            This flags clearing the entire cache relation property if
682
-     *                                                     this is HasMany or HABTM.
683
-     * @throws EE_Error
684
-     * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a
685
-     *                       relation from all
686
-     */
687
-    public function clear_cache($relationName, $object_to_remove_or_index_into_array = null, $clear_all = false)
688
-    {
689
-        $relationship_to_model = $this->get_model()->related_settings_for($relationName);
690
-        $index_in_cache = '';
691
-        if ( ! $relationship_to_model) {
692
-            throw new EE_Error(
693
-                sprintf(
694
-                    __("There is no relationship to %s on a %s. Cannot clear that cache", 'event_espresso'),
695
-                    $relationName,
696
-                    get_class($this)
697
-                )
698
-            );
699
-        }
700
-        if ($clear_all) {
701
-            $obj_removed = true;
702
-            $this->_model_relations[$relationName] = null;
703
-        } elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) {
704
-            $obj_removed = $this->_model_relations[$relationName];
705
-            $this->_model_relations[$relationName] = null;
706
-        } else {
707
-            if ($object_to_remove_or_index_into_array instanceof EE_Base_Class
708
-                && $object_to_remove_or_index_into_array->ID()
709
-            ) {
710
-                $index_in_cache = $object_to_remove_or_index_into_array->ID();
711
-                if (is_array($this->_model_relations[$relationName])
712
-                    && ! isset($this->_model_relations[$relationName][$index_in_cache])
713
-                ) {
714
-                    $index_found_at = null;
715
-                    //find this object in the array even though it has a different key
716
-                    foreach ($this->_model_relations[$relationName] as $index => $obj) {
717
-                        if (
718
-                            $obj instanceof EE_Base_Class
719
-                            && (
720
-                                $obj == $object_to_remove_or_index_into_array
721
-                                || $obj->ID() === $object_to_remove_or_index_into_array->ID()
722
-                            )
723
-                        ) {
724
-                            $index_found_at = $index;
725
-                            break;
726
-                        }
727
-                    }
728
-                    if ($index_found_at) {
729
-                        $index_in_cache = $index_found_at;
730
-                    } else {
731
-                        //it wasn't found. huh. well obviously it doesn't need to be removed from teh cache
732
-                        //if it wasn't in it to begin with. So we're done
733
-                        return $object_to_remove_or_index_into_array;
734
-                    }
735
-                }
736
-            } elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) {
737
-                //so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it!
738
-                foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) {
739
-                    if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) {
740
-                        $index_in_cache = $index;
741
-                    }
742
-                }
743
-            } else {
744
-                $index_in_cache = $object_to_remove_or_index_into_array;
745
-            }
746
-            //supposedly we've found it. But it could just be that the client code
747
-            //provided a bad index/object
748
-            if (
749
-            isset(
750
-                $this->_model_relations[$relationName],
751
-                $this->_model_relations[$relationName][$index_in_cache]
752
-            )
753
-            ) {
754
-                $obj_removed = $this->_model_relations[$relationName][$index_in_cache];
755
-                unset($this->_model_relations[$relationName][$index_in_cache]);
756
-            } else {
757
-                //that thing was never cached anyways.
758
-                $obj_removed = null;
759
-            }
760
-        }
761
-        return $obj_removed;
762
-    }
763
-
764
-
765
-
766
-    /**
767
-     * update_cache_after_object_save
768
-     * Allows a cached item to have it's cache ID (within the array of cached items) reset using the new ID it has
769
-     * obtained after being saved to the db
770
-     *
771
-     * @param string         $relationName       - the type of object that is cached
772
-     * @param \EE_Base_Class $newly_saved_object - the newly saved object to be re-cached
773
-     * @param string         $current_cache_id   - the ID that was used when originally caching the object
774
-     * @return boolean TRUE on success, FALSE on fail
775
-     * @throws \EE_Error
776
-     */
777
-    public function update_cache_after_object_save(
778
-        $relationName,
779
-        EE_Base_Class $newly_saved_object,
780
-        $current_cache_id = ''
781
-    ) {
782
-        // verify that incoming object is of the correct type
783
-        $obj_class = 'EE_' . $relationName;
784
-        if ($newly_saved_object instanceof $obj_class) {
785
-            /* @type EE_Base_Class $newly_saved_object */
786
-            // now get the type of relation
787
-            $relationship_to_model = $this->get_model()->related_settings_for($relationName);
788
-            // if this is a 1:1 relationship
789
-            if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
790
-                // then just replace the cached object with the newly saved object
791
-                $this->_model_relations[$relationName] = $newly_saved_object;
792
-                return true;
793
-                // or if it's some kind of sordid feral polyamorous relationship...
794
-            } elseif (is_array($this->_model_relations[$relationName])
795
-                      && isset($this->_model_relations[$relationName][$current_cache_id])
796
-            ) {
797
-                // then remove the current cached item
798
-                unset($this->_model_relations[$relationName][$current_cache_id]);
799
-                // and cache the newly saved object using it's new ID
800
-                $this->_model_relations[$relationName][$newly_saved_object->ID()] = $newly_saved_object;
801
-                return true;
802
-            }
803
-        }
804
-        return false;
805
-    }
806
-
807
-
808
-
809
-    /**
810
-     * Fetches a single EE_Base_Class on that relation. (If the relation is of type
811
-     * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects)
812
-     *
813
-     * @param string $relationName
814
-     * @return EE_Base_Class
815
-     */
816
-    public function get_one_from_cache($relationName)
817
-    {
818
-        $cached_array_or_object = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName]
819
-            : null;
820
-        if (is_array($cached_array_or_object)) {
821
-            return array_shift($cached_array_or_object);
822
-        } else {
823
-            return $cached_array_or_object;
824
-        }
825
-    }
826
-
827
-
828
-
829
-    /**
830
-     * Fetches a single EE_Base_Class on that relation. (If the relation is of type
831
-     * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects)
832
-     *
833
-     * @param string $relationName
834
-     * @throws \EE_Error
835
-     * @return EE_Base_Class[] NOT necessarily indexed by primary keys
836
-     */
837
-    public function get_all_from_cache($relationName)
838
-    {
839
-        $objects = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName] : array();
840
-        // if the result is not an array, but exists, make it an array
841
-        $objects = is_array($objects) ? $objects : array($objects);
842
-        //bugfix for https://events.codebasehq.com/projects/event-espresso/tickets/7143
843
-        //basically, if this model object was stored in the session, and these cached model objects
844
-        //already have IDs, let's make sure they're in their model's entity mapper
845
-        //otherwise we will have duplicates next time we call
846
-        // EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() );
847
-        $model = EE_Registry::instance()->load_model($relationName);
848
-        foreach ($objects as $model_object) {
849
-            if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) {
850
-                //ensure its in the map if it has an ID; otherwise it will be added to the map when its saved
851
-                if ($model_object->ID()) {
852
-                    $model->add_to_entity_map($model_object);
853
-                }
854
-            } else {
855
-                throw new EE_Error(
856
-                    sprintf(
857
-                        __(
858
-                            'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object',
859
-                            'event_espresso'
860
-                        ),
861
-                        $relationName,
862
-                        gettype($model_object)
863
-                    )
864
-                );
865
-            }
866
-        }
867
-        return $objects;
868
-    }
869
-
870
-
871
-
872
-    /**
873
-     * Returns the next x number of EE_Base_Class objects in sequence from this object as found in the database
874
-     * matching the given query conditions.
875
-     *
876
-     * @param null  $field_to_order_by  What field is being used as the reference point.
877
-     * @param int   $limit              How many objects to return.
878
-     * @param array $query_params       Any additional conditions on the query.
879
-     * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
880
-     *                                  you can indicate just the columns you want returned
881
-     * @return array|EE_Base_Class[]
882
-     * @throws \EE_Error
883
-     */
884
-    public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null)
885
-    {
886
-        $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
887
-            ? $this->get_model()->get_primary_key_field()->get_name()
888
-            : $field_to_order_by;
889
-        $current_value = ! empty($field) ? $this->get($field) : null;
890
-        if (empty($field) || empty($current_value)) {
891
-            return array();
892
-        }
893
-        return $this->get_model()->next_x($current_value, $field, $limit, $query_params, $columns_to_select);
894
-    }
895
-
896
-
897
-
898
-    /**
899
-     * Returns the previous x number of EE_Base_Class objects in sequence from this object as found in the database
900
-     * matching the given query conditions.
901
-     *
902
-     * @param null  $field_to_order_by  What field is being used as the reference point.
903
-     * @param int   $limit              How many objects to return.
904
-     * @param array $query_params       Any additional conditions on the query.
905
-     * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
906
-     *                                  you can indicate just the columns you want returned
907
-     * @return array|EE_Base_Class[]
908
-     * @throws \EE_Error
909
-     */
910
-    public function previous_x(
911
-        $field_to_order_by = null,
912
-        $limit = 1,
913
-        $query_params = array(),
914
-        $columns_to_select = null
915
-    ) {
916
-        $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
917
-            ? $this->get_model()->get_primary_key_field()->get_name()
918
-            : $field_to_order_by;
919
-        $current_value = ! empty($field) ? $this->get($field) : null;
920
-        if (empty($field) || empty($current_value)) {
921
-            return array();
922
-        }
923
-        return $this->get_model()->previous_x($current_value, $field, $limit, $query_params, $columns_to_select);
924
-    }
925
-
926
-
927
-
928
-    /**
929
-     * Returns the next EE_Base_Class object in sequence from this object as found in the database
930
-     * matching the given query conditions.
931
-     *
932
-     * @param null  $field_to_order_by  What field is being used as the reference point.
933
-     * @param array $query_params       Any additional conditions on the query.
934
-     * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
935
-     *                                  you can indicate just the columns you want returned
936
-     * @return array|EE_Base_Class
937
-     * @throws \EE_Error
938
-     */
939
-    public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null)
940
-    {
941
-        $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
942
-            ? $this->get_model()->get_primary_key_field()->get_name()
943
-            : $field_to_order_by;
944
-        $current_value = ! empty($field) ? $this->get($field) : null;
945
-        if (empty($field) || empty($current_value)) {
946
-            return array();
947
-        }
948
-        return $this->get_model()->next($current_value, $field, $query_params, $columns_to_select);
949
-    }
950
-
951
-
952
-
953
-    /**
954
-     * Returns the previous EE_Base_Class object in sequence from this object as found in the database
955
-     * matching the given query conditions.
956
-     *
957
-     * @param null  $field_to_order_by  What field is being used as the reference point.
958
-     * @param array $query_params       Any additional conditions on the query.
959
-     * @param null  $columns_to_select  If left null, then an EE_Base_Class object is returned, otherwise
960
-     *                                  you can indicate just the column you want returned
961
-     * @return array|EE_Base_Class
962
-     * @throws \EE_Error
963
-     */
964
-    public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null)
965
-    {
966
-        $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
967
-            ? $this->get_model()->get_primary_key_field()->get_name()
968
-            : $field_to_order_by;
969
-        $current_value = ! empty($field) ? $this->get($field) : null;
970
-        if (empty($field) || empty($current_value)) {
971
-            return array();
972
-        }
973
-        return $this->get_model()->previous($current_value, $field, $query_params, $columns_to_select);
974
-    }
975
-
976
-
977
-
978
-    /**
979
-     * Overrides parent because parent expects old models.
980
-     * This also doesn't do any validation, and won't work for serialized arrays
981
-     *
982
-     * @param string $field_name
983
-     * @param mixed  $field_value_from_db
984
-     * @throws \EE_Error
985
-     */
986
-    public function set_from_db($field_name, $field_value_from_db)
987
-    {
988
-        $field_obj = $this->get_model()->field_settings_for($field_name);
989
-        if ($field_obj instanceof EE_Model_Field_Base) {
990
-            //you would think the DB has no NULLs for non-null label fields right? wrong!
991
-            //eg, a CPT model object could have an entry in the posts table, but no
992
-            //entry in the meta table. Meaning that all its columns in the meta table
993
-            //are null! yikes! so when we find one like that, use defaults for its meta columns
994
-            if ($field_value_from_db === null) {
995
-                if ($field_obj->is_nullable()) {
996
-                    //if the field allows nulls, then let it be null
997
-                    $field_value = null;
998
-                } else {
999
-                    $field_value = $field_obj->get_default_value();
1000
-                }
1001
-            } else {
1002
-                $field_value = $field_obj->prepare_for_set_from_db($field_value_from_db);
1003
-            }
1004
-            $this->_fields[$field_name] = $field_value;
1005
-            $this->_clear_cached_property($field_name);
1006
-        }
1007
-    }
1008
-
1009
-
1010
-
1011
-    /**
1012
-     * verifies that the specified field is of the correct type
1013
-     *
1014
-     * @param string $field_name
1015
-     * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1016
-     *                                (in cases where the same property may be used for different outputs
1017
-     *                                - i.e. datetime, money etc.)
1018
-     * @return mixed
1019
-     * @throws \EE_Error
1020
-     */
1021
-    public function get($field_name, $extra_cache_ref = null)
1022
-    {
1023
-        return $this->_get_cached_property($field_name, false, $extra_cache_ref);
1024
-    }
1025
-
1026
-
1027
-
1028
-    /**
1029
-     * This method simply returns the RAW unprocessed value for the given property in this class
1030
-     *
1031
-     * @param  string $field_name A valid fieldname
1032
-     * @return mixed              Whatever the raw value stored on the property is.
1033
-     * @throws EE_Error if fieldSettings is misconfigured or the field doesn't exist.
1034
-     */
1035
-    public function get_raw($field_name)
1036
-    {
1037
-        $field_settings = $this->get_model()->field_settings_for($field_name);
1038
-        return $field_settings instanceof EE_Datetime_Field && $this->_fields[$field_name] instanceof DateTime
1039
-            ? $this->_fields[$field_name]->format('U')
1040
-            : $this->_fields[$field_name];
1041
-    }
1042
-
1043
-
1044
-
1045
-    /**
1046
-     * This is used to return the internal DateTime object used for a field that is a
1047
-     * EE_Datetime_Field.
1048
-     *
1049
-     * @param string $field_name               The field name retrieving the DateTime object.
1050
-     * @return mixed null | false | DateTime  If the requested field is NOT a EE_Datetime_Field then
1051
-     * @throws \EE_Error
1052
-     *                                         an error is set and false returned.  If the field IS an
1053
-     *                                         EE_Datetime_Field and but the field value is null, then
1054
-     *                                         just null is returned (because that indicates that likely
1055
-     *                                         this field is nullable).
1056
-     */
1057
-    public function get_DateTime_object($field_name)
1058
-    {
1059
-        $field_settings = $this->get_model()->field_settings_for($field_name);
1060
-        if ( ! $field_settings instanceof EE_Datetime_Field) {
1061
-            EE_Error::add_error(
1062
-                sprintf(
1063
-                    __(
1064
-                        'The field %s is not an EE_Datetime_Field field.  There is no DateTime object stored on this field type.',
1065
-                        'event_espresso'
1066
-                    ),
1067
-                    $field_name
1068
-                ),
1069
-                __FILE__,
1070
-                __FUNCTION__,
1071
-                __LINE__
1072
-            );
1073
-            return false;
1074
-        }
1075
-        return $this->_fields[$field_name];
1076
-    }
1077
-
1078
-
1079
-
1080
-    /**
1081
-     * To be used in template to immediately echo out the value, and format it for output.
1082
-     * Eg, should call stripslashes and whatnot before echoing
1083
-     *
1084
-     * @param string $field_name      the name of the field as it appears in the DB
1085
-     * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1086
-     *                                (in cases where the same property may be used for different outputs
1087
-     *                                - i.e. datetime, money etc.)
1088
-     * @return void
1089
-     * @throws \EE_Error
1090
-     */
1091
-    public function e($field_name, $extra_cache_ref = null)
1092
-    {
1093
-        echo $this->get_pretty($field_name, $extra_cache_ref);
1094
-    }
1095
-
1096
-
1097
-
1098
-    /**
1099
-     * Exactly like e(), echoes out the field, but sets its schema to 'form_input', so that it
1100
-     * can be easily used as the value of form input.
1101
-     *
1102
-     * @param string $field_name
1103
-     * @return void
1104
-     * @throws \EE_Error
1105
-     */
1106
-    public function f($field_name)
1107
-    {
1108
-        $this->e($field_name, 'form_input');
1109
-    }
1110
-
1111
-
1112
-
1113
-    /**
1114
-     * @param string $field_name
1115
-     * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1116
-     *                                (in cases where the same property may be used for different outputs
1117
-     *                                - i.e. datetime, money etc.)
1118
-     * @return mixed
1119
-     * @throws \EE_Error
1120
-     */
1121
-    public function get_pretty($field_name, $extra_cache_ref = null)
1122
-    {
1123
-        return $this->_get_cached_property($field_name, true, $extra_cache_ref);
1124
-    }
1125
-
1126
-
1127
-
1128
-    /**
1129
-     * This simply returns the datetime for the given field name
1130
-     * Note: this protected function is called by the wrapper get_date or get_time or get_datetime functions
1131
-     * (and the equivalent e_date, e_time, e_datetime).
1132
-     *
1133
-     * @access   protected
1134
-     * @param string   $field_name   Field on the instantiated EE_Base_Class child object
1135
-     * @param string   $dt_frmt      valid datetime format used for date
1136
-     *                               (if '' then we just use the default on the field,
1137
-     *                               if NULL we use the last-used format)
1138
-     * @param string   $tm_frmt      Same as above except this is for time format
1139
-     * @param string   $date_or_time if NULL then both are returned, otherwise "D" = only date and "T" = only time.
1140
-     * @param  boolean $echo         Whether the dtt is echoing using pretty echoing or just returned using vanilla get
1141
-     * @return string|bool|EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown
1142
-     *                               if field is not a valid dtt field, or void if echoing
1143
-     * @throws \EE_Error
1144
-     */
1145
-    protected function _get_datetime($field_name, $dt_frmt = '', $tm_frmt = '', $date_or_time = '', $echo = false)
1146
-    {
1147
-        // clear cached property
1148
-        $this->_clear_cached_property($field_name);
1149
-        //reset format properties because they are used in get()
1150
-        $this->_dt_frmt = $dt_frmt !== '' ? $dt_frmt : $this->_dt_frmt;
1151
-        $this->_tm_frmt = $tm_frmt !== '' ? $tm_frmt : $this->_tm_frmt;
1152
-        if ($echo) {
1153
-            $this->e($field_name, $date_or_time);
1154
-            return '';
1155
-        }
1156
-        return $this->get($field_name, $date_or_time);
1157
-    }
1158
-
1159
-
1160
-
1161
-    /**
1162
-     * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the date
1163
-     * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1164
-     * other echoes the pretty value for dtt)
1165
-     *
1166
-     * @param  string $field_name name of model object datetime field holding the value
1167
-     * @param  string $format     format for the date returned (if NULL we use default in dt_frmt property)
1168
-     * @return string            datetime value formatted
1169
-     * @throws \EE_Error
1170
-     */
1171
-    public function get_date($field_name, $format = '')
1172
-    {
1173
-        return $this->_get_datetime($field_name, $format, null, 'D');
1174
-    }
1175
-
1176
-
1177
-
1178
-    /**
1179
-     * @param      $field_name
1180
-     * @param string $format
1181
-     * @throws \EE_Error
1182
-     */
1183
-    public function e_date($field_name, $format = '')
1184
-    {
1185
-        $this->_get_datetime($field_name, $format, null, 'D', true);
1186
-    }
1187
-
1188
-
1189
-
1190
-    /**
1191
-     * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the time
1192
-     * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1193
-     * other echoes the pretty value for dtt)
1194
-     *
1195
-     * @param  string $field_name name of model object datetime field holding the value
1196
-     * @param  string $format     format for the time returned ( if NULL we use default in tm_frmt property)
1197
-     * @return string             datetime value formatted
1198
-     * @throws \EE_Error
1199
-     */
1200
-    public function get_time($field_name, $format = '')
1201
-    {
1202
-        return $this->_get_datetime($field_name, null, $format, 'T');
1203
-    }
1204
-
1205
-
1206
-
1207
-    /**
1208
-     * @param      $field_name
1209
-     * @param string $format
1210
-     * @throws \EE_Error
1211
-     */
1212
-    public function e_time($field_name, $format = '')
1213
-    {
1214
-        $this->_get_datetime($field_name, null, $format, 'T', true);
1215
-    }
1216
-
1217
-
1218
-
1219
-    /**
1220
-     * below are wrapper functions for the various datetime outputs that can be obtained for returning the date AND
1221
-     * time portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1222
-     * other echoes the pretty value for dtt)
1223
-     *
1224
-     * @param  string $field_name name of model object datetime field holding the value
1225
-     * @param  string $dt_frmt    format for the date returned (if NULL we use default in dt_frmt property)
1226
-     * @param  string $tm_frmt    format for the time returned (if NULL we use default in tm_frmt property)
1227
-     * @return string             datetime value formatted
1228
-     * @throws \EE_Error
1229
-     */
1230
-    public function get_datetime($field_name, $dt_frmt = '', $tm_frmt = '')
1231
-    {
1232
-        return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt);
1233
-    }
1234
-
1235
-
1236
-
1237
-    /**
1238
-     * @param string $field_name
1239
-     * @param string $dt_frmt
1240
-     * @param string $tm_frmt
1241
-     * @throws \EE_Error
1242
-     */
1243
-    public function e_datetime($field_name, $dt_frmt = '', $tm_frmt = '')
1244
-    {
1245
-        $this->_get_datetime($field_name, $dt_frmt, $tm_frmt, null, true);
1246
-    }
1247
-
1248
-
1249
-
1250
-    /**
1251
-     * Get the i8ln value for a date using the WordPress @see date_i18n function.
1252
-     *
1253
-     * @param string $field_name The EE_Datetime_Field reference for the date being retrieved.
1254
-     * @param string $format     PHP valid date/time string format.  If none is provided then the internal set format
1255
-     *                           on the object will be used.
1256
-     * @return string Date and time string in set locale or false if no field exists for the given
1257
-     * @throws \EE_Error
1258
-     *                           field name.
1259
-     */
1260
-    public function get_i18n_datetime($field_name, $format = '')
1261
-    {
1262
-        $format = empty($format) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format;
1263
-        return date_i18n(
1264
-            $format,
1265
-            EEH_DTT_Helper::get_timestamp_with_offset($this->get_raw($field_name), $this->_timezone)
1266
-        );
1267
-    }
1268
-
1269
-
1270
-
1271
-    /**
1272
-     * This method validates whether the given field name is a valid field on the model object as well as it is of a
1273
-     * type EE_Datetime_Field.  On success there will be returned the field settings.  On fail an EE_Error exception is
1274
-     * thrown.
1275
-     *
1276
-     * @param  string $field_name The field name being checked
1277
-     * @throws EE_Error
1278
-     * @return EE_Datetime_Field
1279
-     */
1280
-    protected function _get_dtt_field_settings($field_name)
1281
-    {
1282
-        $field = $this->get_model()->field_settings_for($field_name);
1283
-        //check if field is dtt
1284
-        if ($field instanceof EE_Datetime_Field) {
1285
-            return $field;
1286
-        } else {
1287
-            throw new EE_Error(sprintf(__('The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field.  Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor',
1288
-                'event_espresso'), $field_name, self::_get_model_classname(get_class($this))));
1289
-        }
1290
-    }
1291
-
1292
-
1293
-
1294
-
1295
-    /**
1296
-     * NOTE ABOUT BELOW:
1297
-     * These convenience date and time setters are for setting date and time independently.  In other words you might
1298
-     * want to change the time on a datetime_field but leave the date the same (or vice versa). IF on the other hand
1299
-     * you want to set both date and time at the same time, you can just use the models default set($fieldname,$value)
1300
-     * method and make sure you send the entire datetime value for setting.
1301
-     */
1302
-    /**
1303
-     * sets the time on a datetime property
1304
-     *
1305
-     * @access protected
1306
-     * @param string|Datetime $time      a valid time string for php datetime functions (or DateTime object)
1307
-     * @param string          $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field)
1308
-     * @throws \EE_Error
1309
-     */
1310
-    protected function _set_time_for($time, $fieldname)
1311
-    {
1312
-        $this->_set_date_time('T', $time, $fieldname);
1313
-    }
1314
-
1315
-
1316
-
1317
-    /**
1318
-     * sets the date on a datetime property
1319
-     *
1320
-     * @access protected
1321
-     * @param string|DateTime $date      a valid date string for php datetime functions ( or DateTime object)
1322
-     * @param string          $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field)
1323
-     * @throws \EE_Error
1324
-     */
1325
-    protected function _set_date_for($date, $fieldname)
1326
-    {
1327
-        $this->_set_date_time('D', $date, $fieldname);
1328
-    }
1329
-
1330
-
1331
-
1332
-    /**
1333
-     * This takes care of setting a date or time independently on a given model object property. This method also
1334
-     * verifies that the given fieldname matches a model object property and is for a EE_Datetime_Field field
1335
-     *
1336
-     * @access protected
1337
-     * @param string          $what           "T" for time, 'B' for both, 'D' for Date.
1338
-     * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object)
1339
-     * @param string          $fieldname      the name of the field the date OR time is being set on (must match a
1340
-     *                                        EE_Datetime_Field property)
1341
-     * @throws \EE_Error
1342
-     */
1343
-    protected function _set_date_time($what = 'T', $datetime_value, $fieldname)
1344
-    {
1345
-        $field = $this->_get_dtt_field_settings($fieldname);
1346
-        $field->set_timezone($this->_timezone);
1347
-        $field->set_date_format($this->_dt_frmt);
1348
-        $field->set_time_format($this->_tm_frmt);
1349
-        switch ($what) {
1350
-            case 'T' :
1351
-                $this->_fields[$fieldname] = $field->prepare_for_set_with_new_time(
1352
-                    $datetime_value,
1353
-                    $this->_fields[$fieldname]
1354
-                );
1355
-                break;
1356
-            case 'D' :
1357
-                $this->_fields[$fieldname] = $field->prepare_for_set_with_new_date(
1358
-                    $datetime_value,
1359
-                    $this->_fields[$fieldname]
1360
-                );
1361
-                break;
1362
-            case 'B' :
1363
-                $this->_fields[$fieldname] = $field->prepare_for_set($datetime_value);
1364
-                break;
1365
-        }
1366
-        $this->_clear_cached_property($fieldname);
1367
-    }
1368
-
1369
-
1370
-
1371
-    /**
1372
-     * This will return a timestamp for the website timezone but ONLY when the current website timezone is different
1373
-     * than the timezone set for the website. NOTE, this currently only works well with methods that return values.  If
1374
-     * you use it with methods that echo values the $_timestamp property may not get reset to its original value and
1375
-     * that could lead to some unexpected results!
1376
-     *
1377
-     * @access public
1378
-     * @param string               $field_name This is the name of the field on the object that contains the date/time
1379
-     *                                         value being returned.
1380
-     * @param string               $callback   must match a valid method in this class (defaults to get_datetime)
1381
-     * @param mixed (array|string) $args       This is the arguments that will be passed to the callback.
1382
-     * @param string               $prepend    You can include something to prepend on the timestamp
1383
-     * @param string               $append     You can include something to append on the timestamp
1384
-     * @throws EE_Error
1385
-     * @return string timestamp
1386
-     */
1387
-    public function display_in_my_timezone(
1388
-        $field_name,
1389
-        $callback = 'get_datetime',
1390
-        $args = null,
1391
-        $prepend = '',
1392
-        $append = ''
1393
-    ) {
1394
-        $timezone = EEH_DTT_Helper::get_timezone();
1395
-        if ($timezone === $this->_timezone) {
1396
-            return '';
1397
-        }
1398
-        $original_timezone = $this->_timezone;
1399
-        $this->set_timezone($timezone);
1400
-        $fn = (array)$field_name;
1401
-        $args = array_merge($fn, (array)$args);
1402
-        if ( ! method_exists($this, $callback)) {
1403
-            throw new EE_Error(
1404
-                sprintf(
1405
-                    __(
1406
-                        'The method named "%s" given as the callback param in "display_in_my_timezone" does not exist.  Please check your spelling',
1407
-                        'event_espresso'
1408
-                    ),
1409
-                    $callback
1410
-                )
1411
-            );
1412
-        }
1413
-        $args = (array)$args;
1414
-        $return = $prepend . call_user_func_array(array($this, $callback), $args) . $append;
1415
-        $this->set_timezone($original_timezone);
1416
-        return $return;
1417
-    }
1418
-
1419
-
1420
-
1421
-    /**
1422
-     * Deletes this model object.
1423
-     * This calls the `EE_Base_Class::_delete` method.  Child classes wishing to change default behaviour should
1424
-     * override
1425
-     * `EE_Base_Class::_delete` NOT this class.
1426
-     *
1427
-     * @return boolean | int
1428
-     * @throws \EE_Error
1429
-     */
1430
-    public function delete()
1431
-    {
1432
-        /**
1433
-         * Called just before the `EE_Base_Class::_delete` method call.
1434
-         * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
1435
-         * should be aware that `_delete` may not always result in a permanent delete.  For example, `EE_Soft_Delete_Base_Class::_delete`
1436
-         * soft deletes (trash) the object and does not permanently delete it.
1437
-         *
1438
-         * @param EE_Base_Class $model_object about to be 'deleted'
1439
-         */
1440
-        do_action('AHEE__EE_Base_Class__delete__before', $this);
1441
-        $result = $this->_delete();
1442
-        /**
1443
-         * Called just after the `EE_Base_Class::_delete` method call.
1444
-         * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
1445
-         * should be aware that `_delete` may not always result in a permanent delete.  For example `EE_Soft_Base_Class::_delete`
1446
-         * soft deletes (trash) the object and does not permanently delete it.
1447
-         *
1448
-         * @param EE_Base_Class $model_object that was just 'deleted'
1449
-         * @param boolean       $result
1450
-         */
1451
-        do_action('AHEE__EE_Base_Class__delete__end', $this, $result);
1452
-        return $result;
1453
-    }
1454
-
1455
-
1456
-
1457
-    /**
1458
-     * Calls the specific delete method for the instantiated class.
1459
-     * This method is called by the public `EE_Base_Class::delete` method.  Any child classes desiring to override
1460
-     * default functionality for "delete" (which is to call `permanently_delete`) should override this method NOT
1461
-     * `EE_Base_Class::delete`
1462
-     *
1463
-     * @return bool|int
1464
-     * @throws \EE_Error
1465
-     */
1466
-    protected function _delete()
1467
-    {
1468
-        return $this->delete_permanently();
1469
-    }
1470
-
1471
-
1472
-
1473
-    /**
1474
-     * Deletes this model object permanently from db (but keep in mind related models my block the delete and return an
1475
-     * error)
1476
-     *
1477
-     * @return bool | int
1478
-     * @throws \EE_Error
1479
-     */
1480
-    public function delete_permanently()
1481
-    {
1482
-        /**
1483
-         * Called just before HARD deleting a model object
1484
-         *
1485
-         * @param EE_Base_Class $model_object about to be 'deleted'
1486
-         */
1487
-        do_action('AHEE__EE_Base_Class__delete_permanently__before', $this);
1488
-        $model = $this->get_model();
1489
-        $result = $model->delete_permanently_by_ID($this->ID());
1490
-        $this->refresh_cache_of_related_objects();
1491
-        /**
1492
-         * Called just after HARD deleting a model object
1493
-         *
1494
-         * @param EE_Base_Class $model_object that was just 'deleted'
1495
-         * @param boolean       $result
1496
-         */
1497
-        do_action('AHEE__EE_Base_Class__delete_permanently__end', $this, $result);
1498
-        return $result;
1499
-    }
1500
-
1501
-
1502
-
1503
-    /**
1504
-     * When this model object is deleted, it may still be cached on related model objects. This clears the cache of
1505
-     * related model objects
1506
-     *
1507
-     * @throws \EE_Error
1508
-     */
1509
-    public function refresh_cache_of_related_objects()
1510
-    {
1511
-        foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1512
-            if ( ! empty($this->_model_relations[$relation_name])) {
1513
-                $related_objects = $this->_model_relations[$relation_name];
1514
-                if ($relation_obj instanceof EE_Belongs_To_Relation) {
1515
-                    //this relation only stores a single model object, not an array
1516
-                    //but let's make it consistent
1517
-                    $related_objects = array($related_objects);
1518
-                }
1519
-                foreach ($related_objects as $related_object) {
1520
-                    //only refresh their cache if they're in memory
1521
-                    if ($related_object instanceof EE_Base_Class) {
1522
-                        $related_object->clear_cache($this->get_model()->get_this_model_name(), $this);
1523
-                    }
1524
-                }
1525
-            }
1526
-        }
1527
-    }
1528
-
1529
-
1530
-
1531
-    /**
1532
-     *        Saves this object to the database. An array may be supplied to set some values on this
1533
-     * object just before saving.
1534
-     *
1535
-     * @access public
1536
-     * @param array $set_cols_n_values keys are field names, values are their new values,
1537
-     *                                 if provided during the save() method (often client code will change the fields'
1538
-     *                                 values before calling save)
1539
-     * @throws \EE_Error
1540
-     * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object
1541
-     *                                 isn't allowed to persist (as determined by EE_Base_Class::allow_persist())
1542
-     */
1543
-    public function save($set_cols_n_values = array())
1544
-    {
1545
-        /**
1546
-         * Filters the fields we're about to save on the model object
1547
-         *
1548
-         * @param array         $set_cols_n_values
1549
-         * @param EE_Base_Class $model_object
1550
-         */
1551
-        $set_cols_n_values = (array)apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values,
1552
-            $this);
1553
-        //set attributes as provided in $set_cols_n_values
1554
-        foreach ($set_cols_n_values as $column => $value) {
1555
-            $this->set($column, $value);
1556
-        }
1557
-        /**
1558
-         * Saving a model object.
1559
-         * Before we perform a save, this action is fired.
1560
-         *
1561
-         * @param EE_Base_Class $model_object the model object about to be saved.
1562
-         */
1563
-        do_action('AHEE__EE_Base_Class__save__begin', $this);
1564
-        if ( ! $this->allow_persist()) {
1565
-            return 0;
1566
-        }
1567
-        //now get current attribute values
1568
-        $save_cols_n_values = $this->_fields;
1569
-        //if the object already has an ID, update it. Otherwise, insert it
1570
-        //also: change the assumption about values passed to the model NOT being prepare dby the model object. They have been
1571
-        $old_assumption_concerning_value_preparation = $this->get_model()
1572
-                                                            ->get_assumption_concerning_values_already_prepared_by_model_object();
1573
-        $this->get_model()->assume_values_already_prepared_by_model_object(true);
1574
-        //does this model have an autoincrement PK?
1575
-        if ($this->get_model()->has_primary_key_field()) {
1576
-            if ($this->get_model()->get_primary_key_field()->is_auto_increment()) {
1577
-                //ok check if it's set, if so: update; if not, insert
1578
-                if ( ! empty($save_cols_n_values[self::_get_primary_key_name(get_class($this))])) {
1579
-                    $results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1580
-                } else {
1581
-                    unset($save_cols_n_values[self::_get_primary_key_name(get_class($this))]);
1582
-                    $results = $this->get_model()->insert($save_cols_n_values);
1583
-                    if ($results) {
1584
-                        //if successful, set the primary key
1585
-                        //but don't use the normal SET method, because it will check if
1586
-                        //an item with the same ID exists in the mapper & db, then
1587
-                        //will find it in the db (because we just added it) and THAT object
1588
-                        //will get added to the mapper before we can add this one!
1589
-                        //but if we just avoid using the SET method, all that headache can be avoided
1590
-                        $pk_field_name = self::_get_primary_key_name(get_class($this));
1591
-                        $this->_fields[$pk_field_name] = $results;
1592
-                        $this->_clear_cached_property($pk_field_name);
1593
-                        $this->get_model()->add_to_entity_map($this);
1594
-                        $this->_update_cached_related_model_objs_fks();
1595
-                    }
1596
-                }
1597
-            } else {//PK is NOT auto-increment
1598
-                //so check if one like it already exists in the db
1599
-                if ($this->get_model()->exists_by_ID($this->ID())) {
1600
-                    if (WP_DEBUG && ! $this->in_entity_map()) {
1601
-                        throw new EE_Error(
1602
-                            sprintf(
1603
-                                __('Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s',
1604
-                                    'event_espresso'),
1605
-                                get_class($this),
1606
-                                get_class($this->get_model()) . '::instance()->add_to_entity_map()',
1607
-                                get_class($this->get_model()) . '::instance()->get_one_by_ID()',
1608
-                                '<br />'
1609
-                            )
1610
-                        );
1611
-                    }
1612
-                    $results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1613
-                } else {
1614
-                    $results = $this->get_model()->insert($save_cols_n_values);
1615
-                    $this->_update_cached_related_model_objs_fks();
1616
-                }
1617
-            }
1618
-        } else {//there is NO primary key
1619
-            $already_in_db = false;
1620
-            foreach ($this->get_model()->unique_indexes() as $index) {
1621
-                $uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields());
1622
-                if ($this->get_model()->exists(array($uniqueness_where_params))) {
1623
-                    $already_in_db = true;
1624
-                }
1625
-            }
1626
-            if ($already_in_db) {
1627
-                $combined_pk_fields_n_values = array_intersect_key($save_cols_n_values,
1628
-                    $this->get_model()->get_combined_primary_key_fields());
1629
-                $results = $this->get_model()->update($save_cols_n_values, $combined_pk_fields_n_values);
1630
-            } else {
1631
-                $results = $this->get_model()->insert($save_cols_n_values);
1632
-            }
1633
-        }
1634
-        //restore the old assumption about values being prepared by the model object
1635
-        $this->get_model()
1636
-             ->assume_values_already_prepared_by_model_object($old_assumption_concerning_value_preparation);
1637
-        /**
1638
-         * After saving the model object this action is called
1639
-         *
1640
-         * @param EE_Base_Class $model_object which was just saved
1641
-         * @param boolean|int   $results      if it were updated, TRUE or FALSE; if it were newly inserted
1642
-         *                                    the new ID (or 0 if an error occurred and it wasn't updated)
1643
-         */
1644
-        do_action('AHEE__EE_Base_Class__save__end', $this, $results);
1645
-        return $results;
1646
-    }
1647
-
1648
-
1649
-
1650
-    /**
1651
-     * Updates the foreign key on related models objects pointing to this to have this model object's ID
1652
-     * as their foreign key.  If the cached related model objects already exist in the db, saves them (so that the DB
1653
-     * is consistent) Especially useful in case we JUST added this model object ot the database and we want to let its
1654
-     * cached relations with foreign keys to it know about that change. Eg: we've created a transaction but haven't
1655
-     * saved it to the db. We also create a registration and don't save it to the DB, but we DO cache it on the
1656
-     * transaction. Now, when we save the transaction, the registration's TXN_ID will be automatically updated, whether
1657
-     * or not they exist in the DB (if they do, their DB records will be automatically updated)
1658
-     *
1659
-     * @return void
1660
-     * @throws \EE_Error
1661
-     */
1662
-    protected function _update_cached_related_model_objs_fks()
1663
-    {
1664
-        foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1665
-            if ($relation_obj instanceof EE_Has_Many_Relation) {
1666
-                foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) {
1667
-                    $fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to(
1668
-                        $this->get_model()->get_this_model_name()
1669
-                    );
1670
-                    $related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID());
1671
-                    if ($related_model_obj_in_cache->ID()) {
1672
-                        $related_model_obj_in_cache->save();
1673
-                    }
1674
-                }
1675
-            }
1676
-        }
1677
-    }
1678
-
1679
-
1680
-
1681
-    /**
1682
-     * Saves this model object and its NEW cached relations to the database.
1683
-     * (Meaning, for now, IT DOES NOT WORK if the cached items already exist in the DB.
1684
-     * In order for that to work, we would need to mark model objects as dirty/clean...
1685
-     * because otherwise, there's a potential for infinite looping of saving
1686
-     * Saves the cached related model objects, and ensures the relation between them
1687
-     * and this object and properly setup
1688
-     *
1689
-     * @return int ID of new model object on save; 0 on failure+
1690
-     * @throws \EE_Error
1691
-     */
1692
-    public function save_new_cached_related_model_objs()
1693
-    {
1694
-        //make sure this has been saved
1695
-        if ( ! $this->ID()) {
1696
-            $id = $this->save();
1697
-        } else {
1698
-            $id = $this->ID();
1699
-        }
1700
-        //now save all the NEW cached model objects  (ie they don't exist in the DB)
1701
-        foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) {
1702
-            if ($this->_model_relations[$relationName]) {
1703
-                //is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation)
1704
-                //or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)?
1705
-                if ($relationObj instanceof EE_Belongs_To_Relation) {
1706
-                    //add a relation to that relation type (which saves the appropriate thing in the process)
1707
-                    //but ONLY if it DOES NOT exist in the DB
1708
-                    /* @var $related_model_obj EE_Base_Class */
1709
-                    $related_model_obj = $this->_model_relations[$relationName];
1710
-                    //					if( ! $related_model_obj->ID()){
1711
-                    $this->_add_relation_to($related_model_obj, $relationName);
1712
-                    $related_model_obj->save_new_cached_related_model_objs();
1713
-                    //					}
1714
-                } else {
1715
-                    foreach ($this->_model_relations[$relationName] as $related_model_obj) {
1716
-                        //add a relation to that relation type (which saves the appropriate thing in the process)
1717
-                        //but ONLY if it DOES NOT exist in the DB
1718
-                        //						if( ! $related_model_obj->ID()){
1719
-                        $this->_add_relation_to($related_model_obj, $relationName);
1720
-                        $related_model_obj->save_new_cached_related_model_objs();
1721
-                        //						}
1722
-                    }
1723
-                }
1724
-            }
1725
-        }
1726
-        return $id;
1727
-    }
1728
-
1729
-
1730
-
1731
-    /**
1732
-     * for getting a model while instantiated.
1733
-     *
1734
-     * @return \EEM_Base | \EEM_CPT_Base
1735
-     */
1736
-    public function get_model()
1737
-    {
1738
-        $modelName = self::_get_model_classname(get_class($this));
1739
-        return self::_get_model_instance_with_name($modelName, $this->_timezone);
1740
-    }
1741
-
1742
-
1743
-
1744
-    /**
1745
-     * @param $props_n_values
1746
-     * @param $classname
1747
-     * @return mixed bool|EE_Base_Class|EEM_CPT_Base
1748
-     * @throws \EE_Error
1749
-     */
1750
-    protected static function _get_object_from_entity_mapper($props_n_values, $classname)
1751
-    {
1752
-        //TODO: will not work for Term_Relationships because they have no PK!
1753
-        $primary_id_ref = self::_get_primary_key_name($classname);
1754
-        if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) {
1755
-            $id = $props_n_values[$primary_id_ref];
1756
-            return self::_get_model($classname)->get_from_entity_map($id);
1757
-        }
1758
-        return false;
1759
-    }
1760
-
1761
-
1762
-
1763
-    /**
1764
-     * This is called by child static "new_instance" method and we'll check to see if there is an existing db entry for
1765
-     * the primary key (if present in incoming values). If there is a key in the incoming array that matches the
1766
-     * primary key for the model AND it is not null, then we check the db. If there's a an object we return it.  If not
1767
-     * we return false.
1768
-     *
1769
-     * @param  array  $props_n_values   incoming array of properties and their values
1770
-     * @param  string $classname        the classname of the child class
1771
-     * @param null    $timezone
1772
-     * @param array   $date_formats     incoming date_formats in an array where the first value is the
1773
-     *                                  date_format and the second value is the time format
1774
-     * @return mixed (EE_Base_Class|bool)
1775
-     * @throws \EE_Error
1776
-     */
1777
-    protected static function _check_for_object($props_n_values, $classname, $timezone = null, $date_formats = array())
1778
-    {
1779
-        $existing = null;
1780
-        if (self::_get_model($classname)->has_primary_key_field()) {
1781
-            $primary_id_ref = self::_get_primary_key_name($classname);
1782
-            if (array_key_exists($primary_id_ref, $props_n_values)
1783
-                && ! empty($props_n_values[$primary_id_ref])
1784
-            ) {
1785
-                $existing = self::_get_model($classname, $timezone)->get_one_by_ID(
1786
-                    $props_n_values[$primary_id_ref]
1787
-                );
1788
-            }
1789
-        } elseif (self::_get_model($classname, $timezone)->has_all_combined_primary_key_fields($props_n_values)) {
1790
-            //no primary key on this model, but there's still a matching item in the DB
1791
-            $existing = self::_get_model($classname, $timezone)->get_one_by_ID(
1792
-                self::_get_model($classname, $timezone)->get_index_primary_key_string($props_n_values)
1793
-            );
1794
-        }
1795
-        if ($existing) {
1796
-            //set date formats if present before setting values
1797
-            if ( ! empty($date_formats) && is_array($date_formats)) {
1798
-                $existing->set_date_format($date_formats[0]);
1799
-                $existing->set_time_format($date_formats[1]);
1800
-            } else {
1801
-                //set default formats for date and time
1802
-                $existing->set_date_format(get_option('date_format'));
1803
-                $existing->set_time_format(get_option('time_format'));
1804
-            }
1805
-            foreach ($props_n_values as $property => $field_value) {
1806
-                $existing->set($property, $field_value);
1807
-            }
1808
-            return $existing;
1809
-        } else {
1810
-            return false;
1811
-        }
1812
-    }
1813
-
1814
-
1815
-
1816
-    /**
1817
-     * Gets the EEM_*_Model for this class
1818
-     *
1819
-     * @access public now, as this is more convenient
1820
-     * @param      $classname
1821
-     * @param null $timezone
1822
-     * @throws EE_Error
1823
-     * @return EEM_Base
1824
-     */
1825
-    protected static function _get_model($classname, $timezone = null)
1826
-    {
1827
-        //find model for this class
1828
-        if ( ! $classname) {
1829
-            throw new EE_Error(
1830
-                sprintf(
1831
-                    __(
1832
-                        "What were you thinking calling _get_model(%s)?? You need to specify the class name",
1833
-                        "event_espresso"
1834
-                    ),
1835
-                    $classname
1836
-                )
1837
-            );
1838
-        }
1839
-        $modelName = self::_get_model_classname($classname);
1840
-        return self::_get_model_instance_with_name($modelName, $timezone);
1841
-    }
1842
-
1843
-
1844
-
1845
-    /**
1846
-     * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee)
1847
-     *
1848
-     * @param string $model_classname
1849
-     * @param null   $timezone
1850
-     * @return EEM_Base
1851
-     */
1852
-    protected static function _get_model_instance_with_name($model_classname, $timezone = null)
1853
-    {
1854
-        $model_classname = str_replace('EEM_', '', $model_classname);
1855
-        $model = EE_Registry::instance()->load_model($model_classname);
1856
-        $model->set_timezone($timezone);
1857
-        return $model;
1858
-    }
1859
-
1860
-
1861
-
1862
-    /**
1863
-     * If a model name is provided (eg Registration), gets the model classname for that model.
1864
-     * Also works if a model class's classname is provided (eg EE_Registration).
1865
-     *
1866
-     * @param null $model_name
1867
-     * @return string like EEM_Attendee
1868
-     */
1869
-    private static function _get_model_classname($model_name = null)
1870
-    {
1871
-        if (strpos($model_name, "EE_") === 0) {
1872
-            $model_classname = str_replace("EE_", "EEM_", $model_name);
1873
-        } else {
1874
-            $model_classname = "EEM_" . $model_name;
1875
-        }
1876
-        return $model_classname;
1877
-    }
1878
-
1879
-
1880
-
1881
-    /**
1882
-     * returns the name of the primary key attribute
1883
-     *
1884
-     * @param null $classname
1885
-     * @throws EE_Error
1886
-     * @return string
1887
-     */
1888
-    protected static function _get_primary_key_name($classname = null)
1889
-    {
1890
-        if ( ! $classname) {
1891
-            throw new EE_Error(
1892
-                sprintf(
1893
-                    __("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"),
1894
-                    $classname
1895
-                )
1896
-            );
1897
-        }
1898
-        return self::_get_model($classname)->get_primary_key_field()->get_name();
1899
-    }
1900
-
1901
-
1902
-
1903
-    /**
1904
-     * Gets the value of the primary key.
1905
-     * If the object hasn't yet been saved, it should be whatever the model field's default was
1906
-     * (eg, if this were the EE_Event class, look at the primary key field on EEM_Event and see what its default value
1907
-     * is. Usually defaults for integer primary keys are 0; string primary keys are usually NULL).
1908
-     *
1909
-     * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string
1910
-     * @throws \EE_Error
1911
-     */
1912
-    public function ID()
1913
-    {
1914
-        //now that we know the name of the variable, use a variable variable to get its value and return its
1915
-        if ($this->get_model()->has_primary_key_field()) {
1916
-            return $this->_fields[self::_get_primary_key_name(get_class($this))];
1917
-        } else {
1918
-            return $this->get_model()->get_index_primary_key_string($this->_fields);
1919
-        }
1920
-    }
1921
-
1922
-
1923
-
1924
-    /**
1925
-     * Adds a relationship to the specified EE_Base_Class object, given the relationship's name. Eg, if the current
1926
-     * model is related to a group of events, the $relationName should be 'Event', and should be a key in the EE
1927
-     * Model's $_model_relations array. If this model object doesn't exist in the DB, just caches the related thing
1928
-     *
1929
-     * @param mixed  $otherObjectModelObjectOrID       EE_Base_Class or the ID of the other object
1930
-     * @param string $relationName                     eg 'Events','Question',etc.
1931
-     *                                                 an attendee to a group, you also want to specify which role they
1932
-     *                                                 will have in that group. So you would use this parameter to
1933
-     *                                                 specify array('role-column-name'=>'role-id')
1934
-     * @param array  $extra_join_model_fields_n_values You can optionally include an array of key=>value pairs that
1935
-     *                                                 allow you to further constrict the relation to being added.
1936
-     *                                                 However, keep in mind that the columns (keys) given must match a
1937
-     *                                                 column on the JOIN table and currently only the HABTM models
1938
-     *                                                 accept these additional conditions.  Also remember that if an
1939
-     *                                                 exact match isn't found for these extra cols/val pairs, then a
1940
-     *                                                 NEW row is created in the join table.
1941
-     * @param null   $cache_id
1942
-     * @throws EE_Error
1943
-     * @return EE_Base_Class the object the relation was added to
1944
-     */
1945
-    public function _add_relation_to(
1946
-        $otherObjectModelObjectOrID,
1947
-        $relationName,
1948
-        $extra_join_model_fields_n_values = array(),
1949
-        $cache_id = null
1950
-    ) {
1951
-        //if this thing exists in the DB, save the relation to the DB
1952
-        if ($this->ID()) {
1953
-            $otherObject = $this->get_model()
1954
-                                ->add_relationship_to($this, $otherObjectModelObjectOrID, $relationName,
1955
-                                    $extra_join_model_fields_n_values);
1956
-            //clear cache so future get_many_related and get_first_related() return new results.
1957
-            $this->clear_cache($relationName, $otherObject, true);
1958
-            if ($otherObject instanceof EE_Base_Class) {
1959
-                $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
1960
-            }
1961
-        } else {
1962
-            //this thing doesn't exist in the DB,  so just cache it
1963
-            if ( ! $otherObjectModelObjectOrID instanceof EE_Base_Class) {
1964
-                throw new EE_Error(sprintf(
1965
-                    __('Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s',
1966
-                        'event_espresso'),
1967
-                    $otherObjectModelObjectOrID,
1968
-                    get_class($this)
1969
-                ));
1970
-            } else {
1971
-                $otherObject = $otherObjectModelObjectOrID;
1972
-            }
1973
-            $this->cache($relationName, $otherObjectModelObjectOrID, $cache_id);
1974
-        }
1975
-        if ($otherObject instanceof EE_Base_Class) {
1976
-            //fix the reciprocal relation too
1977
-            if ($otherObject->ID()) {
1978
-                //its saved so assumed relations exist in the DB, so we can just
1979
-                //clear the cache so future queries use the updated info in the DB
1980
-                $otherObject->clear_cache($this->get_model()->get_this_model_name(), null, true);
1981
-            } else {
1982
-                //it's not saved, so it caches relations like this
1983
-                $otherObject->cache($this->get_model()->get_this_model_name(), $this);
1984
-            }
1985
-        }
1986
-        return $otherObject;
1987
-    }
1988
-
1989
-
1990
-
1991
-    /**
1992
-     * Removes a relationship to the specified EE_Base_Class object, given the relationships' name. Eg, if the current
1993
-     * model is related to a group of events, the $relationName should be 'Events', and should be a key in the EE
1994
-     * Model's $_model_relations array. If this model object doesn't exist in the DB, just removes the related thing
1995
-     * from the cache
1996
-     *
1997
-     * @param mixed  $otherObjectModelObjectOrID
1998
-     *                EE_Base_Class or the ID of the other object, OR an array key into the cache if this isn't saved
1999
-     *                to the DB yet
2000
-     * @param string $relationName
2001
-     * @param array  $where_query
2002
-     *                You can optionally include an array of key=>value pairs that allow you to further constrict the
2003
-     *                relation to being added. However, keep in mind that the columns (keys) given must match a column
2004
-     *                on the JOIN table and currently only the HABTM models accept these additional conditions. Also
2005
-     *                remember that if an exact match isn't found for these extra cols/val pairs, then a NEW row is
2006
-     *                created in the join table.
2007
-     * @return EE_Base_Class the relation was removed from
2008
-     * @throws \EE_Error
2009
-     */
2010
-    public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array())
2011
-    {
2012
-        if ($this->ID()) {
2013
-            //if this exists in the DB, save the relation change to the DB too
2014
-            $otherObject = $this->get_model()
2015
-                                ->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName,
2016
-                                    $where_query);
2017
-            $this->clear_cache($relationName, $otherObject);
2018
-        } else {
2019
-            //this doesn't exist in the DB, just remove it from the cache
2020
-            $otherObject = $this->clear_cache($relationName, $otherObjectModelObjectOrID);
2021
-        }
2022
-        if ($otherObject instanceof EE_Base_Class) {
2023
-            $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
2024
-        }
2025
-        return $otherObject;
2026
-    }
2027
-
2028
-
2029
-
2030
-    /**
2031
-     * Removes ALL the related things for the $relationName.
2032
-     *
2033
-     * @param string $relationName
2034
-     * @param array  $where_query_params like EEM_Base::get_all's $query_params[0] (where conditions)
2035
-     * @return EE_Base_Class
2036
-     * @throws \EE_Error
2037
-     */
2038
-    public function _remove_relations($relationName, $where_query_params = array())
2039
-    {
2040
-        if ($this->ID()) {
2041
-            //if this exists in the DB, save the relation change to the DB too
2042
-            $otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params);
2043
-            $this->clear_cache($relationName, null, true);
2044
-        } else {
2045
-            //this doesn't exist in the DB, just remove it from the cache
2046
-            $otherObjects = $this->clear_cache($relationName, null, true);
2047
-        }
2048
-        if (is_array($otherObjects)) {
2049
-            foreach ($otherObjects as $otherObject) {
2050
-                $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
2051
-            }
2052
-        }
2053
-        return $otherObjects;
2054
-    }
2055
-
2056
-
2057
-
2058
-    /**
2059
-     * Gets all the related model objects of the specified type. Eg, if the current class if
2060
-     * EE_Event, you could call $this->get_many_related('Registration') to get an array of all the
2061
-     * EE_Registration objects which related to this event. Note: by default, we remove the "default query params"
2062
-     * because we want to get even deleted items etc.
2063
-     *
2064
-     * @param string $relationName key in the model's _model_relations array
2065
-     * @param array  $query_params like EEM_Base::get_all
2066
-     * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary keys
2067
-     * @throws \EE_Error
2068
-     *                             or might not be saved yet. Consider using EEM_Base::get_IDs() on these results if
2069
-     *                             you want IDs
2070
-     */
2071
-    public function get_many_related($relationName, $query_params = array())
2072
-    {
2073
-        if ($this->ID()) {
2074
-            //this exists in the DB, so get the related things from either the cache or the DB
2075
-            //if there are query parameters, forget about caching the related model objects.
2076
-            if ($query_params) {
2077
-                $related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
2078
-            } else {
2079
-                //did we already cache the result of this query?
2080
-                $cached_results = $this->get_all_from_cache($relationName);
2081
-                if ( ! $cached_results) {
2082
-                    $related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
2083
-                    //if no query parameters were passed, then we got all the related model objects
2084
-                    //for that relation. We can cache them then.
2085
-                    foreach ($related_model_objects as $related_model_object) {
2086
-                        $this->cache($relationName, $related_model_object);
2087
-                    }
2088
-                } else {
2089
-                    $related_model_objects = $cached_results;
2090
-                }
2091
-            }
2092
-        } else {
2093
-            //this doesn't exist in the DB, so just get the related things from the cache
2094
-            $related_model_objects = $this->get_all_from_cache($relationName);
2095
-        }
2096
-        return $related_model_objects;
2097
-    }
2098
-
2099
-
2100
-
2101
-    /**
2102
-     * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default,
2103
-     * unless otherwise specified in the $query_params
2104
-     *
2105
-     * @param string $relation_name  model_name like 'Event', or 'Registration'
2106
-     * @param array  $query_params   like EEM_Base::get_all's
2107
-     * @param string $field_to_count name of field to count by. By default, uses primary key
2108
-     * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2109
-     *                               that by the setting $distinct to TRUE;
2110
-     * @return int
2111
-     */
2112
-    public function count_related($relation_name, $query_params = array(), $field_to_count = null, $distinct = false)
2113
-    {
2114
-        return $this->get_model()->count_related($this, $relation_name, $query_params, $field_to_count, $distinct);
2115
-    }
2116
-
2117
-
2118
-
2119
-    /**
2120
-     * Instead of getting the related model objects, simply sums up the values of the specified field.
2121
-     * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params
2122
-     *
2123
-     * @param string $relation_name model_name like 'Event', or 'Registration'
2124
-     * @param array  $query_params  like EEM_Base::get_all's
2125
-     * @param string $field_to_sum  name of field to count by.
2126
-     *                              By default, uses primary key (which doesn't make much sense, so you should probably
2127
-     *                              change it)
2128
-     * @return int
2129
-     */
2130
-    public function sum_related($relation_name, $query_params = array(), $field_to_sum = null)
2131
-    {
2132
-        return $this->get_model()->sum_related($this, $relation_name, $query_params, $field_to_sum);
2133
-    }
2134
-
2135
-
2136
-
2137
-    /**
2138
-     * Gets the first (ie, one) related model object of the specified type.
2139
-     *
2140
-     * @param string $relationName key in the model's _model_relations array
2141
-     * @param array  $query_params like EEM_Base::get_all
2142
-     * @return EE_Base_Class (not an array, a single object)
2143
-     * @throws \EE_Error
2144
-     */
2145
-    public function get_first_related($relationName, $query_params = array())
2146
-    {
2147
-        if ($this->ID()) {//this exists in the DB, get from the cache OR the DB
2148
-            //if they've provided some query parameters, don't bother trying to cache the result
2149
-            //also make sure we're not caching the result of get_first_related
2150
-            //on a relation which should have an array of objects (because the cache might have an array of objects)
2151
-            if ($query_params
2152
-                || ! $this->get_model()->related_settings_for($relationName)
2153
-                     instanceof
2154
-                     EE_Belongs_To_Relation
2155
-            ) {
2156
-                $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2157
-            } else {
2158
-                //first, check if we've already cached the result of this query
2159
-                $cached_result = $this->get_one_from_cache($relationName);
2160
-                if ( ! $cached_result) {
2161
-                    $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2162
-                    $this->cache($relationName, $related_model_object);
2163
-                } else {
2164
-                    $related_model_object = $cached_result;
2165
-                }
2166
-            }
2167
-        } else {
2168
-            $related_model_object = null;
2169
-            //this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might
2170
-            if ($this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) {
2171
-                $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2172
-            }
2173
-            //this doesn't exist in the DB and apparently the thing it belongs to doesn't either, just get what's cached on this object
2174
-            if ( ! $related_model_object) {
2175
-                $related_model_object = $this->get_one_from_cache($relationName);
2176
-            }
2177
-        }
2178
-        return $related_model_object;
2179
-    }
2180
-
2181
-
2182
-
2183
-    /**
2184
-     * Does a delete on all related objects of type $relationName and removes
2185
-     * the current model object's relation to them. If they can't be deleted (because
2186
-     * of blocking related model objects) does nothing. If the related model objects are
2187
-     * soft-deletable, they will be soft-deleted regardless of related blocking model objects.
2188
-     * If this model object doesn't exist yet in the DB, just removes its related things
2189
-     *
2190
-     * @param string $relationName
2191
-     * @param array  $query_params like EEM_Base::get_all's
2192
-     * @return int how many deleted
2193
-     * @throws \EE_Error
2194
-     */
2195
-    public function delete_related($relationName, $query_params = array())
2196
-    {
2197
-        if ($this->ID()) {
2198
-            $count = $this->get_model()->delete_related($this, $relationName, $query_params);
2199
-        } else {
2200
-            $count = count($this->get_all_from_cache($relationName));
2201
-            $this->clear_cache($relationName, null, true);
2202
-        }
2203
-        return $count;
2204
-    }
2205
-
2206
-
2207
-
2208
-    /**
2209
-     * Does a hard delete (ie, removes the DB row) on all related objects of type $relationName and removes
2210
-     * the current model object's relation to them. If they can't be deleted (because
2211
-     * of blocking related model objects) just does a soft delete on it instead, if possible.
2212
-     * If the related thing isn't a soft-deletable model object, this function is identical
2213
-     * to delete_related(). If this model object doesn't exist in the DB, just remove its related things
2214
-     *
2215
-     * @param string $relationName
2216
-     * @param array  $query_params like EEM_Base::get_all's
2217
-     * @return int how many deleted (including those soft deleted)
2218
-     * @throws \EE_Error
2219
-     */
2220
-    public function delete_related_permanently($relationName, $query_params = array())
2221
-    {
2222
-        if ($this->ID()) {
2223
-            $count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params);
2224
-        } else {
2225
-            $count = count($this->get_all_from_cache($relationName));
2226
-        }
2227
-        $this->clear_cache($relationName, null, true);
2228
-        return $count;
2229
-    }
2230
-
2231
-
2232
-
2233
-    /**
2234
-     * is_set
2235
-     * Just a simple utility function children can use for checking if property exists
2236
-     *
2237
-     * @access  public
2238
-     * @param  string $field_name property to check
2239
-     * @return bool                              TRUE if existing,FALSE if not.
2240
-     */
2241
-    public function is_set($field_name)
2242
-    {
2243
-        return isset($this->_fields[$field_name]);
2244
-    }
2245
-
2246
-
2247
-
2248
-    /**
2249
-     * Just a simple utility function children can use for checking if property (or properties) exists and throwing an
2250
-     * EE_Error exception if they don't
2251
-     *
2252
-     * @param  mixed (string|array) $properties properties to check
2253
-     * @throws EE_Error
2254
-     * @return bool                              TRUE if existing, throw EE_Error if not.
2255
-     */
2256
-    protected function _property_exists($properties)
2257
-    {
2258
-        foreach ((array)$properties as $property_name) {
2259
-            //first make sure this property exists
2260
-            if ( ! $this->_fields[$property_name]) {
2261
-                throw new EE_Error(
2262
-                    sprintf(
2263
-                        __(
2264
-                            'Trying to retrieve a non-existent property (%s).  Double check the spelling please',
2265
-                            'event_espresso'
2266
-                        ),
2267
-                        $property_name
2268
-                    )
2269
-                );
2270
-            }
2271
-        }
2272
-        return true;
2273
-    }
2274
-
2275
-
2276
-
2277
-    /**
2278
-     * This simply returns an array of model fields for this object
2279
-     *
2280
-     * @return array
2281
-     * @throws \EE_Error
2282
-     */
2283
-    public function model_field_array()
2284
-    {
2285
-        $fields = $this->get_model()->field_settings(false);
2286
-        $properties = array();
2287
-        //remove prepended underscore
2288
-        foreach ($fields as $field_name => $settings) {
2289
-            $properties[$field_name] = $this->get($field_name);
2290
-        }
2291
-        return $properties;
2292
-    }
2293
-
2294
-
2295
-
2296
-    /**
2297
-     * Very handy general function to allow for plugins to extend any child of EE_Base_Class.
2298
-     * If a method is called on a child of EE_Base_Class that doesn't exist, this function is called
2299
-     * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. Instead of
2300
-     * requiring a plugin to extend the EE_Base_Class (which works fine is there's only 1 plugin, but when will that
2301
-     * happen?) they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' (eg,
2302
-     * filters_hook_espresso__EE_Answer__my_great_function) and accepts 2 arguments: the object on which the function
2303
-     * was called, and an array of the original arguments passed to the function. Whatever their callback function
2304
-     * returns will be returned by this function. Example: in functions.php (or in a plugin):
2305
-     * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); function
2306
-     * my_callback($previousReturnValue,EE_Base_Class $object,$argsArray){
2307
-     * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray);
2308
-     *        return $previousReturnValue.$returnString;
2309
-     * }
2310
-     * require('EE_Answer.class.php');
2311
-     * $answer= EE_Answer::new_instance(array('REG_ID' => 2,'QST_ID' => 3,'ANS_value' => The answer is 42'));
2312
-     * echo $answer->my_callback('monkeys',100);
2313
-     * //will output "you called my_callback! and passed args:monkeys,100"
2314
-     *
2315
-     * @param string $methodName name of method which was called on a child of EE_Base_Class, but which
2316
-     * @param array  $args       array of original arguments passed to the function
2317
-     * @throws EE_Error
2318
-     * @return mixed whatever the plugin which calls add_filter decides
2319
-     */
2320
-    public function __call($methodName, $args)
2321
-    {
2322
-        $className = get_class($this);
2323
-        $tagName = "FHEE__{$className}__{$methodName}";
2324
-        if ( ! has_filter($tagName)) {
2325
-            throw new EE_Error(
2326
-                sprintf(
2327
-                    __(
2328
-                        "Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}",
2329
-                        "event_espresso"
2330
-                    ),
2331
-                    $methodName,
2332
-                    $className,
2333
-                    $tagName
2334
-                )
2335
-            );
2336
-        }
2337
-        return apply_filters($tagName, null, $this, $args);
2338
-    }
2339
-
2340
-
2341
-
2342
-    /**
2343
-     * Similar to insert_post_meta, adds a record in the Extra_Meta model's table with the given key and value.
2344
-     * A $previous_value can be specified in case there are many meta rows with the same key
2345
-     *
2346
-     * @param string $meta_key
2347
-     * @param string $meta_value
2348
-     * @param string $previous_value
2349
-     * @return int records updated (or BOOLEAN if we actually ended up inserting the extra meta row)
2350
-     * @throws \EE_Error
2351
-     * NOTE: if the values haven't changed, returns 0
2352
-     */
2353
-    public function update_extra_meta($meta_key, $meta_value, $previous_value = null)
2354
-    {
2355
-        $query_params = array(
2356
-            array(
2357
-                'EXM_key'  => $meta_key,
2358
-                'OBJ_ID'   => $this->ID(),
2359
-                'EXM_type' => $this->get_model()->get_this_model_name(),
2360
-            ),
2361
-        );
2362
-        if ($previous_value !== null) {
2363
-            $query_params[0]['EXM_value'] = $meta_value;
2364
-        }
2365
-        $existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params);
2366
-        if ( ! $existing_rows_like_that) {
2367
-            return $this->add_extra_meta($meta_key, $meta_value);
2368
-        } else {
2369
-            foreach ($existing_rows_like_that as $existing_row) {
2370
-                $existing_row->save(array('EXM_value' => $meta_value));
2371
-            }
2372
-            return count($existing_rows_like_that);
2373
-        }
2374
-    }
2375
-
2376
-
2377
-
2378
-    /**
2379
-     * Adds a new extra meta record. If $unique is set to TRUE, we'll first double-check
2380
-     * no other extra meta for this model object have the same key. Returns TRUE if the
2381
-     * extra meta row was entered, false if not
2382
-     *
2383
-     * @param string  $meta_key
2384
-     * @param string  $meta_value
2385
-     * @param boolean $unique
2386
-     * @return boolean
2387
-     * @throws \EE_Error
2388
-     */
2389
-    public function add_extra_meta($meta_key, $meta_value, $unique = false)
2390
-    {
2391
-        if ($unique) {
2392
-            $existing_extra_meta = EEM_Extra_Meta::instance()->get_one(
2393
-                array(
2394
-                    array(
2395
-                        'EXM_key'  => $meta_key,
2396
-                        'OBJ_ID'   => $this->ID(),
2397
-                        'EXM_type' => $this->get_model()->get_this_model_name(),
2398
-                    ),
2399
-                )
2400
-            );
2401
-            if ($existing_extra_meta) {
2402
-                return false;
2403
-            }
2404
-        }
2405
-        $new_extra_meta = EE_Extra_Meta::new_instance(
2406
-            array(
2407
-                'EXM_key'   => $meta_key,
2408
-                'EXM_value' => $meta_value,
2409
-                'OBJ_ID'    => $this->ID(),
2410
-                'EXM_type'  => $this->get_model()->get_this_model_name(),
2411
-            )
2412
-        );
2413
-        $new_extra_meta->save();
2414
-        return true;
2415
-    }
2416
-
2417
-
2418
-
2419
-    /**
2420
-     * Deletes all the extra meta rows for this record as specified by key. If $meta_value
2421
-     * is specified, only deletes extra meta records with that value.
2422
-     *
2423
-     * @param string $meta_key
2424
-     * @param string $meta_value
2425
-     * @return int number of extra meta rows deleted
2426
-     * @throws \EE_Error
2427
-     */
2428
-    public function delete_extra_meta($meta_key, $meta_value = null)
2429
-    {
2430
-        $query_params = array(
2431
-            array(
2432
-                'EXM_key'  => $meta_key,
2433
-                'OBJ_ID'   => $this->ID(),
2434
-                'EXM_type' => $this->get_model()->get_this_model_name(),
2435
-            ),
2436
-        );
2437
-        if ($meta_value !== null) {
2438
-            $query_params[0]['EXM_value'] = $meta_value;
2439
-        }
2440
-        return EEM_Extra_Meta::instance()->delete($query_params);
2441
-    }
2442
-
2443
-
2444
-
2445
-    /**
2446
-     * Gets the extra meta with the given meta key. If you specify "single" we just return 1, otherwise
2447
-     * an array of everything found. Requires that this model actually have a relation of type EE_Has_Many_Any_Relation.
2448
-     * You can specify $default is case you haven't found the extra meta
2449
-     *
2450
-     * @param string  $meta_key
2451
-     * @param boolean $single
2452
-     * @param mixed   $default if we don't find anything, what should we return?
2453
-     * @return mixed single value if $single; array if ! $single
2454
-     * @throws \EE_Error
2455
-     */
2456
-    public function get_extra_meta($meta_key, $single = false, $default = null)
2457
-    {
2458
-        if ($single) {
2459
-            $result = $this->get_first_related('Extra_Meta', array(array('EXM_key' => $meta_key)));
2460
-            if ($result instanceof EE_Extra_Meta) {
2461
-                return $result->value();
2462
-            } else {
2463
-                return $default;
2464
-            }
2465
-        } else {
2466
-            $results = $this->get_many_related('Extra_Meta', array(array('EXM_key' => $meta_key)));
2467
-            if ($results) {
2468
-                $values = array();
2469
-                foreach ($results as $result) {
2470
-                    if ($result instanceof EE_Extra_Meta) {
2471
-                        $values[$result->ID()] = $result->value();
2472
-                    }
2473
-                }
2474
-                return $values;
2475
-            } else {
2476
-                return $default;
2477
-            }
2478
-        }
2479
-    }
2480
-
2481
-
2482
-
2483
-    /**
2484
-     * Returns a simple array of all the extra meta associated with this model object.
2485
-     * If $one_of_each_key is true (Default), it will be an array of simple key-value pairs, keys being the
2486
-     * extra meta's key, and teh value being its value. However, if there are duplicate extra meta rows with
2487
-     * the same key, only one will be used. (eg array('foo'=>'bar','monkey'=>123))
2488
-     * If $one_of_each_key is false, it will return an array with the top-level keys being
2489
-     * the extra meta keys, but their values are also arrays, which have the extra-meta's ID as their sub-key, and
2490
-     * finally the extra meta's value as each sub-value. (eg
2491
-     * array('foo'=>array(1=>'bar',2=>'bill'),'monkey'=>array(3=>123)))
2492
-     *
2493
-     * @param boolean $one_of_each_key
2494
-     * @return array
2495
-     * @throws \EE_Error
2496
-     */
2497
-    public function all_extra_meta_array($one_of_each_key = true)
2498
-    {
2499
-        $return_array = array();
2500
-        if ($one_of_each_key) {
2501
-            $extra_meta_objs = $this->get_many_related('Extra_Meta', array('group_by' => 'EXM_key'));
2502
-            foreach ($extra_meta_objs as $extra_meta_obj) {
2503
-                if ($extra_meta_obj instanceof EE_Extra_Meta) {
2504
-                    $return_array[$extra_meta_obj->key()] = $extra_meta_obj->value();
2505
-                }
2506
-            }
2507
-        } else {
2508
-            $extra_meta_objs = $this->get_many_related('Extra_Meta');
2509
-            foreach ($extra_meta_objs as $extra_meta_obj) {
2510
-                if ($extra_meta_obj instanceof EE_Extra_Meta) {
2511
-                    if ( ! isset($return_array[$extra_meta_obj->key()])) {
2512
-                        $return_array[$extra_meta_obj->key()] = array();
2513
-                    }
2514
-                    $return_array[$extra_meta_obj->key()][$extra_meta_obj->ID()] = $extra_meta_obj->value();
2515
-                }
2516
-            }
2517
-        }
2518
-        return $return_array;
2519
-    }
2520
-
2521
-
2522
-
2523
-    /**
2524
-     * Gets a pretty nice displayable nice for this model object. Often overridden
2525
-     *
2526
-     * @return string
2527
-     * @throws \EE_Error
2528
-     */
2529
-    public function name()
2530
-    {
2531
-        //find a field that's not a text field
2532
-        $field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base');
2533
-        if ($field_we_can_use) {
2534
-            return $this->get($field_we_can_use->get_name());
2535
-        } else {
2536
-            $first_few_properties = $this->model_field_array();
2537
-            $first_few_properties = array_slice($first_few_properties, 0, 3);
2538
-            $name_parts = array();
2539
-            foreach ($first_few_properties as $name => $value) {
2540
-                $name_parts[] = "$name:$value";
2541
-            }
2542
-            return implode(",", $name_parts);
2543
-        }
2544
-    }
2545
-
2546
-
2547
-
2548
-    /**
2549
-     * in_entity_map
2550
-     * Checks if this model object has been proven to already be in the entity map
2551
-     *
2552
-     * @return boolean
2553
-     * @throws \EE_Error
2554
-     */
2555
-    public function in_entity_map()
2556
-    {
2557
-        if ($this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this) {
2558
-            //well, if we looked, did we find it in the entity map?
2559
-            return true;
2560
-        } else {
2561
-            return false;
2562
-        }
2563
-    }
2564
-
2565
-
2566
-
2567
-    /**
2568
-     * refresh_from_db
2569
-     * Makes sure the fields and values on this model object are in-sync with what's in the database.
2570
-     *
2571
-     * @throws EE_Error if this model object isn't in the entity mapper (because then you should
2572
-     * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE
2573
-     */
2574
-    public function refresh_from_db()
2575
-    {
2576
-        if ($this->ID() && $this->in_entity_map()) {
2577
-            $this->get_model()->refresh_entity_map_from_db($this->ID());
2578
-        } else {
2579
-            //if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database)
2580
-            //if it has an ID but it's not in the map, and you're asking me to refresh it
2581
-            //that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's
2582
-            //absolutely nothing in it for this ID
2583
-            if (WP_DEBUG) {
2584
-                throw new EE_Error(
2585
-                    sprintf(
2586
-                        __('Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.',
2587
-                            'event_espresso'),
2588
-                        $this->ID(),
2589
-                        get_class($this->get_model()) . '::instance()->add_to_entity_map()',
2590
-                        get_class($this->get_model()) . '::instance()->refresh_entity_map()'
2591
-                    )
2592
-                );
2593
-            }
2594
-        }
2595
-    }
2596
-
2597
-
2598
-
2599
-    /**
2600
-     * Because some other plugins, like Advanced Cron Manager, expect all objects to have this method
2601
-     * (probably a bad assumption they have made, oh well)
2602
-     *
2603
-     * @return string
2604
-     */
2605
-    public function __toString()
2606
-    {
2607
-        try {
2608
-            return sprintf('%s (%s)', $this->name(), $this->ID());
2609
-        } catch (Exception $e) {
2610
-            EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
2611
-            return '';
2612
-        }
2613
-    }
2614
-
2615
-
2616
-
2617
-    /**
2618
-     * Clear related model objects if they're already in the DB, because otherwise when we
2619
-     * UN-serialize this model object we'll need to be careful to add them to the entity map.
2620
-     * This means if we have made changes to those related model objects, and want to unserialize
2621
-     * the this model object on a subsequent request, changes to those related model objects will be lost.
2622
-     * Instead, those related model objects should be directly serialized and stored.
2623
-     * Eg, the following won't work:
2624
-     * $reg = EEM_Registration::instance()->get_one_by_ID( 123 );
2625
-     * $att = $reg->attendee();
2626
-     * $att->set( 'ATT_fname', 'Dirk' );
2627
-     * update_option( 'my_option', serialize( $reg ) );
2628
-     * //END REQUEST
2629
-     * //START NEXT REQUEST
2630
-     * $reg = get_option( 'my_option' );
2631
-     * $reg->attendee()->save();
2632
-     * And would need to be replace with:
2633
-     * $reg = EEM_Registration::instance()->get_one_by_ID( 123 );
2634
-     * $att = $reg->attendee();
2635
-     * $att->set( 'ATT_fname', 'Dirk' );
2636
-     * update_option( 'my_option', serialize( $reg ) );
2637
-     * //END REQUEST
2638
-     * //START NEXT REQUEST
2639
-     * $att = get_option( 'my_option' );
2640
-     * $att->save();
2641
-     *
2642
-     * @return array
2643
-     * @throws \EE_Error
2644
-     */
2645
-    public function __sleep()
2646
-    {
2647
-        foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
2648
-            if ($relation_obj instanceof EE_Belongs_To_Relation) {
2649
-                $classname = 'EE_' . $this->get_model()->get_this_model_name();
2650
-                if (
2651
-                    $this->get_one_from_cache($relation_name) instanceof $classname
2652
-                    && $this->get_one_from_cache($relation_name)->ID()
2653
-                ) {
2654
-                    $this->clear_cache($relation_name, $this->get_one_from_cache($relation_name)->ID());
2655
-                }
2656
-            }
2657
-        }
2658
-        $this->_props_n_values_provided_in_constructor = array();
2659
-        return array_keys(get_object_vars($this));
2660
-    }
2661
-
2662
-
2663
-
2664
-    /**
2665
-     * restore _props_n_values_provided_in_constructor
2666
-     * PLZ NOTE: this will reset the array to whatever fields values were present prior to serialization,
2667
-     * and therefore should NOT be used to determine if state change has occurred since initial construction.
2668
-     * At best, you would only be able to detect if state change has occurred during THIS request.
2669
-     */
2670
-    public function __wakeup()
2671
-    {
2672
-        $this->_props_n_values_provided_in_constructor = $this->_fields;
2673
-    }
28
+	/**
29
+	 * This is an array of the original properties and values provided during construction
30
+	 * of this model object. (keys are model field names, values are their values).
31
+	 * This list is important to remember so that when we are merging data from the db, we know
32
+	 * which values to override and which to not override.
33
+	 *
34
+	 * @var array
35
+	 */
36
+	protected $_props_n_values_provided_in_constructor;
37
+
38
+	/**
39
+	 * Timezone
40
+	 * This gets set by the "set_timezone()" method so that we know what timezone incoming strings|timestamps are in.
41
+	 * This can also be used before a get to set what timezone you want strings coming out of the object to be in.  NOT
42
+	 * all EE_Base_Class child classes use this property but any that use a EE_Datetime_Field data type will have
43
+	 * access to it.
44
+	 *
45
+	 * @var string
46
+	 */
47
+	protected $_timezone;
48
+
49
+
50
+
51
+	/**
52
+	 * date format
53
+	 * pattern or format for displaying dates
54
+	 *
55
+	 * @var string $_dt_frmt
56
+	 */
57
+	protected $_dt_frmt;
58
+
59
+
60
+
61
+	/**
62
+	 * time format
63
+	 * pattern or format for displaying time
64
+	 *
65
+	 * @var string $_tm_frmt
66
+	 */
67
+	protected $_tm_frmt;
68
+
69
+
70
+
71
+	/**
72
+	 * This property is for holding a cached array of object properties indexed by property name as the key.
73
+	 * The purpose of this is for setting a cache on properties that may have calculated values after a
74
+	 * prepare_for_get.  That way the cache can be checked first and the calculated property returned instead of having
75
+	 * to recalculate. Used by _set_cached_property() and _get_cached_property() methods.
76
+	 *
77
+	 * @var array
78
+	 */
79
+	protected $_cached_properties = array();
80
+
81
+	/**
82
+	 * An array containing keys of the related model, and values are either an array of related mode objects or a
83
+	 * single
84
+	 * related model object. see the model's _model_relations. The keys should match those specified. And if the
85
+	 * relation is of type EE_Belongs_To (or one of its children), then there should only be ONE related model object,
86
+	 * all others have an array)
87
+	 *
88
+	 * @var array
89
+	 */
90
+	protected $_model_relations = array();
91
+
92
+	/**
93
+	 * Array where keys are field names (see the model's _fields property) and values are their values. To see what
94
+	 * their types should be, look at what that field object returns on its prepare_for_get and prepare_for_set methods)
95
+	 *
96
+	 * @var array
97
+	 */
98
+	protected $_fields = array();
99
+
100
+	/**
101
+	 * @var boolean indicating whether or not this model object is intended to ever be saved
102
+	 * For example, we might create model objects intended to only be used for the duration
103
+	 * of this request and to be thrown away, and if they were accidentally saved
104
+	 * it would be a bug.
105
+	 */
106
+	protected $_allow_persist = true;
107
+
108
+
109
+
110
+	/**
111
+	 * basic constructor for Event Espresso classes, performs any necessary initialization, and verifies it's children
112
+	 * play nice
113
+	 *
114
+	 * @param array   $fieldValues                             where each key is a field (ie, array key in the 2nd
115
+	 *                                                         layer of the model's _fields array, (eg, EVT_ID,
116
+	 *                                                         TXN_amount, QST_name, etc) and values are their values
117
+	 * @param boolean $bydb                                    a flag for setting if the class is instantiated by the
118
+	 *                                                         corresponding db model or not.
119
+	 * @param string  $timezone                                indicate what timezone you want any datetime fields to
120
+	 *                                                         be in when instantiating a EE_Base_Class object.
121
+	 * @param array   $date_formats                            An array of date formats to set on construct where first
122
+	 *                                                         value is the date_format and second value is the time
123
+	 *                                                         format.
124
+	 * @throws EE_Error
125
+	 */
126
+	protected function __construct($fieldValues = array(), $bydb = false, $timezone = '', $date_formats = array())
127
+	{
128
+		$className = get_class($this);
129
+		do_action("AHEE__{$className}__construct", $this, $fieldValues);
130
+		$model = $this->get_model();
131
+		$model_fields = $model->field_settings(false);
132
+		// ensure $fieldValues is an array
133
+		$fieldValues = is_array($fieldValues) ? $fieldValues : array($fieldValues);
134
+		// EEH_Debug_Tools::printr( $fieldValues, '$fieldValues  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
135
+		// verify client code has not passed any invalid field names
136
+		foreach ($fieldValues as $field_name => $field_value) {
137
+			if ( ! isset($model_fields[$field_name])) {
138
+				throw new EE_Error(sprintf(__("Invalid field (%s) passed to constructor of %s. Allowed fields are :%s",
139
+					"event_espresso"), $field_name, get_class($this), implode(", ", array_keys($model_fields))));
140
+			}
141
+		}
142
+		// EEH_Debug_Tools::printr( $model_fields, '$model_fields  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
143
+		$this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone);
144
+		if ( ! empty($date_formats) && is_array($date_formats)) {
145
+			list($this->_dt_frmt, $this->_tm_frmt) = $date_formats;
146
+		} else {
147
+			//set default formats for date and time
148
+			$this->_dt_frmt = (string)get_option('date_format', 'Y-m-d');
149
+			$this->_tm_frmt = (string)get_option('time_format', 'g:i a');
150
+		}
151
+		//if db model is instantiating
152
+		if ($bydb) {
153
+			//client code has indicated these field values are from the database
154
+			foreach ($model_fields as $fieldName => $field) {
155
+				$this->set_from_db($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null);
156
+			}
157
+		} else {
158
+			//we're constructing a brand
159
+			//new instance of the model object. Generally, this means we'll need to do more field validation
160
+			foreach ($model_fields as $fieldName => $field) {
161
+				$this->set($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null, true);
162
+			}
163
+		}
164
+		//remember what values were passed to this constructor
165
+		$this->_props_n_values_provided_in_constructor = $fieldValues;
166
+		//remember in entity mapper
167
+		if ( ! $bydb && $model->has_primary_key_field() && $this->ID()) {
168
+			$model->add_to_entity_map($this);
169
+		}
170
+		//setup all the relations
171
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
172
+			if ($relation_obj instanceof EE_Belongs_To_Relation) {
173
+				$this->_model_relations[$relation_name] = null;
174
+			} else {
175
+				$this->_model_relations[$relation_name] = array();
176
+			}
177
+		}
178
+		/**
179
+		 * Action done at the end of each model object construction
180
+		 *
181
+		 * @param EE_Base_Class $this the model object just created
182
+		 */
183
+		do_action('AHEE__EE_Base_Class__construct__finished', $this);
184
+	}
185
+
186
+
187
+
188
+	/**
189
+	 * Gets whether or not this model object is allowed to persist/be saved to the database.
190
+	 *
191
+	 * @return boolean
192
+	 */
193
+	public function allow_persist()
194
+	{
195
+		return $this->_allow_persist;
196
+	}
197
+
198
+
199
+
200
+	/**
201
+	 * Sets whether or not this model object should be allowed to be saved to the DB.
202
+	 * Normally once this is set to FALSE you wouldn't set it back to TRUE, unless
203
+	 * you got new information that somehow made you change your mind.
204
+	 *
205
+	 * @param boolean $allow_persist
206
+	 * @return boolean
207
+	 */
208
+	public function set_allow_persist($allow_persist)
209
+	{
210
+		return $this->_allow_persist = $allow_persist;
211
+	}
212
+
213
+
214
+
215
+	/**
216
+	 * Gets the field's original value when this object was constructed during this request.
217
+	 * This can be helpful when determining if a model object has changed or not
218
+	 *
219
+	 * @param string $field_name
220
+	 * @return mixed|null
221
+	 * @throws \EE_Error
222
+	 */
223
+	public function get_original($field_name)
224
+	{
225
+		if (isset($this->_props_n_values_provided_in_constructor[$field_name])
226
+			&& $field_settings = $this->get_model()->field_settings_for($field_name)
227
+		) {
228
+			return $field_settings->prepare_for_get($this->_props_n_values_provided_in_constructor[$field_name]);
229
+		} else {
230
+			return null;
231
+		}
232
+	}
233
+
234
+
235
+
236
+	/**
237
+	 * @param EE_Base_Class $obj
238
+	 * @return string
239
+	 */
240
+	public function get_class($obj)
241
+	{
242
+		return get_class($obj);
243
+	}
244
+
245
+
246
+
247
+	/**
248
+	 * Overrides parent because parent expects old models.
249
+	 * This also doesn't do any validation, and won't work for serialized arrays
250
+	 *
251
+	 * @param    string $field_name
252
+	 * @param    mixed  $field_value
253
+	 * @param bool      $use_default
254
+	 * @throws \EE_Error
255
+	 */
256
+	public function set($field_name, $field_value, $use_default = false)
257
+	{
258
+		$field_obj = $this->get_model()->field_settings_for($field_name);
259
+		if ($field_obj instanceof EE_Model_Field_Base) {
260
+			//			if ( method_exists( $field_obj, 'set_timezone' )) {
261
+			if ($field_obj instanceof EE_Datetime_Field) {
262
+				$field_obj->set_timezone($this->_timezone);
263
+				$field_obj->set_date_format($this->_dt_frmt);
264
+				$field_obj->set_time_format($this->_tm_frmt);
265
+			}
266
+			$holder_of_value = $field_obj->prepare_for_set($field_value);
267
+			//should the value be null?
268
+			if (($field_value === null || $holder_of_value === null || $holder_of_value === '') && $use_default) {
269
+				$this->_fields[$field_name] = $field_obj->get_default_value();
270
+				/**
271
+				 * To save having to refactor all the models, if a default value is used for a
272
+				 * EE_Datetime_Field, and that value is not null nor is it a DateTime
273
+				 * object.  Then let's do a set again to ensure that it becomes a DateTime
274
+				 * object.
275
+				 *
276
+				 * @since 4.6.10+
277
+				 */
278
+				if (
279
+					$field_obj instanceof EE_Datetime_Field
280
+					&& $this->_fields[$field_name] !== null
281
+					&& ! $this->_fields[$field_name] instanceof DateTime
282
+				) {
283
+					empty($this->_fields[$field_name])
284
+						? $this->set($field_name, time())
285
+						: $this->set($field_name, $this->_fields[$field_name]);
286
+				}
287
+			} else {
288
+				$this->_fields[$field_name] = $holder_of_value;
289
+			}
290
+			//if we're not in the constructor...
291
+			//now check if what we set was a primary key
292
+			if (
293
+				//note: props_n_values_provided_in_constructor is only set at the END of the constructor
294
+				$this->_props_n_values_provided_in_constructor
295
+				&& $field_value
296
+				&& $field_name === self::_get_primary_key_name(get_class($this))
297
+			) {
298
+				//if so, we want all this object's fields to be filled either with
299
+				//what we've explicitly set on this model
300
+				//or what we have in the db
301
+				// echo "setting primary key!";
302
+				$fields_on_model = self::_get_model(get_class($this))->field_settings();
303
+				$obj_in_db = self::_get_model(get_class($this))->get_one_by_ID($field_value);
304
+				foreach ($fields_on_model as $field_obj) {
305
+					if ( ! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor)
306
+						 && $field_obj->get_name() !== $field_name
307
+					) {
308
+						$this->set($field_obj->get_name(), $obj_in_db->get($field_obj->get_name()));
309
+					}
310
+				}
311
+				//oh this model object has an ID? well make sure its in the entity mapper
312
+				$this->get_model()->add_to_entity_map($this);
313
+			}
314
+			//let's unset any cache for this field_name from the $_cached_properties property.
315
+			$this->_clear_cached_property($field_name);
316
+		} else {
317
+			throw new EE_Error(sprintf(__("A valid EE_Model_Field_Base could not be found for the given field name: %s",
318
+				"event_espresso"), $field_name));
319
+		}
320
+	}
321
+
322
+
323
+
324
+	/**
325
+	 * This sets the field value on the db column if it exists for the given $column_name or
326
+	 * saves it to EE_Extra_Meta if the given $column_name does not match a db column.
327
+	 *
328
+	 * @see EE_message::get_column_value for related documentation on the necessity of this method.
329
+	 * @param string $field_name  Must be the exact column name.
330
+	 * @param mixed  $field_value The value to set.
331
+	 * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs.
332
+	 * @throws \EE_Error
333
+	 */
334
+	public function set_field_or_extra_meta($field_name, $field_value)
335
+	{
336
+		if ($this->get_model()->has_field($field_name)) {
337
+			$this->set($field_name, $field_value);
338
+			return true;
339
+		} else {
340
+			//ensure this object is saved first so that extra meta can be properly related.
341
+			$this->save();
342
+			return $this->update_extra_meta($field_name, $field_value);
343
+		}
344
+	}
345
+
346
+
347
+
348
+	/**
349
+	 * This retrieves the value of the db column set on this class or if that's not present
350
+	 * it will attempt to retrieve from extra_meta if found.
351
+	 * Example Usage:
352
+	 * Via EE_Message child class:
353
+	 * Due to the dynamic nature of the EE_messages system, EE_messengers will always have a "to",
354
+	 * "from", "subject", and "content" field (as represented in the EE_Message schema), however they may
355
+	 * also have additional main fields specific to the messenger.  The system accommodates those extra
356
+	 * fields through the EE_Extra_Meta table.  This method allows for EE_messengers to retrieve the
357
+	 * value for those extra fields dynamically via the EE_message object.
358
+	 *
359
+	 * @param  string $field_name expecting the fully qualified field name.
360
+	 * @return mixed|null  value for the field if found.  null if not found.
361
+	 * @throws \EE_Error
362
+	 */
363
+	public function get_field_or_extra_meta($field_name)
364
+	{
365
+		if ($this->get_model()->has_field($field_name)) {
366
+			$column_value = $this->get($field_name);
367
+		} else {
368
+			//This isn't a column in the main table, let's see if it is in the extra meta.
369
+			$column_value = $this->get_extra_meta($field_name, true, null);
370
+		}
371
+		return $column_value;
372
+	}
373
+
374
+
375
+
376
+	/**
377
+	 * See $_timezone property for description of what the timezone property is for.  This SETS the timezone internally
378
+	 * for being able to reference what timezone we are running conversions on when converting TO the internal timezone
379
+	 * (UTC Unix Timestamp) for the object OR when converting FROM the internal timezone (UTC Unix Timestamp). This is
380
+	 * available to all child classes that may be using the EE_Datetime_Field for a field data type.
381
+	 *
382
+	 * @access public
383
+	 * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php
384
+	 * @return void
385
+	 * @throws \EE_Error
386
+	 */
387
+	public function set_timezone($timezone = '')
388
+	{
389
+		$this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone);
390
+		//make sure we clear all cached properties because they won't be relevant now
391
+		$this->_clear_cached_properties();
392
+		//make sure we update field settings and the date for all EE_Datetime_Fields
393
+		$model_fields = $this->get_model()->field_settings(false);
394
+		foreach ($model_fields as $field_name => $field_obj) {
395
+			if ($field_obj instanceof EE_Datetime_Field) {
396
+				$field_obj->set_timezone($this->_timezone);
397
+				if (isset($this->_fields[$field_name]) && $this->_fields[$field_name] instanceof DateTime) {
398
+					$this->_fields[$field_name]->setTimezone(new DateTimeZone($this->_timezone));
399
+				}
400
+			}
401
+		}
402
+	}
403
+
404
+
405
+
406
+	/**
407
+	 * This just returns whatever is set for the current timezone.
408
+	 *
409
+	 * @access public
410
+	 * @return string timezone string
411
+	 */
412
+	public function get_timezone()
413
+	{
414
+		return $this->_timezone;
415
+	}
416
+
417
+
418
+
419
+	/**
420
+	 * This sets the internal date format to what is sent in to be used as the new default for the class
421
+	 * internally instead of wp set date format options
422
+	 *
423
+	 * @since 4.6
424
+	 * @param string $format should be a format recognizable by PHP date() functions.
425
+	 */
426
+	public function set_date_format($format)
427
+	{
428
+		$this->_dt_frmt = $format;
429
+		//clear cached_properties because they won't be relevant now.
430
+		$this->_clear_cached_properties();
431
+	}
432
+
433
+
434
+
435
+	/**
436
+	 * This sets the internal time format string to what is sent in to be used as the new default for the
437
+	 * class internally instead of wp set time format options.
438
+	 *
439
+	 * @since 4.6
440
+	 * @param string $format should be a format recognizable by PHP date() functions.
441
+	 */
442
+	public function set_time_format($format)
443
+	{
444
+		$this->_tm_frmt = $format;
445
+		//clear cached_properties because they won't be relevant now.
446
+		$this->_clear_cached_properties();
447
+	}
448
+
449
+
450
+
451
+	/**
452
+	 * This returns the current internal set format for the date and time formats.
453
+	 *
454
+	 * @param bool $full           if true (default), then return the full format.  Otherwise will return an array
455
+	 *                             where the first value is the date format and the second value is the time format.
456
+	 * @return mixed string|array
457
+	 */
458
+	public function get_format($full = true)
459
+	{
460
+		return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt);
461
+	}
462
+
463
+
464
+
465
+	/**
466
+	 * cache
467
+	 * stores the passed model object on the current model object.
468
+	 * In certain circumstances, we can use this cached model object instead of querying for another one entirely.
469
+	 *
470
+	 * @param string        $relationName    one of the keys in the _model_relations array on the model. Eg
471
+	 *                                       'Registration' associated with this model object
472
+	 * @param EE_Base_Class $object_to_cache that has a relation to this model object. (Eg, if this is a Transaction,
473
+	 *                                       that could be a payment or a registration)
474
+	 * @param null          $cache_id        a string or number that will be used as the key for any Belongs_To_Many
475
+	 *                                       items which will be stored in an array on this object
476
+	 * @throws EE_Error
477
+	 * @return mixed    index into cache, or just TRUE if the relation is of type Belongs_To (because there's only one
478
+	 *                  related thing, no array)
479
+	 */
480
+	public function cache($relationName = '', $object_to_cache = null, $cache_id = null)
481
+	{
482
+		// its entirely possible that there IS no related object yet in which case there is nothing to cache.
483
+		if ( ! $object_to_cache instanceof EE_Base_Class) {
484
+			return false;
485
+		}
486
+		// also get "how" the object is related, or throw an error
487
+		if ( ! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) {
488
+			throw new EE_Error(sprintf(__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'),
489
+				$relationName, get_class($this)));
490
+		}
491
+		// how many things are related ?
492
+		if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
493
+			// if it's a "belongs to" relationship, then there's only one related model object  eg, if this is a registration, there's only 1 attendee for it
494
+			// so for these model objects just set it to be cached
495
+			$this->_model_relations[$relationName] = $object_to_cache;
496
+			$return = true;
497
+		} else {
498
+			// otherwise, this is the "many" side of a one to many relationship, so we'll add the object to the array of related objects for that type.
499
+			// eg: if this is an event, there are many registrations for that event, so we cache the registrations in an array
500
+			if ( ! is_array($this->_model_relations[$relationName])) {
501
+				// if for some reason, the cached item is a model object, then stick that in the array, otherwise start with an empty array
502
+				$this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class
503
+					? array($this->_model_relations[$relationName]) : array();
504
+			}
505
+			// first check for a cache_id which is normally empty
506
+			if ( ! empty($cache_id)) {
507
+				// if the cache_id exists, then it means we are purposely trying to cache this with a known key that can then be used to retrieve the object later on
508
+				$this->_model_relations[$relationName][$cache_id] = $object_to_cache;
509
+				$return = $cache_id;
510
+			} elseif ($object_to_cache->ID()) {
511
+				// OR the cached object originally came from the db, so let's just use it's PK for an ID
512
+				$this->_model_relations[$relationName][$object_to_cache->ID()] = $object_to_cache;
513
+				$return = $object_to_cache->ID();
514
+			} else {
515
+				// OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID
516
+				$this->_model_relations[$relationName][] = $object_to_cache;
517
+				// move the internal pointer to the end of the array
518
+				end($this->_model_relations[$relationName]);
519
+				// and grab the key so that we can return it
520
+				$return = key($this->_model_relations[$relationName]);
521
+			}
522
+		}
523
+		return $return;
524
+	}
525
+
526
+
527
+
528
+	/**
529
+	 * For adding an item to the cached_properties property.
530
+	 *
531
+	 * @access protected
532
+	 * @param string      $fieldname the property item the corresponding value is for.
533
+	 * @param mixed       $value     The value we are caching.
534
+	 * @param string|null $cache_type
535
+	 * @return void
536
+	 * @throws \EE_Error
537
+	 */
538
+	protected function _set_cached_property($fieldname, $value, $cache_type = null)
539
+	{
540
+		//first make sure this property exists
541
+		$this->get_model()->field_settings_for($fieldname);
542
+		$cache_type = empty($cache_type) ? 'standard' : $cache_type;
543
+		$this->_cached_properties[$fieldname][$cache_type] = $value;
544
+	}
545
+
546
+
547
+
548
+	/**
549
+	 * This returns the value cached property if it exists OR the actual property value if the cache doesn't exist.
550
+	 * This also SETS the cache if we return the actual property!
551
+	 *
552
+	 * @param string $fieldname        the name of the property we're trying to retrieve
553
+	 * @param bool   $pretty
554
+	 * @param string $extra_cache_ref  This allows the user to specify an extra cache ref for the given property
555
+	 *                                 (in cases where the same property may be used for different outputs
556
+	 *                                 - i.e. datetime, money etc.)
557
+	 *                                 It can also accept certain pre-defined "schema" strings
558
+	 *                                 to define how to output the property.
559
+	 *                                 see the field's prepare_for_pretty_echoing for what strings can be used
560
+	 * @return mixed                   whatever the value for the property is we're retrieving
561
+	 * @throws \EE_Error
562
+	 */
563
+	protected function _get_cached_property($fieldname, $pretty = false, $extra_cache_ref = null)
564
+	{
565
+		//verify the field exists
566
+		$this->get_model()->field_settings_for($fieldname);
567
+		$cache_type = $pretty ? 'pretty' : 'standard';
568
+		$cache_type .= ! empty($extra_cache_ref) ? '_' . $extra_cache_ref : '';
569
+		if (isset($this->_cached_properties[$fieldname][$cache_type])) {
570
+			return $this->_cached_properties[$fieldname][$cache_type];
571
+		}
572
+		$field_obj = $this->get_model()->field_settings_for($fieldname);
573
+		if ($field_obj instanceof EE_Model_Field_Base) {
574
+			// If this is an EE_Datetime_Field we need to make sure timezone, formats, and output are correct
575
+			if ($field_obj instanceof EE_Datetime_Field) {
576
+				$this->_prepare_datetime_field($field_obj, $pretty, $extra_cache_ref);
577
+			}
578
+			if ( ! isset($this->_fields[$fieldname])) {
579
+				$this->_fields[$fieldname] = null;
580
+			}
581
+			$value = $pretty
582
+				? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref)
583
+				: $field_obj->prepare_for_get($this->_fields[$fieldname]);
584
+			$this->_set_cached_property($fieldname, $value, $cache_type);
585
+			return $value;
586
+		}
587
+		return null;
588
+	}
589
+
590
+
591
+
592
+	/**
593
+	 * set timezone, formats, and output for EE_Datetime_Field objects
594
+	 *
595
+	 * @param \EE_Datetime_Field $datetime_field
596
+	 * @param bool               $pretty
597
+	 * @param null $date_or_time
598
+	 * @return void
599
+	 * @throws \EE_Error
600
+	 */
601
+	protected function _prepare_datetime_field(
602
+		EE_Datetime_Field $datetime_field,
603
+		$pretty = false,
604
+		$date_or_time = null
605
+	) {
606
+		$datetime_field->set_timezone($this->_timezone);
607
+		$datetime_field->set_date_format($this->_dt_frmt, $pretty);
608
+		$datetime_field->set_time_format($this->_tm_frmt, $pretty);
609
+		//set the output returned
610
+		switch ($date_or_time) {
611
+			case 'D' :
612
+				$datetime_field->set_date_time_output('date');
613
+				break;
614
+			case 'T' :
615
+				$datetime_field->set_date_time_output('time');
616
+				break;
617
+			default :
618
+				$datetime_field->set_date_time_output();
619
+		}
620
+	}
621
+
622
+
623
+
624
+	/**
625
+	 * This just takes care of clearing out the cached_properties
626
+	 *
627
+	 * @return void
628
+	 */
629
+	protected function _clear_cached_properties()
630
+	{
631
+		$this->_cached_properties = array();
632
+	}
633
+
634
+
635
+
636
+	/**
637
+	 * This just clears out ONE property if it exists in the cache
638
+	 *
639
+	 * @param  string $property_name the property to remove if it exists (from the _cached_properties array)
640
+	 * @return void
641
+	 */
642
+	protected function _clear_cached_property($property_name)
643
+	{
644
+		if (isset($this->_cached_properties[$property_name])) {
645
+			unset($this->_cached_properties[$property_name]);
646
+		}
647
+	}
648
+
649
+
650
+
651
+	/**
652
+	 * Ensures that this related thing is a model object.
653
+	 *
654
+	 * @param mixed  $object_or_id EE_base_Class/int/string either a related model object, or its ID
655
+	 * @param string $model_name   name of the related thing, eg 'Attendee',
656
+	 * @return EE_Base_Class
657
+	 * @throws \EE_Error
658
+	 */
659
+	protected function ensure_related_thing_is_model_obj($object_or_id, $model_name)
660
+	{
661
+		$other_model_instance = self::_get_model_instance_with_name(
662
+			self::_get_model_classname($model_name),
663
+			$this->_timezone
664
+		);
665
+		return $other_model_instance->ensure_is_obj($object_or_id);
666
+	}
667
+
668
+
669
+
670
+	/**
671
+	 * Forgets the cached model of the given relation Name. So the next time we request it,
672
+	 * we will fetch it again from the database. (Handy if you know it's changed somehow).
673
+	 * If a specific object is supplied, and the relationship to it is either a HasMany or HABTM,
674
+	 * then only remove that one object from our cached array. Otherwise, clear the entire list
675
+	 *
676
+	 * @param string $relationName                         one of the keys in the _model_relations array on the model.
677
+	 *                                                     Eg 'Registration'
678
+	 * @param mixed  $object_to_remove_or_index_into_array or an index into the array of cached things, or NULL
679
+	 *                                                     if you intend to use $clear_all = TRUE, or the relation only
680
+	 *                                                     has 1 object anyways (ie, it's a BelongsToRelation)
681
+	 * @param bool   $clear_all                            This flags clearing the entire cache relation property if
682
+	 *                                                     this is HasMany or HABTM.
683
+	 * @throws EE_Error
684
+	 * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a
685
+	 *                       relation from all
686
+	 */
687
+	public function clear_cache($relationName, $object_to_remove_or_index_into_array = null, $clear_all = false)
688
+	{
689
+		$relationship_to_model = $this->get_model()->related_settings_for($relationName);
690
+		$index_in_cache = '';
691
+		if ( ! $relationship_to_model) {
692
+			throw new EE_Error(
693
+				sprintf(
694
+					__("There is no relationship to %s on a %s. Cannot clear that cache", 'event_espresso'),
695
+					$relationName,
696
+					get_class($this)
697
+				)
698
+			);
699
+		}
700
+		if ($clear_all) {
701
+			$obj_removed = true;
702
+			$this->_model_relations[$relationName] = null;
703
+		} elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) {
704
+			$obj_removed = $this->_model_relations[$relationName];
705
+			$this->_model_relations[$relationName] = null;
706
+		} else {
707
+			if ($object_to_remove_or_index_into_array instanceof EE_Base_Class
708
+				&& $object_to_remove_or_index_into_array->ID()
709
+			) {
710
+				$index_in_cache = $object_to_remove_or_index_into_array->ID();
711
+				if (is_array($this->_model_relations[$relationName])
712
+					&& ! isset($this->_model_relations[$relationName][$index_in_cache])
713
+				) {
714
+					$index_found_at = null;
715
+					//find this object in the array even though it has a different key
716
+					foreach ($this->_model_relations[$relationName] as $index => $obj) {
717
+						if (
718
+							$obj instanceof EE_Base_Class
719
+							&& (
720
+								$obj == $object_to_remove_or_index_into_array
721
+								|| $obj->ID() === $object_to_remove_or_index_into_array->ID()
722
+							)
723
+						) {
724
+							$index_found_at = $index;
725
+							break;
726
+						}
727
+					}
728
+					if ($index_found_at) {
729
+						$index_in_cache = $index_found_at;
730
+					} else {
731
+						//it wasn't found. huh. well obviously it doesn't need to be removed from teh cache
732
+						//if it wasn't in it to begin with. So we're done
733
+						return $object_to_remove_or_index_into_array;
734
+					}
735
+				}
736
+			} elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) {
737
+				//so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it!
738
+				foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) {
739
+					if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) {
740
+						$index_in_cache = $index;
741
+					}
742
+				}
743
+			} else {
744
+				$index_in_cache = $object_to_remove_or_index_into_array;
745
+			}
746
+			//supposedly we've found it. But it could just be that the client code
747
+			//provided a bad index/object
748
+			if (
749
+			isset(
750
+				$this->_model_relations[$relationName],
751
+				$this->_model_relations[$relationName][$index_in_cache]
752
+			)
753
+			) {
754
+				$obj_removed = $this->_model_relations[$relationName][$index_in_cache];
755
+				unset($this->_model_relations[$relationName][$index_in_cache]);
756
+			} else {
757
+				//that thing was never cached anyways.
758
+				$obj_removed = null;
759
+			}
760
+		}
761
+		return $obj_removed;
762
+	}
763
+
764
+
765
+
766
+	/**
767
+	 * update_cache_after_object_save
768
+	 * Allows a cached item to have it's cache ID (within the array of cached items) reset using the new ID it has
769
+	 * obtained after being saved to the db
770
+	 *
771
+	 * @param string         $relationName       - the type of object that is cached
772
+	 * @param \EE_Base_Class $newly_saved_object - the newly saved object to be re-cached
773
+	 * @param string         $current_cache_id   - the ID that was used when originally caching the object
774
+	 * @return boolean TRUE on success, FALSE on fail
775
+	 * @throws \EE_Error
776
+	 */
777
+	public function update_cache_after_object_save(
778
+		$relationName,
779
+		EE_Base_Class $newly_saved_object,
780
+		$current_cache_id = ''
781
+	) {
782
+		// verify that incoming object is of the correct type
783
+		$obj_class = 'EE_' . $relationName;
784
+		if ($newly_saved_object instanceof $obj_class) {
785
+			/* @type EE_Base_Class $newly_saved_object */
786
+			// now get the type of relation
787
+			$relationship_to_model = $this->get_model()->related_settings_for($relationName);
788
+			// if this is a 1:1 relationship
789
+			if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
790
+				// then just replace the cached object with the newly saved object
791
+				$this->_model_relations[$relationName] = $newly_saved_object;
792
+				return true;
793
+				// or if it's some kind of sordid feral polyamorous relationship...
794
+			} elseif (is_array($this->_model_relations[$relationName])
795
+					  && isset($this->_model_relations[$relationName][$current_cache_id])
796
+			) {
797
+				// then remove the current cached item
798
+				unset($this->_model_relations[$relationName][$current_cache_id]);
799
+				// and cache the newly saved object using it's new ID
800
+				$this->_model_relations[$relationName][$newly_saved_object->ID()] = $newly_saved_object;
801
+				return true;
802
+			}
803
+		}
804
+		return false;
805
+	}
806
+
807
+
808
+
809
+	/**
810
+	 * Fetches a single EE_Base_Class on that relation. (If the relation is of type
811
+	 * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects)
812
+	 *
813
+	 * @param string $relationName
814
+	 * @return EE_Base_Class
815
+	 */
816
+	public function get_one_from_cache($relationName)
817
+	{
818
+		$cached_array_or_object = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName]
819
+			: null;
820
+		if (is_array($cached_array_or_object)) {
821
+			return array_shift($cached_array_or_object);
822
+		} else {
823
+			return $cached_array_or_object;
824
+		}
825
+	}
826
+
827
+
828
+
829
+	/**
830
+	 * Fetches a single EE_Base_Class on that relation. (If the relation is of type
831
+	 * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects)
832
+	 *
833
+	 * @param string $relationName
834
+	 * @throws \EE_Error
835
+	 * @return EE_Base_Class[] NOT necessarily indexed by primary keys
836
+	 */
837
+	public function get_all_from_cache($relationName)
838
+	{
839
+		$objects = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName] : array();
840
+		// if the result is not an array, but exists, make it an array
841
+		$objects = is_array($objects) ? $objects : array($objects);
842
+		//bugfix for https://events.codebasehq.com/projects/event-espresso/tickets/7143
843
+		//basically, if this model object was stored in the session, and these cached model objects
844
+		//already have IDs, let's make sure they're in their model's entity mapper
845
+		//otherwise we will have duplicates next time we call
846
+		// EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() );
847
+		$model = EE_Registry::instance()->load_model($relationName);
848
+		foreach ($objects as $model_object) {
849
+			if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) {
850
+				//ensure its in the map if it has an ID; otherwise it will be added to the map when its saved
851
+				if ($model_object->ID()) {
852
+					$model->add_to_entity_map($model_object);
853
+				}
854
+			} else {
855
+				throw new EE_Error(
856
+					sprintf(
857
+						__(
858
+							'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object',
859
+							'event_espresso'
860
+						),
861
+						$relationName,
862
+						gettype($model_object)
863
+					)
864
+				);
865
+			}
866
+		}
867
+		return $objects;
868
+	}
869
+
870
+
871
+
872
+	/**
873
+	 * Returns the next x number of EE_Base_Class objects in sequence from this object as found in the database
874
+	 * matching the given query conditions.
875
+	 *
876
+	 * @param null  $field_to_order_by  What field is being used as the reference point.
877
+	 * @param int   $limit              How many objects to return.
878
+	 * @param array $query_params       Any additional conditions on the query.
879
+	 * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
880
+	 *                                  you can indicate just the columns you want returned
881
+	 * @return array|EE_Base_Class[]
882
+	 * @throws \EE_Error
883
+	 */
884
+	public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null)
885
+	{
886
+		$field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
887
+			? $this->get_model()->get_primary_key_field()->get_name()
888
+			: $field_to_order_by;
889
+		$current_value = ! empty($field) ? $this->get($field) : null;
890
+		if (empty($field) || empty($current_value)) {
891
+			return array();
892
+		}
893
+		return $this->get_model()->next_x($current_value, $field, $limit, $query_params, $columns_to_select);
894
+	}
895
+
896
+
897
+
898
+	/**
899
+	 * Returns the previous x number of EE_Base_Class objects in sequence from this object as found in the database
900
+	 * matching the given query conditions.
901
+	 *
902
+	 * @param null  $field_to_order_by  What field is being used as the reference point.
903
+	 * @param int   $limit              How many objects to return.
904
+	 * @param array $query_params       Any additional conditions on the query.
905
+	 * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
906
+	 *                                  you can indicate just the columns you want returned
907
+	 * @return array|EE_Base_Class[]
908
+	 * @throws \EE_Error
909
+	 */
910
+	public function previous_x(
911
+		$field_to_order_by = null,
912
+		$limit = 1,
913
+		$query_params = array(),
914
+		$columns_to_select = null
915
+	) {
916
+		$field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
917
+			? $this->get_model()->get_primary_key_field()->get_name()
918
+			: $field_to_order_by;
919
+		$current_value = ! empty($field) ? $this->get($field) : null;
920
+		if (empty($field) || empty($current_value)) {
921
+			return array();
922
+		}
923
+		return $this->get_model()->previous_x($current_value, $field, $limit, $query_params, $columns_to_select);
924
+	}
925
+
926
+
927
+
928
+	/**
929
+	 * Returns the next EE_Base_Class object in sequence from this object as found in the database
930
+	 * matching the given query conditions.
931
+	 *
932
+	 * @param null  $field_to_order_by  What field is being used as the reference point.
933
+	 * @param array $query_params       Any additional conditions on the query.
934
+	 * @param null  $columns_to_select  If left null, then an array of EE_Base_Class objects is returned, otherwise
935
+	 *                                  you can indicate just the columns you want returned
936
+	 * @return array|EE_Base_Class
937
+	 * @throws \EE_Error
938
+	 */
939
+	public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null)
940
+	{
941
+		$field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
942
+			? $this->get_model()->get_primary_key_field()->get_name()
943
+			: $field_to_order_by;
944
+		$current_value = ! empty($field) ? $this->get($field) : null;
945
+		if (empty($field) || empty($current_value)) {
946
+			return array();
947
+		}
948
+		return $this->get_model()->next($current_value, $field, $query_params, $columns_to_select);
949
+	}
950
+
951
+
952
+
953
+	/**
954
+	 * Returns the previous EE_Base_Class object in sequence from this object as found in the database
955
+	 * matching the given query conditions.
956
+	 *
957
+	 * @param null  $field_to_order_by  What field is being used as the reference point.
958
+	 * @param array $query_params       Any additional conditions on the query.
959
+	 * @param null  $columns_to_select  If left null, then an EE_Base_Class object is returned, otherwise
960
+	 *                                  you can indicate just the column you want returned
961
+	 * @return array|EE_Base_Class
962
+	 * @throws \EE_Error
963
+	 */
964
+	public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null)
965
+	{
966
+		$field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field()
967
+			? $this->get_model()->get_primary_key_field()->get_name()
968
+			: $field_to_order_by;
969
+		$current_value = ! empty($field) ? $this->get($field) : null;
970
+		if (empty($field) || empty($current_value)) {
971
+			return array();
972
+		}
973
+		return $this->get_model()->previous($current_value, $field, $query_params, $columns_to_select);
974
+	}
975
+
976
+
977
+
978
+	/**
979
+	 * Overrides parent because parent expects old models.
980
+	 * This also doesn't do any validation, and won't work for serialized arrays
981
+	 *
982
+	 * @param string $field_name
983
+	 * @param mixed  $field_value_from_db
984
+	 * @throws \EE_Error
985
+	 */
986
+	public function set_from_db($field_name, $field_value_from_db)
987
+	{
988
+		$field_obj = $this->get_model()->field_settings_for($field_name);
989
+		if ($field_obj instanceof EE_Model_Field_Base) {
990
+			//you would think the DB has no NULLs for non-null label fields right? wrong!
991
+			//eg, a CPT model object could have an entry in the posts table, but no
992
+			//entry in the meta table. Meaning that all its columns in the meta table
993
+			//are null! yikes! so when we find one like that, use defaults for its meta columns
994
+			if ($field_value_from_db === null) {
995
+				if ($field_obj->is_nullable()) {
996
+					//if the field allows nulls, then let it be null
997
+					$field_value = null;
998
+				} else {
999
+					$field_value = $field_obj->get_default_value();
1000
+				}
1001
+			} else {
1002
+				$field_value = $field_obj->prepare_for_set_from_db($field_value_from_db);
1003
+			}
1004
+			$this->_fields[$field_name] = $field_value;
1005
+			$this->_clear_cached_property($field_name);
1006
+		}
1007
+	}
1008
+
1009
+
1010
+
1011
+	/**
1012
+	 * verifies that the specified field is of the correct type
1013
+	 *
1014
+	 * @param string $field_name
1015
+	 * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1016
+	 *                                (in cases where the same property may be used for different outputs
1017
+	 *                                - i.e. datetime, money etc.)
1018
+	 * @return mixed
1019
+	 * @throws \EE_Error
1020
+	 */
1021
+	public function get($field_name, $extra_cache_ref = null)
1022
+	{
1023
+		return $this->_get_cached_property($field_name, false, $extra_cache_ref);
1024
+	}
1025
+
1026
+
1027
+
1028
+	/**
1029
+	 * This method simply returns the RAW unprocessed value for the given property in this class
1030
+	 *
1031
+	 * @param  string $field_name A valid fieldname
1032
+	 * @return mixed              Whatever the raw value stored on the property is.
1033
+	 * @throws EE_Error if fieldSettings is misconfigured or the field doesn't exist.
1034
+	 */
1035
+	public function get_raw($field_name)
1036
+	{
1037
+		$field_settings = $this->get_model()->field_settings_for($field_name);
1038
+		return $field_settings instanceof EE_Datetime_Field && $this->_fields[$field_name] instanceof DateTime
1039
+			? $this->_fields[$field_name]->format('U')
1040
+			: $this->_fields[$field_name];
1041
+	}
1042
+
1043
+
1044
+
1045
+	/**
1046
+	 * This is used to return the internal DateTime object used for a field that is a
1047
+	 * EE_Datetime_Field.
1048
+	 *
1049
+	 * @param string $field_name               The field name retrieving the DateTime object.
1050
+	 * @return mixed null | false | DateTime  If the requested field is NOT a EE_Datetime_Field then
1051
+	 * @throws \EE_Error
1052
+	 *                                         an error is set and false returned.  If the field IS an
1053
+	 *                                         EE_Datetime_Field and but the field value is null, then
1054
+	 *                                         just null is returned (because that indicates that likely
1055
+	 *                                         this field is nullable).
1056
+	 */
1057
+	public function get_DateTime_object($field_name)
1058
+	{
1059
+		$field_settings = $this->get_model()->field_settings_for($field_name);
1060
+		if ( ! $field_settings instanceof EE_Datetime_Field) {
1061
+			EE_Error::add_error(
1062
+				sprintf(
1063
+					__(
1064
+						'The field %s is not an EE_Datetime_Field field.  There is no DateTime object stored on this field type.',
1065
+						'event_espresso'
1066
+					),
1067
+					$field_name
1068
+				),
1069
+				__FILE__,
1070
+				__FUNCTION__,
1071
+				__LINE__
1072
+			);
1073
+			return false;
1074
+		}
1075
+		return $this->_fields[$field_name];
1076
+	}
1077
+
1078
+
1079
+
1080
+	/**
1081
+	 * To be used in template to immediately echo out the value, and format it for output.
1082
+	 * Eg, should call stripslashes and whatnot before echoing
1083
+	 *
1084
+	 * @param string $field_name      the name of the field as it appears in the DB
1085
+	 * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1086
+	 *                                (in cases where the same property may be used for different outputs
1087
+	 *                                - i.e. datetime, money etc.)
1088
+	 * @return void
1089
+	 * @throws \EE_Error
1090
+	 */
1091
+	public function e($field_name, $extra_cache_ref = null)
1092
+	{
1093
+		echo $this->get_pretty($field_name, $extra_cache_ref);
1094
+	}
1095
+
1096
+
1097
+
1098
+	/**
1099
+	 * Exactly like e(), echoes out the field, but sets its schema to 'form_input', so that it
1100
+	 * can be easily used as the value of form input.
1101
+	 *
1102
+	 * @param string $field_name
1103
+	 * @return void
1104
+	 * @throws \EE_Error
1105
+	 */
1106
+	public function f($field_name)
1107
+	{
1108
+		$this->e($field_name, 'form_input');
1109
+	}
1110
+
1111
+
1112
+
1113
+	/**
1114
+	 * @param string $field_name
1115
+	 * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property
1116
+	 *                                (in cases where the same property may be used for different outputs
1117
+	 *                                - i.e. datetime, money etc.)
1118
+	 * @return mixed
1119
+	 * @throws \EE_Error
1120
+	 */
1121
+	public function get_pretty($field_name, $extra_cache_ref = null)
1122
+	{
1123
+		return $this->_get_cached_property($field_name, true, $extra_cache_ref);
1124
+	}
1125
+
1126
+
1127
+
1128
+	/**
1129
+	 * This simply returns the datetime for the given field name
1130
+	 * Note: this protected function is called by the wrapper get_date or get_time or get_datetime functions
1131
+	 * (and the equivalent e_date, e_time, e_datetime).
1132
+	 *
1133
+	 * @access   protected
1134
+	 * @param string   $field_name   Field on the instantiated EE_Base_Class child object
1135
+	 * @param string   $dt_frmt      valid datetime format used for date
1136
+	 *                               (if '' then we just use the default on the field,
1137
+	 *                               if NULL we use the last-used format)
1138
+	 * @param string   $tm_frmt      Same as above except this is for time format
1139
+	 * @param string   $date_or_time if NULL then both are returned, otherwise "D" = only date and "T" = only time.
1140
+	 * @param  boolean $echo         Whether the dtt is echoing using pretty echoing or just returned using vanilla get
1141
+	 * @return string|bool|EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown
1142
+	 *                               if field is not a valid dtt field, or void if echoing
1143
+	 * @throws \EE_Error
1144
+	 */
1145
+	protected function _get_datetime($field_name, $dt_frmt = '', $tm_frmt = '', $date_or_time = '', $echo = false)
1146
+	{
1147
+		// clear cached property
1148
+		$this->_clear_cached_property($field_name);
1149
+		//reset format properties because they are used in get()
1150
+		$this->_dt_frmt = $dt_frmt !== '' ? $dt_frmt : $this->_dt_frmt;
1151
+		$this->_tm_frmt = $tm_frmt !== '' ? $tm_frmt : $this->_tm_frmt;
1152
+		if ($echo) {
1153
+			$this->e($field_name, $date_or_time);
1154
+			return '';
1155
+		}
1156
+		return $this->get($field_name, $date_or_time);
1157
+	}
1158
+
1159
+
1160
+
1161
+	/**
1162
+	 * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the date
1163
+	 * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1164
+	 * other echoes the pretty value for dtt)
1165
+	 *
1166
+	 * @param  string $field_name name of model object datetime field holding the value
1167
+	 * @param  string $format     format for the date returned (if NULL we use default in dt_frmt property)
1168
+	 * @return string            datetime value formatted
1169
+	 * @throws \EE_Error
1170
+	 */
1171
+	public function get_date($field_name, $format = '')
1172
+	{
1173
+		return $this->_get_datetime($field_name, $format, null, 'D');
1174
+	}
1175
+
1176
+
1177
+
1178
+	/**
1179
+	 * @param      $field_name
1180
+	 * @param string $format
1181
+	 * @throws \EE_Error
1182
+	 */
1183
+	public function e_date($field_name, $format = '')
1184
+	{
1185
+		$this->_get_datetime($field_name, $format, null, 'D', true);
1186
+	}
1187
+
1188
+
1189
+
1190
+	/**
1191
+	 * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the time
1192
+	 * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1193
+	 * other echoes the pretty value for dtt)
1194
+	 *
1195
+	 * @param  string $field_name name of model object datetime field holding the value
1196
+	 * @param  string $format     format for the time returned ( if NULL we use default in tm_frmt property)
1197
+	 * @return string             datetime value formatted
1198
+	 * @throws \EE_Error
1199
+	 */
1200
+	public function get_time($field_name, $format = '')
1201
+	{
1202
+		return $this->_get_datetime($field_name, null, $format, 'T');
1203
+	}
1204
+
1205
+
1206
+
1207
+	/**
1208
+	 * @param      $field_name
1209
+	 * @param string $format
1210
+	 * @throws \EE_Error
1211
+	 */
1212
+	public function e_time($field_name, $format = '')
1213
+	{
1214
+		$this->_get_datetime($field_name, null, $format, 'T', true);
1215
+	}
1216
+
1217
+
1218
+
1219
+	/**
1220
+	 * below are wrapper functions for the various datetime outputs that can be obtained for returning the date AND
1221
+	 * time portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the
1222
+	 * other echoes the pretty value for dtt)
1223
+	 *
1224
+	 * @param  string $field_name name of model object datetime field holding the value
1225
+	 * @param  string $dt_frmt    format for the date returned (if NULL we use default in dt_frmt property)
1226
+	 * @param  string $tm_frmt    format for the time returned (if NULL we use default in tm_frmt property)
1227
+	 * @return string             datetime value formatted
1228
+	 * @throws \EE_Error
1229
+	 */
1230
+	public function get_datetime($field_name, $dt_frmt = '', $tm_frmt = '')
1231
+	{
1232
+		return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt);
1233
+	}
1234
+
1235
+
1236
+
1237
+	/**
1238
+	 * @param string $field_name
1239
+	 * @param string $dt_frmt
1240
+	 * @param string $tm_frmt
1241
+	 * @throws \EE_Error
1242
+	 */
1243
+	public function e_datetime($field_name, $dt_frmt = '', $tm_frmt = '')
1244
+	{
1245
+		$this->_get_datetime($field_name, $dt_frmt, $tm_frmt, null, true);
1246
+	}
1247
+
1248
+
1249
+
1250
+	/**
1251
+	 * Get the i8ln value for a date using the WordPress @see date_i18n function.
1252
+	 *
1253
+	 * @param string $field_name The EE_Datetime_Field reference for the date being retrieved.
1254
+	 * @param string $format     PHP valid date/time string format.  If none is provided then the internal set format
1255
+	 *                           on the object will be used.
1256
+	 * @return string Date and time string in set locale or false if no field exists for the given
1257
+	 * @throws \EE_Error
1258
+	 *                           field name.
1259
+	 */
1260
+	public function get_i18n_datetime($field_name, $format = '')
1261
+	{
1262
+		$format = empty($format) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format;
1263
+		return date_i18n(
1264
+			$format,
1265
+			EEH_DTT_Helper::get_timestamp_with_offset($this->get_raw($field_name), $this->_timezone)
1266
+		);
1267
+	}
1268
+
1269
+
1270
+
1271
+	/**
1272
+	 * This method validates whether the given field name is a valid field on the model object as well as it is of a
1273
+	 * type EE_Datetime_Field.  On success there will be returned the field settings.  On fail an EE_Error exception is
1274
+	 * thrown.
1275
+	 *
1276
+	 * @param  string $field_name The field name being checked
1277
+	 * @throws EE_Error
1278
+	 * @return EE_Datetime_Field
1279
+	 */
1280
+	protected function _get_dtt_field_settings($field_name)
1281
+	{
1282
+		$field = $this->get_model()->field_settings_for($field_name);
1283
+		//check if field is dtt
1284
+		if ($field instanceof EE_Datetime_Field) {
1285
+			return $field;
1286
+		} else {
1287
+			throw new EE_Error(sprintf(__('The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field.  Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor',
1288
+				'event_espresso'), $field_name, self::_get_model_classname(get_class($this))));
1289
+		}
1290
+	}
1291
+
1292
+
1293
+
1294
+
1295
+	/**
1296
+	 * NOTE ABOUT BELOW:
1297
+	 * These convenience date and time setters are for setting date and time independently.  In other words you might
1298
+	 * want to change the time on a datetime_field but leave the date the same (or vice versa). IF on the other hand
1299
+	 * you want to set both date and time at the same time, you can just use the models default set($fieldname,$value)
1300
+	 * method and make sure you send the entire datetime value for setting.
1301
+	 */
1302
+	/**
1303
+	 * sets the time on a datetime property
1304
+	 *
1305
+	 * @access protected
1306
+	 * @param string|Datetime $time      a valid time string for php datetime functions (or DateTime object)
1307
+	 * @param string          $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field)
1308
+	 * @throws \EE_Error
1309
+	 */
1310
+	protected function _set_time_for($time, $fieldname)
1311
+	{
1312
+		$this->_set_date_time('T', $time, $fieldname);
1313
+	}
1314
+
1315
+
1316
+
1317
+	/**
1318
+	 * sets the date on a datetime property
1319
+	 *
1320
+	 * @access protected
1321
+	 * @param string|DateTime $date      a valid date string for php datetime functions ( or DateTime object)
1322
+	 * @param string          $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field)
1323
+	 * @throws \EE_Error
1324
+	 */
1325
+	protected function _set_date_for($date, $fieldname)
1326
+	{
1327
+		$this->_set_date_time('D', $date, $fieldname);
1328
+	}
1329
+
1330
+
1331
+
1332
+	/**
1333
+	 * This takes care of setting a date or time independently on a given model object property. This method also
1334
+	 * verifies that the given fieldname matches a model object property and is for a EE_Datetime_Field field
1335
+	 *
1336
+	 * @access protected
1337
+	 * @param string          $what           "T" for time, 'B' for both, 'D' for Date.
1338
+	 * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object)
1339
+	 * @param string          $fieldname      the name of the field the date OR time is being set on (must match a
1340
+	 *                                        EE_Datetime_Field property)
1341
+	 * @throws \EE_Error
1342
+	 */
1343
+	protected function _set_date_time($what = 'T', $datetime_value, $fieldname)
1344
+	{
1345
+		$field = $this->_get_dtt_field_settings($fieldname);
1346
+		$field->set_timezone($this->_timezone);
1347
+		$field->set_date_format($this->_dt_frmt);
1348
+		$field->set_time_format($this->_tm_frmt);
1349
+		switch ($what) {
1350
+			case 'T' :
1351
+				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_time(
1352
+					$datetime_value,
1353
+					$this->_fields[$fieldname]
1354
+				);
1355
+				break;
1356
+			case 'D' :
1357
+				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_date(
1358
+					$datetime_value,
1359
+					$this->_fields[$fieldname]
1360
+				);
1361
+				break;
1362
+			case 'B' :
1363
+				$this->_fields[$fieldname] = $field->prepare_for_set($datetime_value);
1364
+				break;
1365
+		}
1366
+		$this->_clear_cached_property($fieldname);
1367
+	}
1368
+
1369
+
1370
+
1371
+	/**
1372
+	 * This will return a timestamp for the website timezone but ONLY when the current website timezone is different
1373
+	 * than the timezone set for the website. NOTE, this currently only works well with methods that return values.  If
1374
+	 * you use it with methods that echo values the $_timestamp property may not get reset to its original value and
1375
+	 * that could lead to some unexpected results!
1376
+	 *
1377
+	 * @access public
1378
+	 * @param string               $field_name This is the name of the field on the object that contains the date/time
1379
+	 *                                         value being returned.
1380
+	 * @param string               $callback   must match a valid method in this class (defaults to get_datetime)
1381
+	 * @param mixed (array|string) $args       This is the arguments that will be passed to the callback.
1382
+	 * @param string               $prepend    You can include something to prepend on the timestamp
1383
+	 * @param string               $append     You can include something to append on the timestamp
1384
+	 * @throws EE_Error
1385
+	 * @return string timestamp
1386
+	 */
1387
+	public function display_in_my_timezone(
1388
+		$field_name,
1389
+		$callback = 'get_datetime',
1390
+		$args = null,
1391
+		$prepend = '',
1392
+		$append = ''
1393
+	) {
1394
+		$timezone = EEH_DTT_Helper::get_timezone();
1395
+		if ($timezone === $this->_timezone) {
1396
+			return '';
1397
+		}
1398
+		$original_timezone = $this->_timezone;
1399
+		$this->set_timezone($timezone);
1400
+		$fn = (array)$field_name;
1401
+		$args = array_merge($fn, (array)$args);
1402
+		if ( ! method_exists($this, $callback)) {
1403
+			throw new EE_Error(
1404
+				sprintf(
1405
+					__(
1406
+						'The method named "%s" given as the callback param in "display_in_my_timezone" does not exist.  Please check your spelling',
1407
+						'event_espresso'
1408
+					),
1409
+					$callback
1410
+				)
1411
+			);
1412
+		}
1413
+		$args = (array)$args;
1414
+		$return = $prepend . call_user_func_array(array($this, $callback), $args) . $append;
1415
+		$this->set_timezone($original_timezone);
1416
+		return $return;
1417
+	}
1418
+
1419
+
1420
+
1421
+	/**
1422
+	 * Deletes this model object.
1423
+	 * This calls the `EE_Base_Class::_delete` method.  Child classes wishing to change default behaviour should
1424
+	 * override
1425
+	 * `EE_Base_Class::_delete` NOT this class.
1426
+	 *
1427
+	 * @return boolean | int
1428
+	 * @throws \EE_Error
1429
+	 */
1430
+	public function delete()
1431
+	{
1432
+		/**
1433
+		 * Called just before the `EE_Base_Class::_delete` method call.
1434
+		 * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
1435
+		 * should be aware that `_delete` may not always result in a permanent delete.  For example, `EE_Soft_Delete_Base_Class::_delete`
1436
+		 * soft deletes (trash) the object and does not permanently delete it.
1437
+		 *
1438
+		 * @param EE_Base_Class $model_object about to be 'deleted'
1439
+		 */
1440
+		do_action('AHEE__EE_Base_Class__delete__before', $this);
1441
+		$result = $this->_delete();
1442
+		/**
1443
+		 * Called just after the `EE_Base_Class::_delete` method call.
1444
+		 * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
1445
+		 * should be aware that `_delete` may not always result in a permanent delete.  For example `EE_Soft_Base_Class::_delete`
1446
+		 * soft deletes (trash) the object and does not permanently delete it.
1447
+		 *
1448
+		 * @param EE_Base_Class $model_object that was just 'deleted'
1449
+		 * @param boolean       $result
1450
+		 */
1451
+		do_action('AHEE__EE_Base_Class__delete__end', $this, $result);
1452
+		return $result;
1453
+	}
1454
+
1455
+
1456
+
1457
+	/**
1458
+	 * Calls the specific delete method for the instantiated class.
1459
+	 * This method is called by the public `EE_Base_Class::delete` method.  Any child classes desiring to override
1460
+	 * default functionality for "delete" (which is to call `permanently_delete`) should override this method NOT
1461
+	 * `EE_Base_Class::delete`
1462
+	 *
1463
+	 * @return bool|int
1464
+	 * @throws \EE_Error
1465
+	 */
1466
+	protected function _delete()
1467
+	{
1468
+		return $this->delete_permanently();
1469
+	}
1470
+
1471
+
1472
+
1473
+	/**
1474
+	 * Deletes this model object permanently from db (but keep in mind related models my block the delete and return an
1475
+	 * error)
1476
+	 *
1477
+	 * @return bool | int
1478
+	 * @throws \EE_Error
1479
+	 */
1480
+	public function delete_permanently()
1481
+	{
1482
+		/**
1483
+		 * Called just before HARD deleting a model object
1484
+		 *
1485
+		 * @param EE_Base_Class $model_object about to be 'deleted'
1486
+		 */
1487
+		do_action('AHEE__EE_Base_Class__delete_permanently__before', $this);
1488
+		$model = $this->get_model();
1489
+		$result = $model->delete_permanently_by_ID($this->ID());
1490
+		$this->refresh_cache_of_related_objects();
1491
+		/**
1492
+		 * Called just after HARD deleting a model object
1493
+		 *
1494
+		 * @param EE_Base_Class $model_object that was just 'deleted'
1495
+		 * @param boolean       $result
1496
+		 */
1497
+		do_action('AHEE__EE_Base_Class__delete_permanently__end', $this, $result);
1498
+		return $result;
1499
+	}
1500
+
1501
+
1502
+
1503
+	/**
1504
+	 * When this model object is deleted, it may still be cached on related model objects. This clears the cache of
1505
+	 * related model objects
1506
+	 *
1507
+	 * @throws \EE_Error
1508
+	 */
1509
+	public function refresh_cache_of_related_objects()
1510
+	{
1511
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1512
+			if ( ! empty($this->_model_relations[$relation_name])) {
1513
+				$related_objects = $this->_model_relations[$relation_name];
1514
+				if ($relation_obj instanceof EE_Belongs_To_Relation) {
1515
+					//this relation only stores a single model object, not an array
1516
+					//but let's make it consistent
1517
+					$related_objects = array($related_objects);
1518
+				}
1519
+				foreach ($related_objects as $related_object) {
1520
+					//only refresh their cache if they're in memory
1521
+					if ($related_object instanceof EE_Base_Class) {
1522
+						$related_object->clear_cache($this->get_model()->get_this_model_name(), $this);
1523
+					}
1524
+				}
1525
+			}
1526
+		}
1527
+	}
1528
+
1529
+
1530
+
1531
+	/**
1532
+	 *        Saves this object to the database. An array may be supplied to set some values on this
1533
+	 * object just before saving.
1534
+	 *
1535
+	 * @access public
1536
+	 * @param array $set_cols_n_values keys are field names, values are their new values,
1537
+	 *                                 if provided during the save() method (often client code will change the fields'
1538
+	 *                                 values before calling save)
1539
+	 * @throws \EE_Error
1540
+	 * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object
1541
+	 *                                 isn't allowed to persist (as determined by EE_Base_Class::allow_persist())
1542
+	 */
1543
+	public function save($set_cols_n_values = array())
1544
+	{
1545
+		/**
1546
+		 * Filters the fields we're about to save on the model object
1547
+		 *
1548
+		 * @param array         $set_cols_n_values
1549
+		 * @param EE_Base_Class $model_object
1550
+		 */
1551
+		$set_cols_n_values = (array)apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values,
1552
+			$this);
1553
+		//set attributes as provided in $set_cols_n_values
1554
+		foreach ($set_cols_n_values as $column => $value) {
1555
+			$this->set($column, $value);
1556
+		}
1557
+		/**
1558
+		 * Saving a model object.
1559
+		 * Before we perform a save, this action is fired.
1560
+		 *
1561
+		 * @param EE_Base_Class $model_object the model object about to be saved.
1562
+		 */
1563
+		do_action('AHEE__EE_Base_Class__save__begin', $this);
1564
+		if ( ! $this->allow_persist()) {
1565
+			return 0;
1566
+		}
1567
+		//now get current attribute values
1568
+		$save_cols_n_values = $this->_fields;
1569
+		//if the object already has an ID, update it. Otherwise, insert it
1570
+		//also: change the assumption about values passed to the model NOT being prepare dby the model object. They have been
1571
+		$old_assumption_concerning_value_preparation = $this->get_model()
1572
+															->get_assumption_concerning_values_already_prepared_by_model_object();
1573
+		$this->get_model()->assume_values_already_prepared_by_model_object(true);
1574
+		//does this model have an autoincrement PK?
1575
+		if ($this->get_model()->has_primary_key_field()) {
1576
+			if ($this->get_model()->get_primary_key_field()->is_auto_increment()) {
1577
+				//ok check if it's set, if so: update; if not, insert
1578
+				if ( ! empty($save_cols_n_values[self::_get_primary_key_name(get_class($this))])) {
1579
+					$results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1580
+				} else {
1581
+					unset($save_cols_n_values[self::_get_primary_key_name(get_class($this))]);
1582
+					$results = $this->get_model()->insert($save_cols_n_values);
1583
+					if ($results) {
1584
+						//if successful, set the primary key
1585
+						//but don't use the normal SET method, because it will check if
1586
+						//an item with the same ID exists in the mapper & db, then
1587
+						//will find it in the db (because we just added it) and THAT object
1588
+						//will get added to the mapper before we can add this one!
1589
+						//but if we just avoid using the SET method, all that headache can be avoided
1590
+						$pk_field_name = self::_get_primary_key_name(get_class($this));
1591
+						$this->_fields[$pk_field_name] = $results;
1592
+						$this->_clear_cached_property($pk_field_name);
1593
+						$this->get_model()->add_to_entity_map($this);
1594
+						$this->_update_cached_related_model_objs_fks();
1595
+					}
1596
+				}
1597
+			} else {//PK is NOT auto-increment
1598
+				//so check if one like it already exists in the db
1599
+				if ($this->get_model()->exists_by_ID($this->ID())) {
1600
+					if (WP_DEBUG && ! $this->in_entity_map()) {
1601
+						throw new EE_Error(
1602
+							sprintf(
1603
+								__('Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s',
1604
+									'event_espresso'),
1605
+								get_class($this),
1606
+								get_class($this->get_model()) . '::instance()->add_to_entity_map()',
1607
+								get_class($this->get_model()) . '::instance()->get_one_by_ID()',
1608
+								'<br />'
1609
+							)
1610
+						);
1611
+					}
1612
+					$results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1613
+				} else {
1614
+					$results = $this->get_model()->insert($save_cols_n_values);
1615
+					$this->_update_cached_related_model_objs_fks();
1616
+				}
1617
+			}
1618
+		} else {//there is NO primary key
1619
+			$already_in_db = false;
1620
+			foreach ($this->get_model()->unique_indexes() as $index) {
1621
+				$uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields());
1622
+				if ($this->get_model()->exists(array($uniqueness_where_params))) {
1623
+					$already_in_db = true;
1624
+				}
1625
+			}
1626
+			if ($already_in_db) {
1627
+				$combined_pk_fields_n_values = array_intersect_key($save_cols_n_values,
1628
+					$this->get_model()->get_combined_primary_key_fields());
1629
+				$results = $this->get_model()->update($save_cols_n_values, $combined_pk_fields_n_values);
1630
+			} else {
1631
+				$results = $this->get_model()->insert($save_cols_n_values);
1632
+			}
1633
+		}
1634
+		//restore the old assumption about values being prepared by the model object
1635
+		$this->get_model()
1636
+			 ->assume_values_already_prepared_by_model_object($old_assumption_concerning_value_preparation);
1637
+		/**
1638
+		 * After saving the model object this action is called
1639
+		 *
1640
+		 * @param EE_Base_Class $model_object which was just saved
1641
+		 * @param boolean|int   $results      if it were updated, TRUE or FALSE; if it were newly inserted
1642
+		 *                                    the new ID (or 0 if an error occurred and it wasn't updated)
1643
+		 */
1644
+		do_action('AHEE__EE_Base_Class__save__end', $this, $results);
1645
+		return $results;
1646
+	}
1647
+
1648
+
1649
+
1650
+	/**
1651
+	 * Updates the foreign key on related models objects pointing to this to have this model object's ID
1652
+	 * as their foreign key.  If the cached related model objects already exist in the db, saves them (so that the DB
1653
+	 * is consistent) Especially useful in case we JUST added this model object ot the database and we want to let its
1654
+	 * cached relations with foreign keys to it know about that change. Eg: we've created a transaction but haven't
1655
+	 * saved it to the db. We also create a registration and don't save it to the DB, but we DO cache it on the
1656
+	 * transaction. Now, when we save the transaction, the registration's TXN_ID will be automatically updated, whether
1657
+	 * or not they exist in the DB (if they do, their DB records will be automatically updated)
1658
+	 *
1659
+	 * @return void
1660
+	 * @throws \EE_Error
1661
+	 */
1662
+	protected function _update_cached_related_model_objs_fks()
1663
+	{
1664
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1665
+			if ($relation_obj instanceof EE_Has_Many_Relation) {
1666
+				foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) {
1667
+					$fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to(
1668
+						$this->get_model()->get_this_model_name()
1669
+					);
1670
+					$related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID());
1671
+					if ($related_model_obj_in_cache->ID()) {
1672
+						$related_model_obj_in_cache->save();
1673
+					}
1674
+				}
1675
+			}
1676
+		}
1677
+	}
1678
+
1679
+
1680
+
1681
+	/**
1682
+	 * Saves this model object and its NEW cached relations to the database.
1683
+	 * (Meaning, for now, IT DOES NOT WORK if the cached items already exist in the DB.
1684
+	 * In order for that to work, we would need to mark model objects as dirty/clean...
1685
+	 * because otherwise, there's a potential for infinite looping of saving
1686
+	 * Saves the cached related model objects, and ensures the relation between them
1687
+	 * and this object and properly setup
1688
+	 *
1689
+	 * @return int ID of new model object on save; 0 on failure+
1690
+	 * @throws \EE_Error
1691
+	 */
1692
+	public function save_new_cached_related_model_objs()
1693
+	{
1694
+		//make sure this has been saved
1695
+		if ( ! $this->ID()) {
1696
+			$id = $this->save();
1697
+		} else {
1698
+			$id = $this->ID();
1699
+		}
1700
+		//now save all the NEW cached model objects  (ie they don't exist in the DB)
1701
+		foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) {
1702
+			if ($this->_model_relations[$relationName]) {
1703
+				//is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation)
1704
+				//or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)?
1705
+				if ($relationObj instanceof EE_Belongs_To_Relation) {
1706
+					//add a relation to that relation type (which saves the appropriate thing in the process)
1707
+					//but ONLY if it DOES NOT exist in the DB
1708
+					/* @var $related_model_obj EE_Base_Class */
1709
+					$related_model_obj = $this->_model_relations[$relationName];
1710
+					//					if( ! $related_model_obj->ID()){
1711
+					$this->_add_relation_to($related_model_obj, $relationName);
1712
+					$related_model_obj->save_new_cached_related_model_objs();
1713
+					//					}
1714
+				} else {
1715
+					foreach ($this->_model_relations[$relationName] as $related_model_obj) {
1716
+						//add a relation to that relation type (which saves the appropriate thing in the process)
1717
+						//but ONLY if it DOES NOT exist in the DB
1718
+						//						if( ! $related_model_obj->ID()){
1719
+						$this->_add_relation_to($related_model_obj, $relationName);
1720
+						$related_model_obj->save_new_cached_related_model_objs();
1721
+						//						}
1722
+					}
1723
+				}
1724
+			}
1725
+		}
1726
+		return $id;
1727
+	}
1728
+
1729
+
1730
+
1731
+	/**
1732
+	 * for getting a model while instantiated.
1733
+	 *
1734
+	 * @return \EEM_Base | \EEM_CPT_Base
1735
+	 */
1736
+	public function get_model()
1737
+	{
1738
+		$modelName = self::_get_model_classname(get_class($this));
1739
+		return self::_get_model_instance_with_name($modelName, $this->_timezone);
1740
+	}
1741
+
1742
+
1743
+
1744
+	/**
1745
+	 * @param $props_n_values
1746
+	 * @param $classname
1747
+	 * @return mixed bool|EE_Base_Class|EEM_CPT_Base
1748
+	 * @throws \EE_Error
1749
+	 */
1750
+	protected static function _get_object_from_entity_mapper($props_n_values, $classname)
1751
+	{
1752
+		//TODO: will not work for Term_Relationships because they have no PK!
1753
+		$primary_id_ref = self::_get_primary_key_name($classname);
1754
+		if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) {
1755
+			$id = $props_n_values[$primary_id_ref];
1756
+			return self::_get_model($classname)->get_from_entity_map($id);
1757
+		}
1758
+		return false;
1759
+	}
1760
+
1761
+
1762
+
1763
+	/**
1764
+	 * This is called by child static "new_instance" method and we'll check to see if there is an existing db entry for
1765
+	 * the primary key (if present in incoming values). If there is a key in the incoming array that matches the
1766
+	 * primary key for the model AND it is not null, then we check the db. If there's a an object we return it.  If not
1767
+	 * we return false.
1768
+	 *
1769
+	 * @param  array  $props_n_values   incoming array of properties and their values
1770
+	 * @param  string $classname        the classname of the child class
1771
+	 * @param null    $timezone
1772
+	 * @param array   $date_formats     incoming date_formats in an array where the first value is the
1773
+	 *                                  date_format and the second value is the time format
1774
+	 * @return mixed (EE_Base_Class|bool)
1775
+	 * @throws \EE_Error
1776
+	 */
1777
+	protected static function _check_for_object($props_n_values, $classname, $timezone = null, $date_formats = array())
1778
+	{
1779
+		$existing = null;
1780
+		if (self::_get_model($classname)->has_primary_key_field()) {
1781
+			$primary_id_ref = self::_get_primary_key_name($classname);
1782
+			if (array_key_exists($primary_id_ref, $props_n_values)
1783
+				&& ! empty($props_n_values[$primary_id_ref])
1784
+			) {
1785
+				$existing = self::_get_model($classname, $timezone)->get_one_by_ID(
1786
+					$props_n_values[$primary_id_ref]
1787
+				);
1788
+			}
1789
+		} elseif (self::_get_model($classname, $timezone)->has_all_combined_primary_key_fields($props_n_values)) {
1790
+			//no primary key on this model, but there's still a matching item in the DB
1791
+			$existing = self::_get_model($classname, $timezone)->get_one_by_ID(
1792
+				self::_get_model($classname, $timezone)->get_index_primary_key_string($props_n_values)
1793
+			);
1794
+		}
1795
+		if ($existing) {
1796
+			//set date formats if present before setting values
1797
+			if ( ! empty($date_formats) && is_array($date_formats)) {
1798
+				$existing->set_date_format($date_formats[0]);
1799
+				$existing->set_time_format($date_formats[1]);
1800
+			} else {
1801
+				//set default formats for date and time
1802
+				$existing->set_date_format(get_option('date_format'));
1803
+				$existing->set_time_format(get_option('time_format'));
1804
+			}
1805
+			foreach ($props_n_values as $property => $field_value) {
1806
+				$existing->set($property, $field_value);
1807
+			}
1808
+			return $existing;
1809
+		} else {
1810
+			return false;
1811
+		}
1812
+	}
1813
+
1814
+
1815
+
1816
+	/**
1817
+	 * Gets the EEM_*_Model for this class
1818
+	 *
1819
+	 * @access public now, as this is more convenient
1820
+	 * @param      $classname
1821
+	 * @param null $timezone
1822
+	 * @throws EE_Error
1823
+	 * @return EEM_Base
1824
+	 */
1825
+	protected static function _get_model($classname, $timezone = null)
1826
+	{
1827
+		//find model for this class
1828
+		if ( ! $classname) {
1829
+			throw new EE_Error(
1830
+				sprintf(
1831
+					__(
1832
+						"What were you thinking calling _get_model(%s)?? You need to specify the class name",
1833
+						"event_espresso"
1834
+					),
1835
+					$classname
1836
+				)
1837
+			);
1838
+		}
1839
+		$modelName = self::_get_model_classname($classname);
1840
+		return self::_get_model_instance_with_name($modelName, $timezone);
1841
+	}
1842
+
1843
+
1844
+
1845
+	/**
1846
+	 * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee)
1847
+	 *
1848
+	 * @param string $model_classname
1849
+	 * @param null   $timezone
1850
+	 * @return EEM_Base
1851
+	 */
1852
+	protected static function _get_model_instance_with_name($model_classname, $timezone = null)
1853
+	{
1854
+		$model_classname = str_replace('EEM_', '', $model_classname);
1855
+		$model = EE_Registry::instance()->load_model($model_classname);
1856
+		$model->set_timezone($timezone);
1857
+		return $model;
1858
+	}
1859
+
1860
+
1861
+
1862
+	/**
1863
+	 * If a model name is provided (eg Registration), gets the model classname for that model.
1864
+	 * Also works if a model class's classname is provided (eg EE_Registration).
1865
+	 *
1866
+	 * @param null $model_name
1867
+	 * @return string like EEM_Attendee
1868
+	 */
1869
+	private static function _get_model_classname($model_name = null)
1870
+	{
1871
+		if (strpos($model_name, "EE_") === 0) {
1872
+			$model_classname = str_replace("EE_", "EEM_", $model_name);
1873
+		} else {
1874
+			$model_classname = "EEM_" . $model_name;
1875
+		}
1876
+		return $model_classname;
1877
+	}
1878
+
1879
+
1880
+
1881
+	/**
1882
+	 * returns the name of the primary key attribute
1883
+	 *
1884
+	 * @param null $classname
1885
+	 * @throws EE_Error
1886
+	 * @return string
1887
+	 */
1888
+	protected static function _get_primary_key_name($classname = null)
1889
+	{
1890
+		if ( ! $classname) {
1891
+			throw new EE_Error(
1892
+				sprintf(
1893
+					__("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"),
1894
+					$classname
1895
+				)
1896
+			);
1897
+		}
1898
+		return self::_get_model($classname)->get_primary_key_field()->get_name();
1899
+	}
1900
+
1901
+
1902
+
1903
+	/**
1904
+	 * Gets the value of the primary key.
1905
+	 * If the object hasn't yet been saved, it should be whatever the model field's default was
1906
+	 * (eg, if this were the EE_Event class, look at the primary key field on EEM_Event and see what its default value
1907
+	 * is. Usually defaults for integer primary keys are 0; string primary keys are usually NULL).
1908
+	 *
1909
+	 * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string
1910
+	 * @throws \EE_Error
1911
+	 */
1912
+	public function ID()
1913
+	{
1914
+		//now that we know the name of the variable, use a variable variable to get its value and return its
1915
+		if ($this->get_model()->has_primary_key_field()) {
1916
+			return $this->_fields[self::_get_primary_key_name(get_class($this))];
1917
+		} else {
1918
+			return $this->get_model()->get_index_primary_key_string($this->_fields);
1919
+		}
1920
+	}
1921
+
1922
+
1923
+
1924
+	/**
1925
+	 * Adds a relationship to the specified EE_Base_Class object, given the relationship's name. Eg, if the current
1926
+	 * model is related to a group of events, the $relationName should be 'Event', and should be a key in the EE
1927
+	 * Model's $_model_relations array. If this model object doesn't exist in the DB, just caches the related thing
1928
+	 *
1929
+	 * @param mixed  $otherObjectModelObjectOrID       EE_Base_Class or the ID of the other object
1930
+	 * @param string $relationName                     eg 'Events','Question',etc.
1931
+	 *                                                 an attendee to a group, you also want to specify which role they
1932
+	 *                                                 will have in that group. So you would use this parameter to
1933
+	 *                                                 specify array('role-column-name'=>'role-id')
1934
+	 * @param array  $extra_join_model_fields_n_values You can optionally include an array of key=>value pairs that
1935
+	 *                                                 allow you to further constrict the relation to being added.
1936
+	 *                                                 However, keep in mind that the columns (keys) given must match a
1937
+	 *                                                 column on the JOIN table and currently only the HABTM models
1938
+	 *                                                 accept these additional conditions.  Also remember that if an
1939
+	 *                                                 exact match isn't found for these extra cols/val pairs, then a
1940
+	 *                                                 NEW row is created in the join table.
1941
+	 * @param null   $cache_id
1942
+	 * @throws EE_Error
1943
+	 * @return EE_Base_Class the object the relation was added to
1944
+	 */
1945
+	public function _add_relation_to(
1946
+		$otherObjectModelObjectOrID,
1947
+		$relationName,
1948
+		$extra_join_model_fields_n_values = array(),
1949
+		$cache_id = null
1950
+	) {
1951
+		//if this thing exists in the DB, save the relation to the DB
1952
+		if ($this->ID()) {
1953
+			$otherObject = $this->get_model()
1954
+								->add_relationship_to($this, $otherObjectModelObjectOrID, $relationName,
1955
+									$extra_join_model_fields_n_values);
1956
+			//clear cache so future get_many_related and get_first_related() return new results.
1957
+			$this->clear_cache($relationName, $otherObject, true);
1958
+			if ($otherObject instanceof EE_Base_Class) {
1959
+				$otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
1960
+			}
1961
+		} else {
1962
+			//this thing doesn't exist in the DB,  so just cache it
1963
+			if ( ! $otherObjectModelObjectOrID instanceof EE_Base_Class) {
1964
+				throw new EE_Error(sprintf(
1965
+					__('Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s',
1966
+						'event_espresso'),
1967
+					$otherObjectModelObjectOrID,
1968
+					get_class($this)
1969
+				));
1970
+			} else {
1971
+				$otherObject = $otherObjectModelObjectOrID;
1972
+			}
1973
+			$this->cache($relationName, $otherObjectModelObjectOrID, $cache_id);
1974
+		}
1975
+		if ($otherObject instanceof EE_Base_Class) {
1976
+			//fix the reciprocal relation too
1977
+			if ($otherObject->ID()) {
1978
+				//its saved so assumed relations exist in the DB, so we can just
1979
+				//clear the cache so future queries use the updated info in the DB
1980
+				$otherObject->clear_cache($this->get_model()->get_this_model_name(), null, true);
1981
+			} else {
1982
+				//it's not saved, so it caches relations like this
1983
+				$otherObject->cache($this->get_model()->get_this_model_name(), $this);
1984
+			}
1985
+		}
1986
+		return $otherObject;
1987
+	}
1988
+
1989
+
1990
+
1991
+	/**
1992
+	 * Removes a relationship to the specified EE_Base_Class object, given the relationships' name. Eg, if the current
1993
+	 * model is related to a group of events, the $relationName should be 'Events', and should be a key in the EE
1994
+	 * Model's $_model_relations array. If this model object doesn't exist in the DB, just removes the related thing
1995
+	 * from the cache
1996
+	 *
1997
+	 * @param mixed  $otherObjectModelObjectOrID
1998
+	 *                EE_Base_Class or the ID of the other object, OR an array key into the cache if this isn't saved
1999
+	 *                to the DB yet
2000
+	 * @param string $relationName
2001
+	 * @param array  $where_query
2002
+	 *                You can optionally include an array of key=>value pairs that allow you to further constrict the
2003
+	 *                relation to being added. However, keep in mind that the columns (keys) given must match a column
2004
+	 *                on the JOIN table and currently only the HABTM models accept these additional conditions. Also
2005
+	 *                remember that if an exact match isn't found for these extra cols/val pairs, then a NEW row is
2006
+	 *                created in the join table.
2007
+	 * @return EE_Base_Class the relation was removed from
2008
+	 * @throws \EE_Error
2009
+	 */
2010
+	public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array())
2011
+	{
2012
+		if ($this->ID()) {
2013
+			//if this exists in the DB, save the relation change to the DB too
2014
+			$otherObject = $this->get_model()
2015
+								->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName,
2016
+									$where_query);
2017
+			$this->clear_cache($relationName, $otherObject);
2018
+		} else {
2019
+			//this doesn't exist in the DB, just remove it from the cache
2020
+			$otherObject = $this->clear_cache($relationName, $otherObjectModelObjectOrID);
2021
+		}
2022
+		if ($otherObject instanceof EE_Base_Class) {
2023
+			$otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
2024
+		}
2025
+		return $otherObject;
2026
+	}
2027
+
2028
+
2029
+
2030
+	/**
2031
+	 * Removes ALL the related things for the $relationName.
2032
+	 *
2033
+	 * @param string $relationName
2034
+	 * @param array  $where_query_params like EEM_Base::get_all's $query_params[0] (where conditions)
2035
+	 * @return EE_Base_Class
2036
+	 * @throws \EE_Error
2037
+	 */
2038
+	public function _remove_relations($relationName, $where_query_params = array())
2039
+	{
2040
+		if ($this->ID()) {
2041
+			//if this exists in the DB, save the relation change to the DB too
2042
+			$otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params);
2043
+			$this->clear_cache($relationName, null, true);
2044
+		} else {
2045
+			//this doesn't exist in the DB, just remove it from the cache
2046
+			$otherObjects = $this->clear_cache($relationName, null, true);
2047
+		}
2048
+		if (is_array($otherObjects)) {
2049
+			foreach ($otherObjects as $otherObject) {
2050
+				$otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
2051
+			}
2052
+		}
2053
+		return $otherObjects;
2054
+	}
2055
+
2056
+
2057
+
2058
+	/**
2059
+	 * Gets all the related model objects of the specified type. Eg, if the current class if
2060
+	 * EE_Event, you could call $this->get_many_related('Registration') to get an array of all the
2061
+	 * EE_Registration objects which related to this event. Note: by default, we remove the "default query params"
2062
+	 * because we want to get even deleted items etc.
2063
+	 *
2064
+	 * @param string $relationName key in the model's _model_relations array
2065
+	 * @param array  $query_params like EEM_Base::get_all
2066
+	 * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary keys
2067
+	 * @throws \EE_Error
2068
+	 *                             or might not be saved yet. Consider using EEM_Base::get_IDs() on these results if
2069
+	 *                             you want IDs
2070
+	 */
2071
+	public function get_many_related($relationName, $query_params = array())
2072
+	{
2073
+		if ($this->ID()) {
2074
+			//this exists in the DB, so get the related things from either the cache or the DB
2075
+			//if there are query parameters, forget about caching the related model objects.
2076
+			if ($query_params) {
2077
+				$related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
2078
+			} else {
2079
+				//did we already cache the result of this query?
2080
+				$cached_results = $this->get_all_from_cache($relationName);
2081
+				if ( ! $cached_results) {
2082
+					$related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
2083
+					//if no query parameters were passed, then we got all the related model objects
2084
+					//for that relation. We can cache them then.
2085
+					foreach ($related_model_objects as $related_model_object) {
2086
+						$this->cache($relationName, $related_model_object);
2087
+					}
2088
+				} else {
2089
+					$related_model_objects = $cached_results;
2090
+				}
2091
+			}
2092
+		} else {
2093
+			//this doesn't exist in the DB, so just get the related things from the cache
2094
+			$related_model_objects = $this->get_all_from_cache($relationName);
2095
+		}
2096
+		return $related_model_objects;
2097
+	}
2098
+
2099
+
2100
+
2101
+	/**
2102
+	 * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default,
2103
+	 * unless otherwise specified in the $query_params
2104
+	 *
2105
+	 * @param string $relation_name  model_name like 'Event', or 'Registration'
2106
+	 * @param array  $query_params   like EEM_Base::get_all's
2107
+	 * @param string $field_to_count name of field to count by. By default, uses primary key
2108
+	 * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2109
+	 *                               that by the setting $distinct to TRUE;
2110
+	 * @return int
2111
+	 */
2112
+	public function count_related($relation_name, $query_params = array(), $field_to_count = null, $distinct = false)
2113
+	{
2114
+		return $this->get_model()->count_related($this, $relation_name, $query_params, $field_to_count, $distinct);
2115
+	}
2116
+
2117
+
2118
+
2119
+	/**
2120
+	 * Instead of getting the related model objects, simply sums up the values of the specified field.
2121
+	 * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params
2122
+	 *
2123
+	 * @param string $relation_name model_name like 'Event', or 'Registration'
2124
+	 * @param array  $query_params  like EEM_Base::get_all's
2125
+	 * @param string $field_to_sum  name of field to count by.
2126
+	 *                              By default, uses primary key (which doesn't make much sense, so you should probably
2127
+	 *                              change it)
2128
+	 * @return int
2129
+	 */
2130
+	public function sum_related($relation_name, $query_params = array(), $field_to_sum = null)
2131
+	{
2132
+		return $this->get_model()->sum_related($this, $relation_name, $query_params, $field_to_sum);
2133
+	}
2134
+
2135
+
2136
+
2137
+	/**
2138
+	 * Gets the first (ie, one) related model object of the specified type.
2139
+	 *
2140
+	 * @param string $relationName key in the model's _model_relations array
2141
+	 * @param array  $query_params like EEM_Base::get_all
2142
+	 * @return EE_Base_Class (not an array, a single object)
2143
+	 * @throws \EE_Error
2144
+	 */
2145
+	public function get_first_related($relationName, $query_params = array())
2146
+	{
2147
+		if ($this->ID()) {//this exists in the DB, get from the cache OR the DB
2148
+			//if they've provided some query parameters, don't bother trying to cache the result
2149
+			//also make sure we're not caching the result of get_first_related
2150
+			//on a relation which should have an array of objects (because the cache might have an array of objects)
2151
+			if ($query_params
2152
+				|| ! $this->get_model()->related_settings_for($relationName)
2153
+					 instanceof
2154
+					 EE_Belongs_To_Relation
2155
+			) {
2156
+				$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2157
+			} else {
2158
+				//first, check if we've already cached the result of this query
2159
+				$cached_result = $this->get_one_from_cache($relationName);
2160
+				if ( ! $cached_result) {
2161
+					$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2162
+					$this->cache($relationName, $related_model_object);
2163
+				} else {
2164
+					$related_model_object = $cached_result;
2165
+				}
2166
+			}
2167
+		} else {
2168
+			$related_model_object = null;
2169
+			//this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might
2170
+			if ($this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) {
2171
+				$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
2172
+			}
2173
+			//this doesn't exist in the DB and apparently the thing it belongs to doesn't either, just get what's cached on this object
2174
+			if ( ! $related_model_object) {
2175
+				$related_model_object = $this->get_one_from_cache($relationName);
2176
+			}
2177
+		}
2178
+		return $related_model_object;
2179
+	}
2180
+
2181
+
2182
+
2183
+	/**
2184
+	 * Does a delete on all related objects of type $relationName and removes
2185
+	 * the current model object's relation to them. If they can't be deleted (because
2186
+	 * of blocking related model objects) does nothing. If the related model objects are
2187
+	 * soft-deletable, they will be soft-deleted regardless of related blocking model objects.
2188
+	 * If this model object doesn't exist yet in the DB, just removes its related things
2189
+	 *
2190
+	 * @param string $relationName
2191
+	 * @param array  $query_params like EEM_Base::get_all's
2192
+	 * @return int how many deleted
2193
+	 * @throws \EE_Error
2194
+	 */
2195
+	public function delete_related($relationName, $query_params = array())
2196
+	{
2197
+		if ($this->ID()) {
2198
+			$count = $this->get_model()->delete_related($this, $relationName, $query_params);
2199
+		} else {
2200
+			$count = count($this->get_all_from_cache($relationName));
2201
+			$this->clear_cache($relationName, null, true);
2202
+		}
2203
+		return $count;
2204
+	}
2205
+
2206
+
2207
+
2208
+	/**
2209
+	 * Does a hard delete (ie, removes the DB row) on all related objects of type $relationName and removes
2210
+	 * the current model object's relation to them. If they can't be deleted (because
2211
+	 * of blocking related model objects) just does a soft delete on it instead, if possible.
2212
+	 * If the related thing isn't a soft-deletable model object, this function is identical
2213
+	 * to delete_related(). If this model object doesn't exist in the DB, just remove its related things
2214
+	 *
2215
+	 * @param string $relationName
2216
+	 * @param array  $query_params like EEM_Base::get_all's
2217
+	 * @return int how many deleted (including those soft deleted)
2218
+	 * @throws \EE_Error
2219
+	 */
2220
+	public function delete_related_permanently($relationName, $query_params = array())
2221
+	{
2222
+		if ($this->ID()) {
2223
+			$count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params);
2224
+		} else {
2225
+			$count = count($this->get_all_from_cache($relationName));
2226
+		}
2227
+		$this->clear_cache($relationName, null, true);
2228
+		return $count;
2229
+	}
2230
+
2231
+
2232
+
2233
+	/**
2234
+	 * is_set
2235
+	 * Just a simple utility function children can use for checking if property exists
2236
+	 *
2237
+	 * @access  public
2238
+	 * @param  string $field_name property to check
2239
+	 * @return bool                              TRUE if existing,FALSE if not.
2240
+	 */
2241
+	public function is_set($field_name)
2242
+	{
2243
+		return isset($this->_fields[$field_name]);
2244
+	}
2245
+
2246
+
2247
+
2248
+	/**
2249
+	 * Just a simple utility function children can use for checking if property (or properties) exists and throwing an
2250
+	 * EE_Error exception if they don't
2251
+	 *
2252
+	 * @param  mixed (string|array) $properties properties to check
2253
+	 * @throws EE_Error
2254
+	 * @return bool                              TRUE if existing, throw EE_Error if not.
2255
+	 */
2256
+	protected function _property_exists($properties)
2257
+	{
2258
+		foreach ((array)$properties as $property_name) {
2259
+			//first make sure this property exists
2260
+			if ( ! $this->_fields[$property_name]) {
2261
+				throw new EE_Error(
2262
+					sprintf(
2263
+						__(
2264
+							'Trying to retrieve a non-existent property (%s).  Double check the spelling please',
2265
+							'event_espresso'
2266
+						),
2267
+						$property_name
2268
+					)
2269
+				);
2270
+			}
2271
+		}
2272
+		return true;
2273
+	}
2274
+
2275
+
2276
+
2277
+	/**
2278
+	 * This simply returns an array of model fields for this object
2279
+	 *
2280
+	 * @return array
2281
+	 * @throws \EE_Error
2282
+	 */
2283
+	public function model_field_array()
2284
+	{
2285
+		$fields = $this->get_model()->field_settings(false);
2286
+		$properties = array();
2287
+		//remove prepended underscore
2288
+		foreach ($fields as $field_name => $settings) {
2289
+			$properties[$field_name] = $this->get($field_name);
2290
+		}
2291
+		return $properties;
2292
+	}
2293
+
2294
+
2295
+
2296
+	/**
2297
+	 * Very handy general function to allow for plugins to extend any child of EE_Base_Class.
2298
+	 * If a method is called on a child of EE_Base_Class that doesn't exist, this function is called
2299
+	 * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. Instead of
2300
+	 * requiring a plugin to extend the EE_Base_Class (which works fine is there's only 1 plugin, but when will that
2301
+	 * happen?) they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' (eg,
2302
+	 * filters_hook_espresso__EE_Answer__my_great_function) and accepts 2 arguments: the object on which the function
2303
+	 * was called, and an array of the original arguments passed to the function. Whatever their callback function
2304
+	 * returns will be returned by this function. Example: in functions.php (or in a plugin):
2305
+	 * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); function
2306
+	 * my_callback($previousReturnValue,EE_Base_Class $object,$argsArray){
2307
+	 * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray);
2308
+	 *        return $previousReturnValue.$returnString;
2309
+	 * }
2310
+	 * require('EE_Answer.class.php');
2311
+	 * $answer= EE_Answer::new_instance(array('REG_ID' => 2,'QST_ID' => 3,'ANS_value' => The answer is 42'));
2312
+	 * echo $answer->my_callback('monkeys',100);
2313
+	 * //will output "you called my_callback! and passed args:monkeys,100"
2314
+	 *
2315
+	 * @param string $methodName name of method which was called on a child of EE_Base_Class, but which
2316
+	 * @param array  $args       array of original arguments passed to the function
2317
+	 * @throws EE_Error
2318
+	 * @return mixed whatever the plugin which calls add_filter decides
2319
+	 */
2320
+	public function __call($methodName, $args)
2321
+	{
2322
+		$className = get_class($this);
2323
+		$tagName = "FHEE__{$className}__{$methodName}";
2324
+		if ( ! has_filter($tagName)) {
2325
+			throw new EE_Error(
2326
+				sprintf(
2327
+					__(
2328
+						"Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}",
2329
+						"event_espresso"
2330
+					),
2331
+					$methodName,
2332
+					$className,
2333
+					$tagName
2334
+				)
2335
+			);
2336
+		}
2337
+		return apply_filters($tagName, null, $this, $args);
2338
+	}
2339
+
2340
+
2341
+
2342
+	/**
2343
+	 * Similar to insert_post_meta, adds a record in the Extra_Meta model's table with the given key and value.
2344
+	 * A $previous_value can be specified in case there are many meta rows with the same key
2345
+	 *
2346
+	 * @param string $meta_key
2347
+	 * @param string $meta_value
2348
+	 * @param string $previous_value
2349
+	 * @return int records updated (or BOOLEAN if we actually ended up inserting the extra meta row)
2350
+	 * @throws \EE_Error
2351
+	 * NOTE: if the values haven't changed, returns 0
2352
+	 */
2353
+	public function update_extra_meta($meta_key, $meta_value, $previous_value = null)
2354
+	{
2355
+		$query_params = array(
2356
+			array(
2357
+				'EXM_key'  => $meta_key,
2358
+				'OBJ_ID'   => $this->ID(),
2359
+				'EXM_type' => $this->get_model()->get_this_model_name(),
2360
+			),
2361
+		);
2362
+		if ($previous_value !== null) {
2363
+			$query_params[0]['EXM_value'] = $meta_value;
2364
+		}
2365
+		$existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params);
2366
+		if ( ! $existing_rows_like_that) {
2367
+			return $this->add_extra_meta($meta_key, $meta_value);
2368
+		} else {
2369
+			foreach ($existing_rows_like_that as $existing_row) {
2370
+				$existing_row->save(array('EXM_value' => $meta_value));
2371
+			}
2372
+			return count($existing_rows_like_that);
2373
+		}
2374
+	}
2375
+
2376
+
2377
+
2378
+	/**
2379
+	 * Adds a new extra meta record. If $unique is set to TRUE, we'll first double-check
2380
+	 * no other extra meta for this model object have the same key. Returns TRUE if the
2381
+	 * extra meta row was entered, false if not
2382
+	 *
2383
+	 * @param string  $meta_key
2384
+	 * @param string  $meta_value
2385
+	 * @param boolean $unique
2386
+	 * @return boolean
2387
+	 * @throws \EE_Error
2388
+	 */
2389
+	public function add_extra_meta($meta_key, $meta_value, $unique = false)
2390
+	{
2391
+		if ($unique) {
2392
+			$existing_extra_meta = EEM_Extra_Meta::instance()->get_one(
2393
+				array(
2394
+					array(
2395
+						'EXM_key'  => $meta_key,
2396
+						'OBJ_ID'   => $this->ID(),
2397
+						'EXM_type' => $this->get_model()->get_this_model_name(),
2398
+					),
2399
+				)
2400
+			);
2401
+			if ($existing_extra_meta) {
2402
+				return false;
2403
+			}
2404
+		}
2405
+		$new_extra_meta = EE_Extra_Meta::new_instance(
2406
+			array(
2407
+				'EXM_key'   => $meta_key,
2408
+				'EXM_value' => $meta_value,
2409
+				'OBJ_ID'    => $this->ID(),
2410
+				'EXM_type'  => $this->get_model()->get_this_model_name(),
2411
+			)
2412
+		);
2413
+		$new_extra_meta->save();
2414
+		return true;
2415
+	}
2416
+
2417
+
2418
+
2419
+	/**
2420
+	 * Deletes all the extra meta rows for this record as specified by key. If $meta_value
2421
+	 * is specified, only deletes extra meta records with that value.
2422
+	 *
2423
+	 * @param string $meta_key
2424
+	 * @param string $meta_value
2425
+	 * @return int number of extra meta rows deleted
2426
+	 * @throws \EE_Error
2427
+	 */
2428
+	public function delete_extra_meta($meta_key, $meta_value = null)
2429
+	{
2430
+		$query_params = array(
2431
+			array(
2432
+				'EXM_key'  => $meta_key,
2433
+				'OBJ_ID'   => $this->ID(),
2434
+				'EXM_type' => $this->get_model()->get_this_model_name(),
2435
+			),
2436
+		);
2437
+		if ($meta_value !== null) {
2438
+			$query_params[0]['EXM_value'] = $meta_value;
2439
+		}
2440
+		return EEM_Extra_Meta::instance()->delete($query_params);
2441
+	}
2442
+
2443
+
2444
+
2445
+	/**
2446
+	 * Gets the extra meta with the given meta key. If you specify "single" we just return 1, otherwise
2447
+	 * an array of everything found. Requires that this model actually have a relation of type EE_Has_Many_Any_Relation.
2448
+	 * You can specify $default is case you haven't found the extra meta
2449
+	 *
2450
+	 * @param string  $meta_key
2451
+	 * @param boolean $single
2452
+	 * @param mixed   $default if we don't find anything, what should we return?
2453
+	 * @return mixed single value if $single; array if ! $single
2454
+	 * @throws \EE_Error
2455
+	 */
2456
+	public function get_extra_meta($meta_key, $single = false, $default = null)
2457
+	{
2458
+		if ($single) {
2459
+			$result = $this->get_first_related('Extra_Meta', array(array('EXM_key' => $meta_key)));
2460
+			if ($result instanceof EE_Extra_Meta) {
2461
+				return $result->value();
2462
+			} else {
2463
+				return $default;
2464
+			}
2465
+		} else {
2466
+			$results = $this->get_many_related('Extra_Meta', array(array('EXM_key' => $meta_key)));
2467
+			if ($results) {
2468
+				$values = array();
2469
+				foreach ($results as $result) {
2470
+					if ($result instanceof EE_Extra_Meta) {
2471
+						$values[$result->ID()] = $result->value();
2472
+					}
2473
+				}
2474
+				return $values;
2475
+			} else {
2476
+				return $default;
2477
+			}
2478
+		}
2479
+	}
2480
+
2481
+
2482
+
2483
+	/**
2484
+	 * Returns a simple array of all the extra meta associated with this model object.
2485
+	 * If $one_of_each_key is true (Default), it will be an array of simple key-value pairs, keys being the
2486
+	 * extra meta's key, and teh value being its value. However, if there are duplicate extra meta rows with
2487
+	 * the same key, only one will be used. (eg array('foo'=>'bar','monkey'=>123))
2488
+	 * If $one_of_each_key is false, it will return an array with the top-level keys being
2489
+	 * the extra meta keys, but their values are also arrays, which have the extra-meta's ID as their sub-key, and
2490
+	 * finally the extra meta's value as each sub-value. (eg
2491
+	 * array('foo'=>array(1=>'bar',2=>'bill'),'monkey'=>array(3=>123)))
2492
+	 *
2493
+	 * @param boolean $one_of_each_key
2494
+	 * @return array
2495
+	 * @throws \EE_Error
2496
+	 */
2497
+	public function all_extra_meta_array($one_of_each_key = true)
2498
+	{
2499
+		$return_array = array();
2500
+		if ($one_of_each_key) {
2501
+			$extra_meta_objs = $this->get_many_related('Extra_Meta', array('group_by' => 'EXM_key'));
2502
+			foreach ($extra_meta_objs as $extra_meta_obj) {
2503
+				if ($extra_meta_obj instanceof EE_Extra_Meta) {
2504
+					$return_array[$extra_meta_obj->key()] = $extra_meta_obj->value();
2505
+				}
2506
+			}
2507
+		} else {
2508
+			$extra_meta_objs = $this->get_many_related('Extra_Meta');
2509
+			foreach ($extra_meta_objs as $extra_meta_obj) {
2510
+				if ($extra_meta_obj instanceof EE_Extra_Meta) {
2511
+					if ( ! isset($return_array[$extra_meta_obj->key()])) {
2512
+						$return_array[$extra_meta_obj->key()] = array();
2513
+					}
2514
+					$return_array[$extra_meta_obj->key()][$extra_meta_obj->ID()] = $extra_meta_obj->value();
2515
+				}
2516
+			}
2517
+		}
2518
+		return $return_array;
2519
+	}
2520
+
2521
+
2522
+
2523
+	/**
2524
+	 * Gets a pretty nice displayable nice for this model object. Often overridden
2525
+	 *
2526
+	 * @return string
2527
+	 * @throws \EE_Error
2528
+	 */
2529
+	public function name()
2530
+	{
2531
+		//find a field that's not a text field
2532
+		$field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base');
2533
+		if ($field_we_can_use) {
2534
+			return $this->get($field_we_can_use->get_name());
2535
+		} else {
2536
+			$first_few_properties = $this->model_field_array();
2537
+			$first_few_properties = array_slice($first_few_properties, 0, 3);
2538
+			$name_parts = array();
2539
+			foreach ($first_few_properties as $name => $value) {
2540
+				$name_parts[] = "$name:$value";
2541
+			}
2542
+			return implode(",", $name_parts);
2543
+		}
2544
+	}
2545
+
2546
+
2547
+
2548
+	/**
2549
+	 * in_entity_map
2550
+	 * Checks if this model object has been proven to already be in the entity map
2551
+	 *
2552
+	 * @return boolean
2553
+	 * @throws \EE_Error
2554
+	 */
2555
+	public function in_entity_map()
2556
+	{
2557
+		if ($this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this) {
2558
+			//well, if we looked, did we find it in the entity map?
2559
+			return true;
2560
+		} else {
2561
+			return false;
2562
+		}
2563
+	}
2564
+
2565
+
2566
+
2567
+	/**
2568
+	 * refresh_from_db
2569
+	 * Makes sure the fields and values on this model object are in-sync with what's in the database.
2570
+	 *
2571
+	 * @throws EE_Error if this model object isn't in the entity mapper (because then you should
2572
+	 * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE
2573
+	 */
2574
+	public function refresh_from_db()
2575
+	{
2576
+		if ($this->ID() && $this->in_entity_map()) {
2577
+			$this->get_model()->refresh_entity_map_from_db($this->ID());
2578
+		} else {
2579
+			//if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database)
2580
+			//if it has an ID but it's not in the map, and you're asking me to refresh it
2581
+			//that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's
2582
+			//absolutely nothing in it for this ID
2583
+			if (WP_DEBUG) {
2584
+				throw new EE_Error(
2585
+					sprintf(
2586
+						__('Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.',
2587
+							'event_espresso'),
2588
+						$this->ID(),
2589
+						get_class($this->get_model()) . '::instance()->add_to_entity_map()',
2590
+						get_class($this->get_model()) . '::instance()->refresh_entity_map()'
2591
+					)
2592
+				);
2593
+			}
2594
+		}
2595
+	}
2596
+
2597
+
2598
+
2599
+	/**
2600
+	 * Because some other plugins, like Advanced Cron Manager, expect all objects to have this method
2601
+	 * (probably a bad assumption they have made, oh well)
2602
+	 *
2603
+	 * @return string
2604
+	 */
2605
+	public function __toString()
2606
+	{
2607
+		try {
2608
+			return sprintf('%s (%s)', $this->name(), $this->ID());
2609
+		} catch (Exception $e) {
2610
+			EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
2611
+			return '';
2612
+		}
2613
+	}
2614
+
2615
+
2616
+
2617
+	/**
2618
+	 * Clear related model objects if they're already in the DB, because otherwise when we
2619
+	 * UN-serialize this model object we'll need to be careful to add them to the entity map.
2620
+	 * This means if we have made changes to those related model objects, and want to unserialize
2621
+	 * the this model object on a subsequent request, changes to those related model objects will be lost.
2622
+	 * Instead, those related model objects should be directly serialized and stored.
2623
+	 * Eg, the following won't work:
2624
+	 * $reg = EEM_Registration::instance()->get_one_by_ID( 123 );
2625
+	 * $att = $reg->attendee();
2626
+	 * $att->set( 'ATT_fname', 'Dirk' );
2627
+	 * update_option( 'my_option', serialize( $reg ) );
2628
+	 * //END REQUEST
2629
+	 * //START NEXT REQUEST
2630
+	 * $reg = get_option( 'my_option' );
2631
+	 * $reg->attendee()->save();
2632
+	 * And would need to be replace with:
2633
+	 * $reg = EEM_Registration::instance()->get_one_by_ID( 123 );
2634
+	 * $att = $reg->attendee();
2635
+	 * $att->set( 'ATT_fname', 'Dirk' );
2636
+	 * update_option( 'my_option', serialize( $reg ) );
2637
+	 * //END REQUEST
2638
+	 * //START NEXT REQUEST
2639
+	 * $att = get_option( 'my_option' );
2640
+	 * $att->save();
2641
+	 *
2642
+	 * @return array
2643
+	 * @throws \EE_Error
2644
+	 */
2645
+	public function __sleep()
2646
+	{
2647
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
2648
+			if ($relation_obj instanceof EE_Belongs_To_Relation) {
2649
+				$classname = 'EE_' . $this->get_model()->get_this_model_name();
2650
+				if (
2651
+					$this->get_one_from_cache($relation_name) instanceof $classname
2652
+					&& $this->get_one_from_cache($relation_name)->ID()
2653
+				) {
2654
+					$this->clear_cache($relation_name, $this->get_one_from_cache($relation_name)->ID());
2655
+				}
2656
+			}
2657
+		}
2658
+		$this->_props_n_values_provided_in_constructor = array();
2659
+		return array_keys(get_object_vars($this));
2660
+	}
2661
+
2662
+
2663
+
2664
+	/**
2665
+	 * restore _props_n_values_provided_in_constructor
2666
+	 * PLZ NOTE: this will reset the array to whatever fields values were present prior to serialization,
2667
+	 * and therefore should NOT be used to determine if state change has occurred since initial construction.
2668
+	 * At best, you would only be able to detect if state change has occurred during THIS request.
2669
+	 */
2670
+	public function __wakeup()
2671
+	{
2672
+		$this->_props_n_values_provided_in_constructor = $this->_fields;
2673
+	}
2674 2674
 
2675 2675
 
2676 2676
 
Please login to merge, or discard this patch.
display/EE_Checkbox_Dropdown_Selector_Display_Strategy.strategy.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
     {
25 25
         wp_register_style(
26 26
             'checkbox_dropdown_selector',
27
-            EE_GLOBAL_ASSETS_URL . 'css/checkbox_dropdown_selector.css',
27
+            EE_GLOBAL_ASSETS_URL.'css/checkbox_dropdown_selector.css',
28 28
             array('espresso_default'),
29 29
             EVENT_ESPRESSO_VERSION
30 30
         );
31 31
         wp_enqueue_style('checkbox_dropdown_selector');
32 32
         wp_register_script(
33 33
             'checkbox_dropdown_selector',
34
-            EE_GLOBAL_ASSETS_URL . 'scripts/checkbox_dropdown_selector.js',
34
+            EE_GLOBAL_ASSETS_URL.'scripts/checkbox_dropdown_selector.js',
35 35
             array('jquery'),
36 36
             EVENT_ESPRESSO_VERSION,
37 37
             true
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Informs the rest of the forms system what CSS and JS is needed to display the input
46 46
      */
47
-    public function enqueue_js(){
47
+    public function enqueue_js() {
48 48
         EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
49 49
     }
50 50
 
@@ -70,25 +70,25 @@  discard block
 block discarded – undo
70 70
                     ),
71 71
                     $input->html_id(),
72 72
                     var_export($input->raw_value(), true),
73
-                    $input->html_name() . '[]'
73
+                    $input->html_name().'[]'
74 74
                 ),
75 75
                 '4.8.1'
76 76
             );
77 77
         }
78 78
         $html = '<button type="submit"';
79
-        $html .= ' id="' . $input->html_id() . '-btn"';
79
+        $html .= ' id="'.$input->html_id().'-btn"';
80 80
         // $html .= ' name="' . $input->html_name() . '"';
81
-        $html .= ' class="' . $input->html_class() . ' checkbox-dropdown-selector-btn button-secondary button"';
82
-        $html .= ' style="' . $input->html_style() . '"';
83
-        $html .= ' data-target="' . $input->html_id() . '-options-dv"';
84
-        $html .= ' ' . $input->html_other_attributes() . '>';
81
+        $html .= ' class="'.$input->html_class().' checkbox-dropdown-selector-btn button-secondary button"';
82
+        $html .= ' style="'.$input->html_style().'"';
83
+        $html .= ' data-target="'.$input->html_id().'-options-dv"';
84
+        $html .= ' '.$input->html_other_attributes().'>';
85 85
         $html .= '<span class="checkbox-dropdown-selector-selected-spn">';
86 86
         $html .= $select_button_text;
87 87
         $html .= '</span> <span class="dashicons dashicons-arrow-down"></span>';
88 88
         $html .= '</button>';
89 89
         $html .= EEH_HTML::div(
90 90
             '',
91
-            $input->html_id() . '-options-dv',
91
+            $input->html_id().'-options-dv',
92 92
             'checkbox-dropdown-selector'
93 93
         );
94 94
         $html .= EEH_HTML::link(
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             'close-espresso-notice'
100 100
         );
101 101
         $html .= EEH_HTML::ul();
102
-        $input_raw_value = (array)$input->raw_value();
102
+        $input_raw_value = (array) $input->raw_value();
103 103
         foreach ($input->options() as $value => $display_text) {
104 104
             $html .= EEH_HTML::li();
105 105
             $value = $input->get_normalization_strategy()->unnormalize_one($value);
@@ -114,18 +114,18 @@  discard block
 block discarded – undo
114 114
                      . '">';
115 115
             $html .= EEH_HTML::nl(1, 'checkbox');
116 116
             $html .= '<input type="checkbox"';
117
-            $html .= ' name="' . $input->html_name() . '[]"';
118
-            $html .= ' id="' . $html_id . '"';
119
-            $html .= ' class="' . $input->html_class() . '-option"';
120
-            $html .= ' style="' . $input->html_style() . '"';
121
-            $html .= ' value="' . esc_attr($value) . '"';
117
+            $html .= ' name="'.$input->html_name().'[]"';
118
+            $html .= ' id="'.$html_id.'"';
119
+            $html .= ' class="'.$input->html_class().'-option"';
120
+            $html .= ' style="'.$input->html_style().'"';
121
+            $html .= ' value="'.esc_attr($value).'"';
122 122
             $html .= ! empty($input_raw_value) && in_array($value, $input_raw_value, true)
123 123
                 ? ' checked="checked"'
124 124
                 : '';
125
-            $html .= ' ' . $this->_input->other_html_attributes();
125
+            $html .= ' '.$this->_input->other_html_attributes();
126 126
             $html .= '>';
127
-            $html .= '<span class="datetime-selector-option-text-spn">' . $display_text . '</span>';
128
-            $html .= EEH_HTML::nl(-1, 'checkbox') . '</label>';
127
+            $html .= '<span class="datetime-selector-option-text-spn">'.$display_text.'</span>';
128
+            $html .= EEH_HTML::nl(-1, 'checkbox').'</label>';
129 129
             $html .= EEH_HTML::lix();
130 130
         }
131 131
         $html .= EEH_HTML::ulx();
Please login to merge, or discard this patch.
Indentation   +114 added lines, -114 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 
5 5
 
@@ -17,126 +17,126 @@  discard block
 block discarded – undo
17 17
 {
18 18
 
19 19
 
20
-    /**
21
-     * enqueues css and js, so that this can be called statically
22
-     */
23
-    public static function enqueue_styles_and_scripts()
24
-    {
25
-        wp_register_style(
26
-            'checkbox_dropdown_selector',
27
-            EE_GLOBAL_ASSETS_URL . 'css/checkbox_dropdown_selector.css',
28
-            array('espresso_default'),
29
-            EVENT_ESPRESSO_VERSION
30
-        );
31
-        wp_enqueue_style('checkbox_dropdown_selector');
32
-        wp_register_script(
33
-            'checkbox_dropdown_selector',
34
-            EE_GLOBAL_ASSETS_URL . 'scripts/checkbox_dropdown_selector.js',
35
-            array('jquery'),
36
-            EVENT_ESPRESSO_VERSION,
37
-            true
38
-        );
39
-        wp_enqueue_script('checkbox_dropdown_selector');
40
-    }
20
+	/**
21
+	 * enqueues css and js, so that this can be called statically
22
+	 */
23
+	public static function enqueue_styles_and_scripts()
24
+	{
25
+		wp_register_style(
26
+			'checkbox_dropdown_selector',
27
+			EE_GLOBAL_ASSETS_URL . 'css/checkbox_dropdown_selector.css',
28
+			array('espresso_default'),
29
+			EVENT_ESPRESSO_VERSION
30
+		);
31
+		wp_enqueue_style('checkbox_dropdown_selector');
32
+		wp_register_script(
33
+			'checkbox_dropdown_selector',
34
+			EE_GLOBAL_ASSETS_URL . 'scripts/checkbox_dropdown_selector.js',
35
+			array('jquery'),
36
+			EVENT_ESPRESSO_VERSION,
37
+			true
38
+		);
39
+		wp_enqueue_script('checkbox_dropdown_selector');
40
+	}
41 41
 
42 42
 
43 43
 
44
-    /**
45
-     * Informs the rest of the forms system what CSS and JS is needed to display the input
46
-     */
47
-    public function enqueue_js(){
48
-        EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
49
-    }
44
+	/**
45
+	 * Informs the rest of the forms system what CSS and JS is needed to display the input
46
+	 */
47
+	public function enqueue_js(){
48
+		EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
49
+	}
50 50
 
51 51
 
52
-    /**
53
-     * @throws EE_Error
54
-     * @return string of html to display the field
55
-     */
56
-    public function display()
57
-    {
58
-        $input = $this->get_input();
59
-        $select_button_text = $input instanceof EE_Checkbox_Dropdown_Selector_Input ? $input->select_button_text() : '';
60
-        // $multi = count( $input->options() ) > 1 ? TRUE : FALSE;
61
-        $input->set_label_sizes();
62
-        $label_size_class = $input->get_label_size_class();
63
-        if ( ! is_array($input->raw_value()) && $input->raw_value() !== null) {
64
-            EE_Error::doing_it_wrong(
65
-                'EE_Checkbox_Display_Strategy::display()',
66
-                sprintf(
67
-                    esc_html__(
68
-                        'Input values for checkboxes should be an array of values, but the value for input "%1$s" is "%2$s". Please verify that the input name is exactly "%3$s"',
69
-                        'event_espresso'
70
-                    ),
71
-                    $input->html_id(),
72
-                    var_export($input->raw_value(), true),
73
-                    $input->html_name() . '[]'
74
-                ),
75
-                '4.8.1'
76
-            );
77
-        }
52
+	/**
53
+	 * @throws EE_Error
54
+	 * @return string of html to display the field
55
+	 */
56
+	public function display()
57
+	{
58
+		$input = $this->get_input();
59
+		$select_button_text = $input instanceof EE_Checkbox_Dropdown_Selector_Input ? $input->select_button_text() : '';
60
+		// $multi = count( $input->options() ) > 1 ? TRUE : FALSE;
61
+		$input->set_label_sizes();
62
+		$label_size_class = $input->get_label_size_class();
63
+		if ( ! is_array($input->raw_value()) && $input->raw_value() !== null) {
64
+			EE_Error::doing_it_wrong(
65
+				'EE_Checkbox_Display_Strategy::display()',
66
+				sprintf(
67
+					esc_html__(
68
+						'Input values for checkboxes should be an array of values, but the value for input "%1$s" is "%2$s". Please verify that the input name is exactly "%3$s"',
69
+						'event_espresso'
70
+					),
71
+					$input->html_id(),
72
+					var_export($input->raw_value(), true),
73
+					$input->html_name() . '[]'
74
+				),
75
+				'4.8.1'
76
+			);
77
+		}
78 78
 
79 79
 
80
-        $html = \EEH_HTML::div('', '', 'checkbox-dropdown-selector-wrap-dv');
81
-        $html .= '<button type="submit"';
82
-        $html .= ' id="' . $input->html_id() . '-btn"';
83
-        // $html .= ' name="' . $input->html_name() . '"';
84
-        $html .= ' class="' . $input->html_class() . ' checkbox-dropdown-selector-btn button-secondary button"';
85
-        $html .= ' style="' . $input->html_style() . '"';
86
-        $html .= ' data-target="' . $input->html_id() . '-options-dv"';
87
-        $html .= ' ' . $input->html_other_attributes() . '>';
88
-        $html .= '<span class="checkbox-dropdown-selector-selected-spn">';
89
-        $html .= $select_button_text;
90
-        $html .= '</span> <span class="dashicons dashicons-arrow-down"></span>';
91
-        $html .= '</button>';
92
-        $html .= EEH_HTML::div(
93
-            '',
94
-            $input->html_id() . '-options-dv',
95
-            'checkbox-dropdown-selector'
96
-        );
97
-        $html .= EEH_HTML::link(
98
-            '',
99
-            '<span class="dashicons dashicons-no"></span>',
100
-            esc_html__('close datetime selector', 'event_espresso'),
101
-            '',
102
-            'close-espresso-notice'
103
-        );
104
-        $html .= EEH_HTML::ul();
105
-        $input_raw_value = (array)$input->raw_value();
106
-        foreach ($input->options() as $value => $display_text) {
107
-            $html .= EEH_HTML::li();
108
-            $value = $input->get_normalization_strategy()->unnormalize_one($value);
109
-            $html_id = $this->get_sub_input_id($value);
110
-            $html .= EEH_HTML::nl(0, 'checkbox');
111
-            $html .= '<label for="'
112
-                     . $html_id
113
-                     . '" id="'
114
-                     . $html_id
115
-                     . '-lbl" class="ee-checkbox-label-after'
116
-                     . $label_size_class
117
-                     . '">';
118
-            $html .= EEH_HTML::nl(1, 'checkbox');
119
-            $html .= '<input type="checkbox"';
120
-            $html .= ' name="' . $input->html_name() . '[]"';
121
-            $html .= ' id="' . $html_id . '"';
122
-            $html .= ' class="' . $input->html_class() . '-option"';
123
-            $html .= ' style="' . $input->html_style() . '"';
124
-            $html .= ' value="' . esc_attr($value) . '"';
125
-            $html .= ! empty($input_raw_value) && in_array($value, $input_raw_value, true)
126
-                ? ' checked="checked"'
127
-                : '';
128
-            $html .= ' ' . $this->_input->other_html_attributes();
129
-            $html .= '>';
130
-            $html .= '<span class="datetime-selector-option-text-spn">' . $display_text . '</span>';
131
-            $html .= EEH_HTML::nl(-1, 'checkbox') . '</label>';
132
-            $html .= EEH_HTML::lix();
133
-        }
134
-        $html .= EEH_HTML::ulx();
135
-        $html .= EEH_HTML::divx();
136
-        $html .= EEH_HTML::divx();
137
-        $html .= \EEH_HTML::br();
138
-        return $html;
139
-    }
80
+		$html = \EEH_HTML::div('', '', 'checkbox-dropdown-selector-wrap-dv');
81
+		$html .= '<button type="submit"';
82
+		$html .= ' id="' . $input->html_id() . '-btn"';
83
+		// $html .= ' name="' . $input->html_name() . '"';
84
+		$html .= ' class="' . $input->html_class() . ' checkbox-dropdown-selector-btn button-secondary button"';
85
+		$html .= ' style="' . $input->html_style() . '"';
86
+		$html .= ' data-target="' . $input->html_id() . '-options-dv"';
87
+		$html .= ' ' . $input->html_other_attributes() . '>';
88
+		$html .= '<span class="checkbox-dropdown-selector-selected-spn">';
89
+		$html .= $select_button_text;
90
+		$html .= '</span> <span class="dashicons dashicons-arrow-down"></span>';
91
+		$html .= '</button>';
92
+		$html .= EEH_HTML::div(
93
+			'',
94
+			$input->html_id() . '-options-dv',
95
+			'checkbox-dropdown-selector'
96
+		);
97
+		$html .= EEH_HTML::link(
98
+			'',
99
+			'<span class="dashicons dashicons-no"></span>',
100
+			esc_html__('close datetime selector', 'event_espresso'),
101
+			'',
102
+			'close-espresso-notice'
103
+		);
104
+		$html .= EEH_HTML::ul();
105
+		$input_raw_value = (array)$input->raw_value();
106
+		foreach ($input->options() as $value => $display_text) {
107
+			$html .= EEH_HTML::li();
108
+			$value = $input->get_normalization_strategy()->unnormalize_one($value);
109
+			$html_id = $this->get_sub_input_id($value);
110
+			$html .= EEH_HTML::nl(0, 'checkbox');
111
+			$html .= '<label for="'
112
+					 . $html_id
113
+					 . '" id="'
114
+					 . $html_id
115
+					 . '-lbl" class="ee-checkbox-label-after'
116
+					 . $label_size_class
117
+					 . '">';
118
+			$html .= EEH_HTML::nl(1, 'checkbox');
119
+			$html .= '<input type="checkbox"';
120
+			$html .= ' name="' . $input->html_name() . '[]"';
121
+			$html .= ' id="' . $html_id . '"';
122
+			$html .= ' class="' . $input->html_class() . '-option"';
123
+			$html .= ' style="' . $input->html_style() . '"';
124
+			$html .= ' value="' . esc_attr($value) . '"';
125
+			$html .= ! empty($input_raw_value) && in_array($value, $input_raw_value, true)
126
+				? ' checked="checked"'
127
+				: '';
128
+			$html .= ' ' . $this->_input->other_html_attributes();
129
+			$html .= '>';
130
+			$html .= '<span class="datetime-selector-option-text-spn">' . $display_text . '</span>';
131
+			$html .= EEH_HTML::nl(-1, 'checkbox') . '</label>';
132
+			$html .= EEH_HTML::lix();
133
+		}
134
+		$html .= EEH_HTML::ulx();
135
+		$html .= EEH_HTML::divx();
136
+		$html .= EEH_HTML::divx();
137
+		$html .= \EEH_HTML::br();
138
+		return $html;
139
+	}
140 140
 
141 141
 
142 142
 
Please login to merge, or discard this patch.
modules/ticket_selector/DatetimeSelector.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             if ( ! $ticket_datetime instanceof \EE_Datetime) {
100 100
                 continue;
101 101
             }
102
-            $datetimes[ $ticket_datetime->ID() ] = $ticket_datetime;
102
+            $datetimes[$ticket_datetime->ID()] = $ticket_datetime;
103 103
         }
104 104
         return $datetimes;
105 105
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @return string
112 112
      * @throws \EE_Error
113 113
      */
114
-    public function getTicketDatetimeClasses( \EE_Ticket $ticket ) {
114
+    public function getTicketDatetimeClasses(\EE_Ticket $ticket) {
115 115
         if ( ! $this->active) {
116 116
             return '';
117 117
         }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             if ( ! $datetime instanceof \EE_Datetime || ! in_array($datetime, $ticket_datetimes, true)) {
122 122
                 continue;
123 123
             }
124
-            $classes .= ' ee-ticket-datetimes-' . $datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_');
124
+            $classes .= ' ee-ticket-datetimes-'.$datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_');
125 125
         }
126 126
         $classes .= ' ee-hidden-ticket-tr';
127 127
         return $classes;
@@ -150,12 +150,12 @@  discard block
 block discarded – undo
150 150
         $dropdown_selector = new \EE_Checkbox_Dropdown_Selector_Input(
151 151
             $datetime_options,
152 152
             array(
153
-                'html_id'               => 'datetime-selector-' . $this->event->ID(),
154
-                'html_name'             => 'datetime_selector_' . $this->event->ID(),
153
+                'html_id'               => 'datetime-selector-'.$this->event->ID(),
154
+                'html_name'             => 'datetime_selector_'.$this->event->ID(),
155 155
                 'html_class'            => 'datetime-selector',
156 156
                 'select_button_text'       => '<span class="dashicons dashicons-calendar-alt"></span> '
157 157
                                             . esc_html__('Select a Date', 'event_espresso'),
158
-                'other_html_attributes' => ' data-tkt_slctr_evt="' . $this->event->ID() . '"',
158
+                'other_html_attributes' => ' data-tkt_slctr_evt="'.$this->event->ID().'"',
159 159
             )
160 160
         );
161 161
         return \EEH_HTML::div(
Please login to merge, or discard this patch.
Indentation   +169 added lines, -169 removed lines patch added patch discarded remove patch
@@ -16,175 +16,175 @@
 block discarded – undo
16 16
 class DatetimeSelector
17 17
 {
18 18
 
19
-    /**
20
-     * @var \EE_Event $event
21
-     */
22
-    protected $event;
23
-
24
-    /**
25
-     * @var \EE_Ticket[] $tickets
26
-     */
27
-    protected $tickets;
28
-
29
-    /**
30
-     * @var \EE_Datetime[] $datetimes
31
-     */
32
-    protected $datetimes;
33
-
34
-    /**
35
-     * @var \EE_Datetime[] $unique_dates
36
-     */
37
-    protected $unique_dates;
38
-
39
-    /**
40
-     * @var \EE_Ticket_Selector_Config $template_settings
41
-     */
42
-    protected $template_settings;
43
-
44
-    /**
45
-     * @var boolean $active
46
-     */
47
-    protected $active = false;
48
-
49
-
50
-
51
-    /**
52
-     * DatetimeSelector constructor.
53
-     *
54
-     * @param \EE_Event                  $event
55
-     * @param \EE_Ticket[]               $tickets
56
-     * @param \EE_Ticket_Selector_Config $template_settings
57
-     * @param string                     $date_format
58
-     * @param string                     $time_format
59
-     * @throws \EE_Error
60
-     */
61
-    public function __construct(
62
-        \EE_Event $event,
63
-        array $tickets,
64
-        \EE_Ticket_Selector_Config $template_settings,
65
-        $date_format = 'Y-m-d',
66
-        $time_format = 'g:i a'
67
-    ) {
68
-        $this->event = $event;
69
-        $this->tickets = $tickets;
70
-        $this->template_settings = $template_settings;
71
-        $this->datetimes = $this->getAllDatetimesForAllTicket($tickets);
72
-        $this->unique_dates = $this->getUniqueDatetimeOptions($date_format, $time_format);
73
-        $this->active = $this->template_settings->showDatetimeSelector($this->unique_dates);
74
-    }
75
-
76
-
77
-
78
-    /**
79
-     * @param \EE_Ticket[] $tickets
80
-     * @return array
81
-     * @throws \EE_Error
82
-     */
83
-    protected function getAllDatetimesForAllTicket($tickets = array())
84
-    {
85
-        $datetimes = array();
86
-        foreach ($tickets as $ticket) {
87
-            $datetimes = $this->getTicketDatetimes($ticket, $datetimes);
88
-        }
89
-        return $datetimes;
90
-    }
91
-
92
-
93
-
94
-    /**
95
-     * @param \EE_Ticket      $ticket
96
-     * @param  \EE_Datetime[] $datetimes
97
-     * @return \EE_Datetime[]
98
-     * @throws \EE_Error
99
-     */
100
-    protected function getTicketDatetimes(\EE_Ticket $ticket, $datetimes = array())
101
-    {
102
-        $ticket_datetimes = $ticket->datetimes(
103
-            array(
104
-                'order_by'                 => array(
105
-                    'DTT_order'     => 'ASC',
106
-                    'DTT_EVT_start' => 'ASC'
107
-                ),
108
-                'default_where_conditions' => 'none',
109
-            )
110
-        );
111
-        foreach ($ticket_datetimes as $ticket_datetime) {
112
-            if ( ! $ticket_datetime instanceof \EE_Datetime) {
113
-                continue;
114
-            }
115
-            $datetimes[ $ticket_datetime->ID() ] = $ticket_datetime;
116
-        }
117
-        return $datetimes;
118
-    }
119
-
120
-
121
-
122
-    /**
123
-     * @param \EE_Ticket                 $ticket
124
-     * @return string
125
-     * @throws \EE_Error
126
-     */
127
-    public function getTicketDatetimeClasses( \EE_Ticket $ticket ) {
128
-        if ( ! $this->active) {
129
-            return '';
130
-        }
131
-        $ticket_datetimes = $this->getTicketDatetimes($ticket);
132
-        $classes = '';
133
-        foreach ($this->datetimes as $datetime) {
134
-            if ( ! $datetime instanceof \EE_Datetime || ! in_array($datetime, $ticket_datetimes, true)) {
135
-                continue;
136
-            }
137
-            $classes .= ' ee-ticket-datetimes-' . $datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_');
138
-        }
139
-        return $classes;
140
-    }
141
-
142
-
143
-
144
-    /**
145
-     * @param string $date_format
146
-     * @param string $time_format
147
-     * @return array
148
-     * @throws \EE_Error
149
-     */
150
-    public function getUniqueDatetimeOptions($date_format = 'Y-m-d', $time_format = 'g:i a') {
151
-        $datetime_options = array();
152
-        foreach ($this->datetimes as $datetime) {
153
-            if ( ! $datetime instanceof \EE_Datetime) {
154
-                continue;
155
-            }
156
-            $datetime_options[$datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_')] =
157
-                $datetime->date_and_time_range($date_format, $time_format, ' - ');
158
-        }
159
-        return $datetime_options;
160
-    }
161
-
162
-
163
-
164
-    /**
165
-     * @return string
166
-     * @throws \EE_Error
167
-     */
168
-    public function getDatetimeSelector() {
169
-        if ( ! $this->active) {
170
-            return '';
171
-        }
172
-        $dropdown_selector = new \EE_Checkbox_Dropdown_Selector_Input(
173
-            $this->unique_dates,
174
-            array(
175
-                'html_id'               => 'datetime-selector-' . $this->event->ID(),
176
-                'html_name'             => 'datetime_selector_' . $this->event->ID(),
177
-                'html_class'            => 'datetime-selector',
178
-                'select_button_text'       => '<span class="dashicons dashicons-calendar-alt"></span> '
179
-                                            . esc_html__('Filter by Date', 'event_espresso'),
180
-                'other_html_attributes' => ' data-tkt_slctr_evt="' . $this->event->ID() . '"',
181
-            )
182
-        );
183
-        return \EEH_HTML::div(
184
-            $dropdown_selector->get_html_for_input(),
185
-            '', 'datetime_selector-dv'
186
-        );
187
-    }
19
+	/**
20
+	 * @var \EE_Event $event
21
+	 */
22
+	protected $event;
23
+
24
+	/**
25
+	 * @var \EE_Ticket[] $tickets
26
+	 */
27
+	protected $tickets;
28
+
29
+	/**
30
+	 * @var \EE_Datetime[] $datetimes
31
+	 */
32
+	protected $datetimes;
33
+
34
+	/**
35
+	 * @var \EE_Datetime[] $unique_dates
36
+	 */
37
+	protected $unique_dates;
38
+
39
+	/**
40
+	 * @var \EE_Ticket_Selector_Config $template_settings
41
+	 */
42
+	protected $template_settings;
43
+
44
+	/**
45
+	 * @var boolean $active
46
+	 */
47
+	protected $active = false;
48
+
49
+
50
+
51
+	/**
52
+	 * DatetimeSelector constructor.
53
+	 *
54
+	 * @param \EE_Event                  $event
55
+	 * @param \EE_Ticket[]               $tickets
56
+	 * @param \EE_Ticket_Selector_Config $template_settings
57
+	 * @param string                     $date_format
58
+	 * @param string                     $time_format
59
+	 * @throws \EE_Error
60
+	 */
61
+	public function __construct(
62
+		\EE_Event $event,
63
+		array $tickets,
64
+		\EE_Ticket_Selector_Config $template_settings,
65
+		$date_format = 'Y-m-d',
66
+		$time_format = 'g:i a'
67
+	) {
68
+		$this->event = $event;
69
+		$this->tickets = $tickets;
70
+		$this->template_settings = $template_settings;
71
+		$this->datetimes = $this->getAllDatetimesForAllTicket($tickets);
72
+		$this->unique_dates = $this->getUniqueDatetimeOptions($date_format, $time_format);
73
+		$this->active = $this->template_settings->showDatetimeSelector($this->unique_dates);
74
+	}
75
+
76
+
77
+
78
+	/**
79
+	 * @param \EE_Ticket[] $tickets
80
+	 * @return array
81
+	 * @throws \EE_Error
82
+	 */
83
+	protected function getAllDatetimesForAllTicket($tickets = array())
84
+	{
85
+		$datetimes = array();
86
+		foreach ($tickets as $ticket) {
87
+			$datetimes = $this->getTicketDatetimes($ticket, $datetimes);
88
+		}
89
+		return $datetimes;
90
+	}
91
+
92
+
93
+
94
+	/**
95
+	 * @param \EE_Ticket      $ticket
96
+	 * @param  \EE_Datetime[] $datetimes
97
+	 * @return \EE_Datetime[]
98
+	 * @throws \EE_Error
99
+	 */
100
+	protected function getTicketDatetimes(\EE_Ticket $ticket, $datetimes = array())
101
+	{
102
+		$ticket_datetimes = $ticket->datetimes(
103
+			array(
104
+				'order_by'                 => array(
105
+					'DTT_order'     => 'ASC',
106
+					'DTT_EVT_start' => 'ASC'
107
+				),
108
+				'default_where_conditions' => 'none',
109
+			)
110
+		);
111
+		foreach ($ticket_datetimes as $ticket_datetime) {
112
+			if ( ! $ticket_datetime instanceof \EE_Datetime) {
113
+				continue;
114
+			}
115
+			$datetimes[ $ticket_datetime->ID() ] = $ticket_datetime;
116
+		}
117
+		return $datetimes;
118
+	}
119
+
120
+
121
+
122
+	/**
123
+	 * @param \EE_Ticket                 $ticket
124
+	 * @return string
125
+	 * @throws \EE_Error
126
+	 */
127
+	public function getTicketDatetimeClasses( \EE_Ticket $ticket ) {
128
+		if ( ! $this->active) {
129
+			return '';
130
+		}
131
+		$ticket_datetimes = $this->getTicketDatetimes($ticket);
132
+		$classes = '';
133
+		foreach ($this->datetimes as $datetime) {
134
+			if ( ! $datetime instanceof \EE_Datetime || ! in_array($datetime, $ticket_datetimes, true)) {
135
+				continue;
136
+			}
137
+			$classes .= ' ee-ticket-datetimes-' . $datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_');
138
+		}
139
+		return $classes;
140
+	}
141
+
142
+
143
+
144
+	/**
145
+	 * @param string $date_format
146
+	 * @param string $time_format
147
+	 * @return array
148
+	 * @throws \EE_Error
149
+	 */
150
+	public function getUniqueDatetimeOptions($date_format = 'Y-m-d', $time_format = 'g:i a') {
151
+		$datetime_options = array();
152
+		foreach ($this->datetimes as $datetime) {
153
+			if ( ! $datetime instanceof \EE_Datetime) {
154
+				continue;
155
+			}
156
+			$datetime_options[$datetime->date_and_time_range('Y_m_d', 'H_i', '-', '_')] =
157
+				$datetime->date_and_time_range($date_format, $time_format, ' - ');
158
+		}
159
+		return $datetime_options;
160
+	}
161
+
162
+
163
+
164
+	/**
165
+	 * @return string
166
+	 * @throws \EE_Error
167
+	 */
168
+	public function getDatetimeSelector() {
169
+		if ( ! $this->active) {
170
+			return '';
171
+		}
172
+		$dropdown_selector = new \EE_Checkbox_Dropdown_Selector_Input(
173
+			$this->unique_dates,
174
+			array(
175
+				'html_id'               => 'datetime-selector-' . $this->event->ID(),
176
+				'html_name'             => 'datetime_selector_' . $this->event->ID(),
177
+				'html_class'            => 'datetime-selector',
178
+				'select_button_text'       => '<span class="dashicons dashicons-calendar-alt"></span> '
179
+											. esc_html__('Filter by Date', 'event_espresso'),
180
+				'other_html_attributes' => ' data-tkt_slctr_evt="' . $this->event->ID() . '"',
181
+			)
182
+		);
183
+		return \EEH_HTML::div(
184
+			$dropdown_selector->get_html_for_input(),
185
+			'', 'datetime_selector-dv'
186
+		);
187
+	}
188 188
 
189 189
 
190 190
 
Please login to merge, or discard this patch.
core/admin/EE_Admin_Page_CPT.core.php 2 patches
Indentation   +1388 added lines, -1388 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 
5 5
 /**
@@ -24,445 +24,445 @@  discard block
 block discarded – undo
24 24
 {
25 25
 
26 26
 
27
-    /**
28
-     * This gets set in _setup_cpt
29
-     * It will contain the object for the custom post type.
30
-     *
31
-     * @var object
32
-     */
33
-    protected $_cpt_object;
34
-
35
-
36
-
37
-    /**
38
-     * a boolean flag to set whether the current route is a cpt route or not.
39
-     *
40
-     * @var bool
41
-     */
42
-    protected $_cpt_route = false;
43
-
44
-
45
-
46
-    /**
47
-     * This property allows cpt classes to define multiple routes as cpt routes.
48
-     * //in this array we define what the custom post type for this route is.
49
-     * array(
50
-     * 'route_name' => 'custom_post_type_slug'
51
-     * )
52
-     *
53
-     * @var array
54
-     */
55
-    protected $_cpt_routes = array();
56
-
27
+	/**
28
+	 * This gets set in _setup_cpt
29
+	 * It will contain the object for the custom post type.
30
+	 *
31
+	 * @var object
32
+	 */
33
+	protected $_cpt_object;
34
+
35
+
36
+
37
+	/**
38
+	 * a boolean flag to set whether the current route is a cpt route or not.
39
+	 *
40
+	 * @var bool
41
+	 */
42
+	protected $_cpt_route = false;
43
+
44
+
45
+
46
+	/**
47
+	 * This property allows cpt classes to define multiple routes as cpt routes.
48
+	 * //in this array we define what the custom post type for this route is.
49
+	 * array(
50
+	 * 'route_name' => 'custom_post_type_slug'
51
+	 * )
52
+	 *
53
+	 * @var array
54
+	 */
55
+	protected $_cpt_routes = array();
56
+
57 57
 
58 58
 
59
-    /**
60
-     * This simply defines what the corresponding routes WP will be redirected to after completing a post save/update.
61
-     * in this format:
62
-     * array(
63
-     * 'post_type_slug' => 'edit_route'
64
-     * )
65
-     *
66
-     * @var array
67
-     */
68
-    protected $_cpt_edit_routes = array();
69
-
70
-
71
-
72
-    /**
73
-     * If child classes set the name of their main model via the $_cpt_obj_models property, EE_Admin_Page_CPT will
74
-     * attempt to retrieve the related object model for the edit pages and assign it to _cpt_page_object. the
75
-     * _cpt_model_names property should be in the following format: array(
76
-     * 'route_defined_by_action_param' => 'Model_Name')
77
-     *
78
-     * @var array $_cpt_model_names
79
-     */
80
-    protected $_cpt_model_names = array();
81
-
82
-
83
-    /**
84
-     * @var EE_CPT_Base
85
-     */
86
-    protected $_cpt_model_obj = false;
87
-
88
-
89
-
90
-    /**
91
-     * This will hold an array of autosave containers that will be used to obtain input values and hook into the WP
92
-     * autosave so we can save our inputs on the save_post hook!  Children classes should add to this array by using
93
-     * the _register_autosave_containers() method so that we don't override any other containers already registered.
94
-     * Registration of containers should be done before load_page_dependencies() is run.
95
-     *
96
-     * @var array()
97
-     */
98
-    protected $_autosave_containers = array();
99
-    protected $_autosave_fields = array();
100
-
101
-    /**
102
-     * Array mapping from admin actions to their equivalent wp core pages for custom post types. So when a user visits
103
-     * a page for an action, it will appear as if they were visiting the wp core page for that custom post type
104
-     *
105
-     * @var array
106
-     */
107
-    protected $_pagenow_map = null;
108
-
109
-
110
-
111
-    /**
112
-     * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been
113
-     * saved.  Child classes are required to declare this method.  Typically you would use this to save any additional
114
-     * data. Keep in mind also that "save_post" runs on EVERY post update to the database. ALSO very important.  When a
115
-     * post transitions from scheduled to published, the save_post action is fired but you will NOT have any _POST data
116
-     * containing any extra info you may have from other meta saves.  So MAKE sure that you handle this accordingly.
117
-     *
118
-     * @access protected
119
-     * @abstract
120
-     * @param  string $post_id The ID of the cpt that was saved (so you can link relationally)
121
-     * @param  object $post    The post object of the cpt that was saved.
122
-     * @return void
123
-     */
124
-    abstract protected function _insert_update_cpt_item($post_id, $post);
125
-
126
-
127
-
128
-    /**
129
-     * This is hooked into the WordPress do_action('trashed_post') hook and runs after a cpt has been trashed.
130
-     *
131
-     * @abstract
132
-     * @access public
133
-     * @param  string $post_id The ID of the cpt that was trashed
134
-     * @return void
135
-     */
136
-    abstract public function trash_cpt_item($post_id);
137
-
138
-
139
-
140
-    /**
141
-     * This is hooked into the WordPress do_action('untrashed_post') hook and runs after a cpt has been untrashed
142
-     *
143
-     * @param  string $post_id theID of the cpt that was untrashed
144
-     * @return void
145
-     */
146
-    abstract public function restore_cpt_item($post_id);
147
-
148
-
149
-
150
-    /**
151
-     * This is hooked into the WordPress do_action('delete_cpt_item') hook and runs after a cpt has been fully deleted
152
-     * from the db
153
-     *
154
-     * @param  string $post_id the ID of the cpt that was deleted
155
-     * @return void
156
-     */
157
-    abstract public function delete_cpt_item($post_id);
158
-
159
-
160
-
161
-    /**
162
-     * Just utilizing the method EE_Admin exposes for doing things before page setup.
163
-     *
164
-     * @access protected
165
-     * @return void
166
-     */
167
-    protected function _before_page_setup()
168
-    {
169
-        $page = isset($this->_req_data['page']) ? $this->_req_data['page'] : $this->page_slug;
170
-        $this->_cpt_routes = array_merge(array(
171
-            'create_new' => $this->page_slug,
172
-            'edit'       => $this->page_slug,
173
-            'trash'      => $this->page_slug,
174
-        ), $this->_cpt_routes);
175
-        //let's see if the current route has a value for cpt_object_slug if it does we use that instead of the page
176
-        $this->_cpt_object = isset($this->_req_data['action']) && isset($this->_cpt_routes[$this->_req_data['action']])
177
-            ? get_post_type_object($this->_cpt_routes[$this->_req_data['action']])
178
-            : get_post_type_object($page);
179
-        //tweak pagenow for page loading.
180
-        if ( ! $this->_pagenow_map) {
181
-            $this->_pagenow_map = array(
182
-                'create_new' => 'post-new.php',
183
-                'edit'       => 'post.php',
184
-                'trash'      => 'post.php',
185
-            );
186
-        }
187
-        add_action('current_screen', array($this, 'modify_pagenow'));
188
-        //TODO the below will need to be reworked to account for the cpt routes that are NOT based off of page but action param.
189
-        //get current page from autosave
190
-        $current_page = isset($this->_req_data['ee_autosave_data']['ee-cpt-hidden-inputs']['current_page'])
191
-            ? $this->_req_data['ee_autosave_data']['ee-cpt-hidden-inputs']['current_page']
192
-            : null;
193
-        $this->_current_page = isset($this->_req_data['current_page'])
194
-            ? $this->_req_data['current_page']
195
-            : $current_page;
196
-        //autosave... make sure its only for the correct page
197
-        if ( ! empty($this->_current_page) && $this->_current_page == $this->page_slug) {
198
-            //setup autosave ajax hook
199
-            //add_action('wp_ajax_ee-autosave', array( $this, 'do_extra_autosave_stuff' ), 10 ); //TODO reactivate when 4.2 autosave is implemented
200
-        }
201
-    }
202
-
203
-
204
-
205
-    /**
206
-     * Simply ensure that we simulate the correct post route for cpt screens
207
-     *
208
-     * @param WP_Screen $current_screen
209
-     * @return void
210
-     */
211
-    public function modify_pagenow($current_screen)
212
-    {
213
-        global $pagenow, $hook_suffix;
214
-        //possibly reset pagenow.
215
-        if ( ! empty($this->_req_data['page'])
216
-             && $this->_req_data['page'] == $this->page_slug
217
-             && ! empty($this->_req_data['action'])
218
-             && isset($this->_pagenow_map[$this->_req_data['action']])
219
-        ) {
220
-            $pagenow = $this->_pagenow_map[$this->_req_data['action']];
221
-            $hook_suffix = $pagenow;
222
-        }
223
-    }
224
-
225
-
226
-
227
-    /**
228
-     * This method is used to register additional autosave containers to the _autosave_containers property.
229
-     *
230
-     * @todo We should automate this at some point by creating a wrapper for add_post_metabox and in our wrapper we
231
-     *       automatically register the id for the post metabox as a container.
232
-     * @param  array $ids an array of ids for containers that hold form inputs we want autosave to pickup.  Typically
233
-     *                    you would send along the id of a metabox container.
234
-     * @return void
235
-     */
236
-    protected function _register_autosave_containers($ids)
237
-    {
238
-        $this->_autosave_containers = array_merge($this->_autosave_fields, (array)$ids);
239
-    }
240
-
241
-
242
-
243
-    /**
244
-     * Something nifty.  We're going to loop through all the registered metaboxes and if the CALLBACK is an instance of
245
-     * EE_Admin_Page OR EE_Admin_Hooks, then we'll add the id to our _autosave_containers array.
246
-     */
247
-    protected function _set_autosave_containers()
248
-    {
249
-        global $wp_meta_boxes;
250
-        $containers = array();
251
-        if (empty($wp_meta_boxes)) {
252
-            return;
253
-        }
254
-        $current_metaboxes = isset($wp_meta_boxes[$this->page_slug]) ? $wp_meta_boxes[$this->page_slug] : array();
255
-        foreach ($current_metaboxes as $box_context) {
256
-            foreach ($box_context as $box_details) {
257
-                foreach ($box_details as $box) {
258
-                    if (is_array($box['callback'])
259
-                        && ($box['callback'][0] instanceof EE_Admin_Page
260
-                            || $box['callback'][0] instanceof EE_Admin_Hooks)
261
-                    ) {
262
-                        $containers[] = $box['id'];
263
-                    }
264
-                }
265
-            }
266
-        }
267
-        $this->_autosave_containers = array_merge($this->_autosave_containers, $containers);
268
-        //add hidden inputs container
269
-        $this->_autosave_containers[] = 'ee-cpt-hidden-inputs';
270
-    }
271
-
272
-
273
-
274
-    protected function _load_autosave_scripts_styles()
275
-    {
276
-        /*wp_register_script('cpt-autosave', EE_ADMIN_URL . 'assets/ee-cpt-autosave.js', array('ee-serialize-full-array', 'event_editor_js'), EVENT_ESPRESSO_VERSION, TRUE );
59
+	/**
60
+	 * This simply defines what the corresponding routes WP will be redirected to after completing a post save/update.
61
+	 * in this format:
62
+	 * array(
63
+	 * 'post_type_slug' => 'edit_route'
64
+	 * )
65
+	 *
66
+	 * @var array
67
+	 */
68
+	protected $_cpt_edit_routes = array();
69
+
70
+
71
+
72
+	/**
73
+	 * If child classes set the name of their main model via the $_cpt_obj_models property, EE_Admin_Page_CPT will
74
+	 * attempt to retrieve the related object model for the edit pages and assign it to _cpt_page_object. the
75
+	 * _cpt_model_names property should be in the following format: array(
76
+	 * 'route_defined_by_action_param' => 'Model_Name')
77
+	 *
78
+	 * @var array $_cpt_model_names
79
+	 */
80
+	protected $_cpt_model_names = array();
81
+
82
+
83
+	/**
84
+	 * @var EE_CPT_Base
85
+	 */
86
+	protected $_cpt_model_obj = false;
87
+
88
+
89
+
90
+	/**
91
+	 * This will hold an array of autosave containers that will be used to obtain input values and hook into the WP
92
+	 * autosave so we can save our inputs on the save_post hook!  Children classes should add to this array by using
93
+	 * the _register_autosave_containers() method so that we don't override any other containers already registered.
94
+	 * Registration of containers should be done before load_page_dependencies() is run.
95
+	 *
96
+	 * @var array()
97
+	 */
98
+	protected $_autosave_containers = array();
99
+	protected $_autosave_fields = array();
100
+
101
+	/**
102
+	 * Array mapping from admin actions to their equivalent wp core pages for custom post types. So when a user visits
103
+	 * a page for an action, it will appear as if they were visiting the wp core page for that custom post type
104
+	 *
105
+	 * @var array
106
+	 */
107
+	protected $_pagenow_map = null;
108
+
109
+
110
+
111
+	/**
112
+	 * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been
113
+	 * saved.  Child classes are required to declare this method.  Typically you would use this to save any additional
114
+	 * data. Keep in mind also that "save_post" runs on EVERY post update to the database. ALSO very important.  When a
115
+	 * post transitions from scheduled to published, the save_post action is fired but you will NOT have any _POST data
116
+	 * containing any extra info you may have from other meta saves.  So MAKE sure that you handle this accordingly.
117
+	 *
118
+	 * @access protected
119
+	 * @abstract
120
+	 * @param  string $post_id The ID of the cpt that was saved (so you can link relationally)
121
+	 * @param  object $post    The post object of the cpt that was saved.
122
+	 * @return void
123
+	 */
124
+	abstract protected function _insert_update_cpt_item($post_id, $post);
125
+
126
+
127
+
128
+	/**
129
+	 * This is hooked into the WordPress do_action('trashed_post') hook and runs after a cpt has been trashed.
130
+	 *
131
+	 * @abstract
132
+	 * @access public
133
+	 * @param  string $post_id The ID of the cpt that was trashed
134
+	 * @return void
135
+	 */
136
+	abstract public function trash_cpt_item($post_id);
137
+
138
+
139
+
140
+	/**
141
+	 * This is hooked into the WordPress do_action('untrashed_post') hook and runs after a cpt has been untrashed
142
+	 *
143
+	 * @param  string $post_id theID of the cpt that was untrashed
144
+	 * @return void
145
+	 */
146
+	abstract public function restore_cpt_item($post_id);
147
+
148
+
149
+
150
+	/**
151
+	 * This is hooked into the WordPress do_action('delete_cpt_item') hook and runs after a cpt has been fully deleted
152
+	 * from the db
153
+	 *
154
+	 * @param  string $post_id the ID of the cpt that was deleted
155
+	 * @return void
156
+	 */
157
+	abstract public function delete_cpt_item($post_id);
158
+
159
+
160
+
161
+	/**
162
+	 * Just utilizing the method EE_Admin exposes for doing things before page setup.
163
+	 *
164
+	 * @access protected
165
+	 * @return void
166
+	 */
167
+	protected function _before_page_setup()
168
+	{
169
+		$page = isset($this->_req_data['page']) ? $this->_req_data['page'] : $this->page_slug;
170
+		$this->_cpt_routes = array_merge(array(
171
+			'create_new' => $this->page_slug,
172
+			'edit'       => $this->page_slug,
173
+			'trash'      => $this->page_slug,
174
+		), $this->_cpt_routes);
175
+		//let's see if the current route has a value for cpt_object_slug if it does we use that instead of the page
176
+		$this->_cpt_object = isset($this->_req_data['action']) && isset($this->_cpt_routes[$this->_req_data['action']])
177
+			? get_post_type_object($this->_cpt_routes[$this->_req_data['action']])
178
+			: get_post_type_object($page);
179
+		//tweak pagenow for page loading.
180
+		if ( ! $this->_pagenow_map) {
181
+			$this->_pagenow_map = array(
182
+				'create_new' => 'post-new.php',
183
+				'edit'       => 'post.php',
184
+				'trash'      => 'post.php',
185
+			);
186
+		}
187
+		add_action('current_screen', array($this, 'modify_pagenow'));
188
+		//TODO the below will need to be reworked to account for the cpt routes that are NOT based off of page but action param.
189
+		//get current page from autosave
190
+		$current_page = isset($this->_req_data['ee_autosave_data']['ee-cpt-hidden-inputs']['current_page'])
191
+			? $this->_req_data['ee_autosave_data']['ee-cpt-hidden-inputs']['current_page']
192
+			: null;
193
+		$this->_current_page = isset($this->_req_data['current_page'])
194
+			? $this->_req_data['current_page']
195
+			: $current_page;
196
+		//autosave... make sure its only for the correct page
197
+		if ( ! empty($this->_current_page) && $this->_current_page == $this->page_slug) {
198
+			//setup autosave ajax hook
199
+			//add_action('wp_ajax_ee-autosave', array( $this, 'do_extra_autosave_stuff' ), 10 ); //TODO reactivate when 4.2 autosave is implemented
200
+		}
201
+	}
202
+
203
+
204
+
205
+	/**
206
+	 * Simply ensure that we simulate the correct post route for cpt screens
207
+	 *
208
+	 * @param WP_Screen $current_screen
209
+	 * @return void
210
+	 */
211
+	public function modify_pagenow($current_screen)
212
+	{
213
+		global $pagenow, $hook_suffix;
214
+		//possibly reset pagenow.
215
+		if ( ! empty($this->_req_data['page'])
216
+			 && $this->_req_data['page'] == $this->page_slug
217
+			 && ! empty($this->_req_data['action'])
218
+			 && isset($this->_pagenow_map[$this->_req_data['action']])
219
+		) {
220
+			$pagenow = $this->_pagenow_map[$this->_req_data['action']];
221
+			$hook_suffix = $pagenow;
222
+		}
223
+	}
224
+
225
+
226
+
227
+	/**
228
+	 * This method is used to register additional autosave containers to the _autosave_containers property.
229
+	 *
230
+	 * @todo We should automate this at some point by creating a wrapper for add_post_metabox and in our wrapper we
231
+	 *       automatically register the id for the post metabox as a container.
232
+	 * @param  array $ids an array of ids for containers that hold form inputs we want autosave to pickup.  Typically
233
+	 *                    you would send along the id of a metabox container.
234
+	 * @return void
235
+	 */
236
+	protected function _register_autosave_containers($ids)
237
+	{
238
+		$this->_autosave_containers = array_merge($this->_autosave_fields, (array)$ids);
239
+	}
240
+
241
+
242
+
243
+	/**
244
+	 * Something nifty.  We're going to loop through all the registered metaboxes and if the CALLBACK is an instance of
245
+	 * EE_Admin_Page OR EE_Admin_Hooks, then we'll add the id to our _autosave_containers array.
246
+	 */
247
+	protected function _set_autosave_containers()
248
+	{
249
+		global $wp_meta_boxes;
250
+		$containers = array();
251
+		if (empty($wp_meta_boxes)) {
252
+			return;
253
+		}
254
+		$current_metaboxes = isset($wp_meta_boxes[$this->page_slug]) ? $wp_meta_boxes[$this->page_slug] : array();
255
+		foreach ($current_metaboxes as $box_context) {
256
+			foreach ($box_context as $box_details) {
257
+				foreach ($box_details as $box) {
258
+					if (is_array($box['callback'])
259
+						&& ($box['callback'][0] instanceof EE_Admin_Page
260
+							|| $box['callback'][0] instanceof EE_Admin_Hooks)
261
+					) {
262
+						$containers[] = $box['id'];
263
+					}
264
+				}
265
+			}
266
+		}
267
+		$this->_autosave_containers = array_merge($this->_autosave_containers, $containers);
268
+		//add hidden inputs container
269
+		$this->_autosave_containers[] = 'ee-cpt-hidden-inputs';
270
+	}
271
+
272
+
273
+
274
+	protected function _load_autosave_scripts_styles()
275
+	{
276
+		/*wp_register_script('cpt-autosave', EE_ADMIN_URL . 'assets/ee-cpt-autosave.js', array('ee-serialize-full-array', 'event_editor_js'), EVENT_ESPRESSO_VERSION, TRUE );
277 277
         wp_enqueue_script('cpt-autosave');/**/ //todo re-enable when we start doing autosave again in 4.2
278 278
 
279
-        //filter _autosave_containers
280
-        $containers = apply_filters('FHEE__EE_Admin_Page_CPT___load_autosave_scripts_styles__containers',
281
-            $this->_autosave_containers, $this);
282
-        $containers = apply_filters('FHEE__EE_Admin_Page_CPT__' . get_class($this) . '___load_autosave_scripts_styles__containers',
283
-            $containers, $this);
284
-
285
-        wp_localize_script('event_editor_js', 'EE_AUTOSAVE_IDS',
286
-            $containers); //todo once we enable autosaves, this needs to be switched to localize with "cpt-autosave"
287
-
288
-        $unsaved_data_msg = array(
289
-            'eventmsg'     => sprintf(__("The changes you made to this %s will be lost if you navigate away from this page.",
290
-                'event_espresso'), $this->_cpt_object->labels->singular_name),
291
-            'inputChanged' => 0,
292
-        );
293
-        wp_localize_script('event_editor_js', 'UNSAVED_DATA_MSG', $unsaved_data_msg);
294
-    }
295
-
296
-
297
-
298
-    public function load_page_dependencies()
299
-    {
300
-        try {
301
-            $this->_load_page_dependencies();
302
-        } catch (EE_Error $e) {
303
-            $e->get_error();
304
-        }
305
-    }
306
-
307
-
308
-
309
-    /**
310
-     * overloading the EE_Admin_Page parent load_page_dependencies so we can get the cpt stuff added in appropriately
311
-     *
312
-     * @access protected
313
-     * @return void
314
-     */
315
-    protected function _load_page_dependencies()
316
-    {
317
-        //we only add stuff if this is a cpt_route!
318
-        if ( ! $this->_cpt_route) {
319
-            parent::_load_page_dependencies();
320
-            return;
321
-        }
322
-        //now let's do some automatic filters into the wp_system and we'll check to make sure the CHILD class automatically has the required methods in place.
323
-        //the following filters are for setting all the redirects on DEFAULT WP custom post type actions
324
-        //let's add a hidden input to the post-edit form so we know when we have to trigger our custom redirects!  Otherwise the redirects will happen on ALL post saves which wouldn't be good of course!
325
-        add_action('edit_form_after_title', array($this, 'cpt_post_form_hidden_input'));
326
-        //inject our Admin page nav tabs...
327
-        //let's make sure the nav tabs are set if they aren't already
328
-        //if ( empty( $this->_nav_tabs ) ) $this->_set_nav_tabs();
329
-        add_action('post_edit_form_tag', array($this, 'inject_nav_tabs'));
330
-        //modify the post_updated messages array
331
-        add_action('post_updated_messages', array($this, 'post_update_messages'), 10);
332
-        //add shortlink button to cpt edit screens.  We can do this as a universal thing BECAUSE, cpts use the same format for shortlinks as posts!
333
-        add_filter('pre_get_shortlink', array($this, 'add_shortlink_button_to_editor'), 10, 4);
334
-        //This basically allows us to change the title of the "publish" metabox area on CPT pages by setting a 'publishbox' value in the $_labels property array in the child class.
335
-        if ( ! empty($this->_labels['publishbox'])) {
336
-            $box_label = is_array($this->_labels['publishbox'])
337
-                         && isset($this->_labels['publishbox'][$this->_req_action])
338
-                ? $this->_labels['publishbox'][$this->_req_action] : $this->_labels['publishbox'];
339
-            remove_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', $this->_cpt_routes[$this->_req_action],
340
-                'side', 'core');
341
-            add_meta_box('submitdiv', $box_label, 'post_submit_meta_box', $this->_cpt_routes[$this->_req_action],
342
-                'side', 'core');
343
-        }
344
-        //let's add page_templates metabox if this cpt added support for it.
345
-        if ($this->_supports_page_templates($this->_cpt_object->name)) {
346
-            add_meta_box('page_templates', __('Page Template', 'event_espresso'),
347
-                array($this, 'page_template_meta_box'), $this->_cpt_routes[$this->_req_action], 'side', 'default');
348
-        }
349
-        //this is a filter that allows the addition of extra html after the permalink field on the wp post edit-form
350
-        if (method_exists($this, 'extra_permalink_field_buttons')) {
351
-            add_filter('get_sample_permalink_html', array($this, 'extra_permalink_field_buttons'), 10, 4);
352
-        }
353
-        //add preview button
354
-        add_filter('get_sample_permalink_html', array($this, 'preview_button_html'), 5, 4);
355
-        //insert our own post_stati dropdown
356
-        add_action('post_submitbox_misc_actions', array($this, 'custom_post_stati_dropdown'), 10);
357
-        //This allows adding additional information to the publish post submitbox on the wp post edit form
358
-        if (method_exists($this, 'extra_misc_actions_publish_box')) {
359
-            add_action('post_submitbox_misc_actions', array($this, 'extra_misc_actions_publish_box'), 10);
360
-        }
361
-        //This allows for adding additional stuff after the title field on the wp post edit form.  This is also before the wp_editor for post description field.
362
-        if (method_exists($this, 'edit_form_after_title')) {
363
-            add_action('edit_form_after_title', array($this, 'edit_form_after_title'), 10);
364
-        }
365
-        /**
366
-         * Filtering WP's esc_url to capture urls pointing to core wp routes so they point to our route.
367
-         */
368
-        add_filter('clean_url', array($this, 'switch_core_wp_urls_with_ours'), 10, 3);
369
-        parent::_load_page_dependencies();
370
-        //notice we are ALSO going to load the pagenow hook set for this route (see _before_page_setup for the reset of the pagenow global ). This is for any plugins that are doing things properly and hooking into the load page hook for core wp cpt routes.
371
-        global $pagenow;
372
-        do_action('load-' . $pagenow);
373
-        $this->modify_current_screen();
374
-        add_action('admin_enqueue_scripts', array($this, 'setup_autosave_hooks'), 30);
375
-        //we route REALLY early.
376
-        try {
377
-            $this->_route_admin_request();
378
-        } catch (EE_Error $e) {
379
-            $e->get_error();
380
-        }
381
-    }
382
-
383
-
384
-
385
-    /**
386
-     * Since we don't want users going to default core wp routes, this will check any wp urls run through the
387
-     * esc_url() method and if we see a url matching a pattern for our routes, we'll modify it to point to OUR
388
-     * route instead.
389
-     *
390
-     * @param string $good_protocol_url The escaped url.
391
-     * @param string $original_url      The original url.
392
-     * @param string $_context          The context sendt to the esc_url method.
393
-     * @return string possibly a new url for our route.
394
-     */
395
-    public function switch_core_wp_urls_with_ours($good_protocol_url, $original_url, $_context)
396
-    {
397
-        $routes_to_match = array(
398
-            0 => array(
399
-                'edit.php?post_type=espresso_attendees',
400
-                'admin.php?page=espresso_registrations&action=contact_list',
401
-            ),
402
-            1 => array(
403
-                'edit.php?post_type=' . $this->_cpt_object->name,
404
-                'admin.php?page=' . $this->_cpt_object->name,
405
-            ),
406
-        );
407
-        foreach ($routes_to_match as $route_matches) {
408
-            if (strpos($good_protocol_url, $route_matches[0]) !== false) {
409
-                return str_replace($route_matches[0], $route_matches[1], $good_protocol_url);
410
-            }
411
-        }
412
-        return $good_protocol_url;
413
-    }
414
-
415
-
416
-
417
-    /**
418
-     * Determine whether the current cpt supports page templates or not.
419
-     *
420
-     * @since %VER%
421
-     * @param string $cpt_name The cpt slug we're checking on.
422
-     * @return bool True supported, false not.
423
-     */
424
-    private function _supports_page_templates($cpt_name)
425
-    {
426
-
427
-        $cpt_args = EE_Register_CPTs::get_CPTs();
428
-        $cpt_args = isset($cpt_args[$cpt_name]) ? $cpt_args[$cpt_name]['args'] : array();
429
-        $cpt_has_support = ! empty($cpt_args['page_templates']);
430
-
431
-        //if the installed version of WP is > 4.7 we do some additional checks.
432
-        if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
433
-            $post_templates = wp_get_theme()->get_post_templates();
434
-            //if there are $post_templates for this cpt, then we return false for this method because
435
-            //that means we aren't going to load our page template manager and leave that up to the native
436
-            //cpt template manager.
437
-            $cpt_has_support = ! isset($post_templates[$cpt_name]) ? $cpt_has_support : false;
438
-        }
439
-
440
-        return $cpt_has_support;
441
-    }
442
-
443
-
444
-    /**
445
-     * Callback for the page_templates metabox selector.
446
-     *
447
-     * @since %VER%
448
-     * @return string html
449
-     */
450
-    public function page_template_meta_box()
451
-    {
452
-        global $post;
453
-        $template = '';
454
-
455
-        if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
456
-            $page_template_count = count(get_page_templates());
457
-        } else {
458
-            $page_template_count = count(get_page_templates($post));
459
-        };
460
-
461
-        if ($page_template_count) {
462
-            $page_template = get_post_meta($post->ID, '_wp_page_template', true);
463
-            $template      = ! empty($page_template) ? $page_template : '';
464
-        }
465
-        ?>
279
+		//filter _autosave_containers
280
+		$containers = apply_filters('FHEE__EE_Admin_Page_CPT___load_autosave_scripts_styles__containers',
281
+			$this->_autosave_containers, $this);
282
+		$containers = apply_filters('FHEE__EE_Admin_Page_CPT__' . get_class($this) . '___load_autosave_scripts_styles__containers',
283
+			$containers, $this);
284
+
285
+		wp_localize_script('event_editor_js', 'EE_AUTOSAVE_IDS',
286
+			$containers); //todo once we enable autosaves, this needs to be switched to localize with "cpt-autosave"
287
+
288
+		$unsaved_data_msg = array(
289
+			'eventmsg'     => sprintf(__("The changes you made to this %s will be lost if you navigate away from this page.",
290
+				'event_espresso'), $this->_cpt_object->labels->singular_name),
291
+			'inputChanged' => 0,
292
+		);
293
+		wp_localize_script('event_editor_js', 'UNSAVED_DATA_MSG', $unsaved_data_msg);
294
+	}
295
+
296
+
297
+
298
+	public function load_page_dependencies()
299
+	{
300
+		try {
301
+			$this->_load_page_dependencies();
302
+		} catch (EE_Error $e) {
303
+			$e->get_error();
304
+		}
305
+	}
306
+
307
+
308
+
309
+	/**
310
+	 * overloading the EE_Admin_Page parent load_page_dependencies so we can get the cpt stuff added in appropriately
311
+	 *
312
+	 * @access protected
313
+	 * @return void
314
+	 */
315
+	protected function _load_page_dependencies()
316
+	{
317
+		//we only add stuff if this is a cpt_route!
318
+		if ( ! $this->_cpt_route) {
319
+			parent::_load_page_dependencies();
320
+			return;
321
+		}
322
+		//now let's do some automatic filters into the wp_system and we'll check to make sure the CHILD class automatically has the required methods in place.
323
+		//the following filters are for setting all the redirects on DEFAULT WP custom post type actions
324
+		//let's add a hidden input to the post-edit form so we know when we have to trigger our custom redirects!  Otherwise the redirects will happen on ALL post saves which wouldn't be good of course!
325
+		add_action('edit_form_after_title', array($this, 'cpt_post_form_hidden_input'));
326
+		//inject our Admin page nav tabs...
327
+		//let's make sure the nav tabs are set if they aren't already
328
+		//if ( empty( $this->_nav_tabs ) ) $this->_set_nav_tabs();
329
+		add_action('post_edit_form_tag', array($this, 'inject_nav_tabs'));
330
+		//modify the post_updated messages array
331
+		add_action('post_updated_messages', array($this, 'post_update_messages'), 10);
332
+		//add shortlink button to cpt edit screens.  We can do this as a universal thing BECAUSE, cpts use the same format for shortlinks as posts!
333
+		add_filter('pre_get_shortlink', array($this, 'add_shortlink_button_to_editor'), 10, 4);
334
+		//This basically allows us to change the title of the "publish" metabox area on CPT pages by setting a 'publishbox' value in the $_labels property array in the child class.
335
+		if ( ! empty($this->_labels['publishbox'])) {
336
+			$box_label = is_array($this->_labels['publishbox'])
337
+						 && isset($this->_labels['publishbox'][$this->_req_action])
338
+				? $this->_labels['publishbox'][$this->_req_action] : $this->_labels['publishbox'];
339
+			remove_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', $this->_cpt_routes[$this->_req_action],
340
+				'side', 'core');
341
+			add_meta_box('submitdiv', $box_label, 'post_submit_meta_box', $this->_cpt_routes[$this->_req_action],
342
+				'side', 'core');
343
+		}
344
+		//let's add page_templates metabox if this cpt added support for it.
345
+		if ($this->_supports_page_templates($this->_cpt_object->name)) {
346
+			add_meta_box('page_templates', __('Page Template', 'event_espresso'),
347
+				array($this, 'page_template_meta_box'), $this->_cpt_routes[$this->_req_action], 'side', 'default');
348
+		}
349
+		//this is a filter that allows the addition of extra html after the permalink field on the wp post edit-form
350
+		if (method_exists($this, 'extra_permalink_field_buttons')) {
351
+			add_filter('get_sample_permalink_html', array($this, 'extra_permalink_field_buttons'), 10, 4);
352
+		}
353
+		//add preview button
354
+		add_filter('get_sample_permalink_html', array($this, 'preview_button_html'), 5, 4);
355
+		//insert our own post_stati dropdown
356
+		add_action('post_submitbox_misc_actions', array($this, 'custom_post_stati_dropdown'), 10);
357
+		//This allows adding additional information to the publish post submitbox on the wp post edit form
358
+		if (method_exists($this, 'extra_misc_actions_publish_box')) {
359
+			add_action('post_submitbox_misc_actions', array($this, 'extra_misc_actions_publish_box'), 10);
360
+		}
361
+		//This allows for adding additional stuff after the title field on the wp post edit form.  This is also before the wp_editor for post description field.
362
+		if (method_exists($this, 'edit_form_after_title')) {
363
+			add_action('edit_form_after_title', array($this, 'edit_form_after_title'), 10);
364
+		}
365
+		/**
366
+		 * Filtering WP's esc_url to capture urls pointing to core wp routes so they point to our route.
367
+		 */
368
+		add_filter('clean_url', array($this, 'switch_core_wp_urls_with_ours'), 10, 3);
369
+		parent::_load_page_dependencies();
370
+		//notice we are ALSO going to load the pagenow hook set for this route (see _before_page_setup for the reset of the pagenow global ). This is for any plugins that are doing things properly and hooking into the load page hook for core wp cpt routes.
371
+		global $pagenow;
372
+		do_action('load-' . $pagenow);
373
+		$this->modify_current_screen();
374
+		add_action('admin_enqueue_scripts', array($this, 'setup_autosave_hooks'), 30);
375
+		//we route REALLY early.
376
+		try {
377
+			$this->_route_admin_request();
378
+		} catch (EE_Error $e) {
379
+			$e->get_error();
380
+		}
381
+	}
382
+
383
+
384
+
385
+	/**
386
+	 * Since we don't want users going to default core wp routes, this will check any wp urls run through the
387
+	 * esc_url() method and if we see a url matching a pattern for our routes, we'll modify it to point to OUR
388
+	 * route instead.
389
+	 *
390
+	 * @param string $good_protocol_url The escaped url.
391
+	 * @param string $original_url      The original url.
392
+	 * @param string $_context          The context sendt to the esc_url method.
393
+	 * @return string possibly a new url for our route.
394
+	 */
395
+	public function switch_core_wp_urls_with_ours($good_protocol_url, $original_url, $_context)
396
+	{
397
+		$routes_to_match = array(
398
+			0 => array(
399
+				'edit.php?post_type=espresso_attendees',
400
+				'admin.php?page=espresso_registrations&action=contact_list',
401
+			),
402
+			1 => array(
403
+				'edit.php?post_type=' . $this->_cpt_object->name,
404
+				'admin.php?page=' . $this->_cpt_object->name,
405
+			),
406
+		);
407
+		foreach ($routes_to_match as $route_matches) {
408
+			if (strpos($good_protocol_url, $route_matches[0]) !== false) {
409
+				return str_replace($route_matches[0], $route_matches[1], $good_protocol_url);
410
+			}
411
+		}
412
+		return $good_protocol_url;
413
+	}
414
+
415
+
416
+
417
+	/**
418
+	 * Determine whether the current cpt supports page templates or not.
419
+	 *
420
+	 * @since %VER%
421
+	 * @param string $cpt_name The cpt slug we're checking on.
422
+	 * @return bool True supported, false not.
423
+	 */
424
+	private function _supports_page_templates($cpt_name)
425
+	{
426
+
427
+		$cpt_args = EE_Register_CPTs::get_CPTs();
428
+		$cpt_args = isset($cpt_args[$cpt_name]) ? $cpt_args[$cpt_name]['args'] : array();
429
+		$cpt_has_support = ! empty($cpt_args['page_templates']);
430
+
431
+		//if the installed version of WP is > 4.7 we do some additional checks.
432
+		if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
433
+			$post_templates = wp_get_theme()->get_post_templates();
434
+			//if there are $post_templates for this cpt, then we return false for this method because
435
+			//that means we aren't going to load our page template manager and leave that up to the native
436
+			//cpt template manager.
437
+			$cpt_has_support = ! isset($post_templates[$cpt_name]) ? $cpt_has_support : false;
438
+		}
439
+
440
+		return $cpt_has_support;
441
+	}
442
+
443
+
444
+	/**
445
+	 * Callback for the page_templates metabox selector.
446
+	 *
447
+	 * @since %VER%
448
+	 * @return string html
449
+	 */
450
+	public function page_template_meta_box()
451
+	{
452
+		global $post;
453
+		$template = '';
454
+
455
+		if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
456
+			$page_template_count = count(get_page_templates());
457
+		} else {
458
+			$page_template_count = count(get_page_templates($post));
459
+		};
460
+
461
+		if ($page_template_count) {
462
+			$page_template = get_post_meta($post->ID, '_wp_page_template', true);
463
+			$template      = ! empty($page_template) ? $page_template : '';
464
+		}
465
+		?>
466 466
         <p><strong><?php _e('Template') ?></strong></p>
467 467
         <label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label><select
468 468
             name="page_template" id="page_template">
@@ -470,437 +470,437 @@  discard block
 block discarded – undo
470 470
         <?php page_template_dropdown($template); ?>
471 471
     </select>
472 472
         <?php
473
-    }
474
-
475
-
476
-
477
-    /**
478
-     * if this post is a draft or scheduled post then we provide a preview button for user to click
479
-     * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter.
480
-     *
481
-     * @param  string $return    the current html
482
-     * @param  int    $id        the post id for the page
483
-     * @param  string $new_title What the title is
484
-     * @param  string $new_slug  what the slug is
485
-     * @return string            The new html string for the permalink area
486
-     */
487
-    public function preview_button_html($return, $id, $new_title, $new_slug)
488
-    {
489
-        $post = get_post($id);
490
-        if ('publish' != get_post_status($post)) {
491
-            //include shims for the `get_preview_post_link` function
492
-            require_once( EE_CORE . 'wordpress-shims.php' );
493
-            $return .= '<span_id="view-post-btn"><a target="_blank" href="'
494
-                       . get_preview_post_link($id)
495
-                       . '" class="button button-small">'
496
-                       . __('Preview', 'event_espresso')
497
-                       . '</a></span>'
498
-                       . "\n";
499
-        }
500
-        return $return;
501
-    }
502
-
503
-
504
-
505
-    /**
506
-     * add our custom post stati dropdown on the wp post page for this cpt
507
-     *
508
-     * @return string html for dropdown
509
-     */
510
-    public function custom_post_stati_dropdown()
511
-    {
512
-
513
-        $statuses         = $this->_cpt_model_obj->get_custom_post_statuses();
514
-        $cur_status_label = array_key_exists($this->_cpt_model_obj->status(), $statuses)
515
-            ? $statuses[$this->_cpt_model_obj->status()]
516
-            : '';
517
-        $template_args    = array(
518
-            'cur_status'            => $this->_cpt_model_obj->status(),
519
-            'statuses'              => $statuses,
520
-            'cur_status_label'      => $cur_status_label,
521
-            'localized_status_save' => sprintf(__('Save %s', 'event_espresso'), $cur_status_label),
522
-        );
523
-        //we'll add a trash post status (WP doesn't add one for some reason)
524
-        if ($this->_cpt_model_obj->status() == 'trash') {
525
-            $template_args['cur_status_label'] = __('Trashed', 'event_espresso');
526
-            $statuses['trash']                 = __('Trashed', 'event_espresso');
527
-            $template_args['statuses']         = $statuses;
528
-        }
529
-
530
-        $template = EE_ADMIN_TEMPLATE . 'status_dropdown.template.php';
531
-        EEH_Template::display_template($template, $template_args);
532
-    }
533
-
534
-
535
-
536
-    public function setup_autosave_hooks()
537
-    {
538
-        $this->_set_autosave_containers();
539
-        $this->_load_autosave_scripts_styles();
540
-    }
541
-
542
-
543
-
544
-    /**
545
-     * This is run on all WordPress autosaves AFTER the autosave is complete and sends along a $_POST object (available
546
-     * in $this->_req_data) containing: post_ID of the saved post autosavenonce for the saved post We'll do the check
547
-     * for the nonce in here, but then this method looks for two things:
548
-     * 1. Execute a method (if exists) matching 'ee_autosave_' and appended with the given route. OR
549
-     * 2. do_actions() for global or class specific actions that have been registered (for plugins/addons not in an
550
-     * EE_Admin_Page class. PLEASE NOTE: Data will be returned using the _return_json() object and so the
551
-     * $_template_args property should be used to hold the $data array.  We're expecting the following things set in
552
-     * template args.
553
-     *    1. $template_args['error'] = IF there is an error you can add the message in here.
554
-     *    2. $template_args['data']['items'] = an array of items that are setup in key index pairs of 'where_values_go'
555
-     *    => 'values_to_add'.  In other words, for the datetime metabox we'll have something like
556
-     *    $this->_template_args['data']['items'] = array(
557
-     *        'event-datetime-ids' => '1,2,3';
558
-     *    );
559
-     *    Keep in mind the following things:
560
-     *    - "where" index is for the input with the id as that string.
561
-     *    - "what" index is what will be used for the value of that input.
562
-     *
563
-     * @return void
564
-     */
565
-    public function do_extra_autosave_stuff()
566
-    {
567
-        //next let's check for the autosave nonce (we'll use _verify_nonce )
568
-        $nonce = isset($this->_req_data['autosavenonce']) ? $this->_req_data['autosavenonce'] : null;
569
-        $this->_verify_nonce($nonce, 'autosave');
570
-        //make sure we define doing autosave (cause WP isn't triggering this we want to make sure we define it)
571
-        if ( ! defined('DOING_AUTOSAVE')) {
572
-            define('DOING_AUTOSAVE', true);
573
-        }
574
-        //if we made it here then the nonce checked out.  Let's run our methods and actions
575
-        if (method_exists($this, '_ee_autosave_' . $this->_current_view)) {
576
-            call_user_func(array($this, '_ee_autosave_' . $this->_current_view));
577
-        } else {
578
-            $this->_template_args['success'] = true;
579
-        }
580
-        do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__global_after', $this);
581
-        do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__after_' . get_class($this), $this);
582
-        //now let's return json
583
-        $this->_return_json();
584
-    }
585
-
586
-
587
-
588
-    /**
589
-     * This takes care of setting up default routes and pages that utilize the core WP admin pages.
590
-     * Child classes can override the defaults (in cases for adding metaboxes etc.)
591
-     * but take care that you include the defaults here otherwise your core WP admin pages for the cpt won't work!
592
-     *
593
-     * @access protected
594
-     * @throws EE_Error
595
-     * @return void
596
-     */
597
-    protected function _extend_page_config_for_cpt()
598
-    {
599
-        //before doing anything we need to make sure this runs ONLY when the loaded page matches the set page_slug
600
-        if ((isset($this->_req_data['page']) && $this->_req_data['page'] != $this->page_slug)) {
601
-            return;
602
-        }
603
-        //set page routes and page config but ONLY if we're not viewing a custom setup cpt route as defined in _cpt_routes
604
-        if ( ! empty($this->_cpt_object)) {
605
-            $this->_page_routes = array_merge(array(
606
-                'create_new' => '_create_new_cpt_item',
607
-                'edit'       => '_edit_cpt_item',
608
-            ), $this->_page_routes);
609
-            $this->_page_config = array_merge(array(
610
-                'create_new' => array(
611
-                    'nav'           => array(
612
-                        'label' => $this->_cpt_object->labels->add_new_item,
613
-                        'order' => 5,
614
-                    ),
615
-                    'require_nonce' => false,
616
-                ),
617
-                'edit'       => array(
618
-                    'nav'           => array(
619
-                        'label'      => $this->_cpt_object->labels->edit_item,
620
-                        'order'      => 5,
621
-                        'persistent' => false,
622
-                        'url'        => '',
623
-                    ),
624
-                    'require_nonce' => false,
625
-                ),
626
-            ),
627
-                $this->_page_config
628
-            );
629
-        }
630
-        //load the next section only if this is a matching cpt route as set in the cpt routes array.
631
-        if ( ! isset($this->_cpt_routes[$this->_req_action])) {
632
-            return;
633
-        }
634
-        $this->_cpt_route = isset($this->_cpt_routes[$this->_req_action]) ? true : false;
635
-        //add_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load', array( $this, 'modify_current_screen') );
636
-        if (empty($this->_cpt_object)) {
637
-            $msg = sprintf(__('This page has been set as being related to a registered custom post type, however, the custom post type object could not be retrieved. There are two possible reasons for this:  1. The "%s" does not match a registered post type. or 2. The custom post type is not registered for the "%s" action as indexed in the "$_cpt_routes" property on this class (%s).'),
638
-                $this->page_slug, $this->_req_action, get_class($this));
639
-            throw new EE_Error($msg);
640
-        }
641
-        if ($this->_cpt_route) {
642
-            $id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
643
-            $this->_set_model_object($id);
644
-        }
645
-    }
646
-
647
-
648
-
649
-    /**
650
-     * Sets the _cpt_model_object property using what has been set for the _cpt_model_name and a given id.
651
-     *
652
-     * @access protected
653
-     * @param int  $id The id to retrieve the model object for. If empty we set a default object.
654
-     * @param bool $ignore_route_check
655
-     */
656
-    protected function _set_model_object($id = null, $ignore_route_check = false)
657
-    {
658
-        $model = null;
659
-        if (
660
-            empty($this->_cpt_model_names)
661
-            || (
662
-                ! $ignore_route_check
663
-                && ! isset($this->_cpt_routes[$this->_req_action])
664
-            ) || (
665
-                $this->_cpt_model_obj instanceof EE_CPT_Base
666
-                && $this->_cpt_model_obj->ID() === $id
667
-            )
668
-        ) {
669
-            //get out cuz we either don't have a model name OR the object has already been set and it has the same id as what has been sent.
670
-            return;
671
-        }
672
-        //if ignore_route_check is true, then get the model name via EE_Register_CPTs
673
-        if ($ignore_route_check) {
674
-            $model_names = EE_Register_CPTs::get_cpt_model_names();
675
-            $post_type   = get_post_type($id);
676
-            if (isset($model_names[$post_type])) {
677
-                $model = EE_Registry::instance()->load_model($model_names[$post_type]);
678
-            }
679
-        } else {
680
-            $model = EE_Registry::instance()->load_model($this->_cpt_model_names[$this->_req_action]);
681
-        }
682
-        if ($model instanceof EEM_Base) {
683
-            $this->_cpt_model_obj = ! empty($id) ? $model->get_one_by_ID($id) : $model->create_default_object();
684
-        }
685
-        do_action('AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object');
686
-    }
687
-
688
-
689
-
690
-    /**
691
-     * admin_init_global
692
-     * This runs all the code that we want executed within the WP admin_init hook.
693
-     * This method executes for ALL EE Admin pages.
694
-     *
695
-     * @access public
696
-     * @return void
697
-     */
698
-    public function admin_init_global()
699
-    {
700
-        $post = isset($this->_req_data['post']) ? get_post($this->_req_data['post']) : null;
701
-        //its possible this is a new save so let's catch that instead
702
-        $post = isset($this->_req_data['post_ID']) ? get_post($this->_req_data['post_ID']) : $post;
703
-        $post_type = $post ? $post->post_type : false;
704
-        $current_route = isset($this->_req_data['current_route']) ? $this->_req_data['current_route']
705
-            : 'shouldneverwork';
706
-        $route_to_check = $post_type && isset($this->_cpt_routes[$current_route]) ? $this->_cpt_routes[$current_route]
707
-            : '';
708
-        add_filter('get_delete_post_link', array($this, 'modify_delete_post_link'), 10, 3);
709
-        add_filter('get_edit_post_link', array($this, 'modify_edit_post_link'), 10, 3);
710
-        if ($post_type === $route_to_check) {
711
-            add_filter('redirect_post_location', array($this, 'cpt_post_location_redirect'), 10, 2);
712
-            //catch trashed wp redirect
713
-            add_filter('wp_redirect', array($this, 'cpt_trash_post_location_redirect'), 10, 2);
714
-        }
715
-        //now let's filter redirect if we're on a revision page and the revision is for an event CPT.
716
-        $revision = isset($this->_req_data['revision']) ? $this->_req_data['revision'] : null;
717
-        if ( ! empty($revision)) {
718
-            $action = isset($this->_req_data['action']) ? $this->_req_data['action'] : null;
719
-            //doing a restore?
720
-            if ( ! empty($action) && $action == 'restore') {
721
-                //get post for revision
722
-                $rev_post = get_post($revision);
723
-                $rev_parent = get_post($rev_post->post_parent);
724
-                //only do our redirect filter AND our restore revision action if the post_type for the parent is one of our cpts.
725
-                if ($rev_parent && $rev_parent->post_type == $this->page_slug) {
726
-                    add_filter('wp_redirect', array($this, 'revision_redirect'), 10, 2);
727
-                    //restores of revisions
728
-                    add_action('wp_restore_post_revision', array($this, 'restore_revision'), 10, 2);
729
-                }
730
-            }
731
-        }
732
-        //NOTE we ONLY want to run these hooks if we're on the right class for the given post type.  Otherwise we could see some really freaky things happen!
733
-        if ($post_type && $post_type === $route_to_check) {
734
-            //$post_id, $post
735
-            add_action('save_post', array($this, 'insert_update'), 10, 3);
736
-            //$post_id
737
-            add_action('trashed_post', array($this, 'before_trash_cpt_item'), 10);
738
-            add_action('trashed_post', array($this, 'dont_permanently_delete_ee_cpts'), 10);
739
-            add_action('untrashed_post', array($this, 'before_restore_cpt_item'), 10);
740
-            add_action('after_delete_post', array($this, 'before_delete_cpt_item'), 10);
741
-        }
742
-    }
743
-
744
-
745
-
746
-    /**
747
-     * Callback for the WordPress trashed_post hook.
748
-     * Execute some basic checks before calling the trash_cpt_item declared in the child class.
749
-     *
750
-     * @param int $post_id
751
-     */
752
-    public function before_trash_cpt_item($post_id)
753
-    {
754
-        $this->_set_model_object($post_id, true);
755
-        //if our cpt object isn't existent then get out immediately.
756
-        if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
757
-            return;
758
-        }
759
-        $this->trash_cpt_item($post_id);
760
-    }
761
-
762
-
763
-
764
-    /**
765
-     * Callback for the WordPress untrashed_post hook.
766
-     * Execute some basic checks before calling the restore_cpt_method in the child class.
767
-     *
768
-     * @param $post_id
769
-     */
770
-    public function before_restore_cpt_item($post_id)
771
-    {
772
-        $this->_set_model_object($post_id, true);
773
-        //if our cpt object isn't existent then get out immediately.
774
-        if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
775
-            return;
776
-        }
777
-        $this->restore_cpt_item($post_id);
778
-    }
779
-
780
-
781
-
782
-    /**
783
-     * Callback for the WordPress after_delete_post hook.
784
-     * Execute some basic checks before calling the delete_cpt_item method in the child class.
785
-     *
786
-     * @param $post_id
787
-     */
788
-    public function before_delete_cpt_item($post_id)
789
-    {
790
-        $this->_set_model_object($post_id, true);
791
-        //if our cpt object isn't existent then get out immediately.
792
-        if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
793
-            return;
794
-        }
795
-        $this->delete_cpt_item($post_id);
796
-    }
797
-
798
-
799
-
800
-    /**
801
-     * This simply verifies if the cpt_model_object is instantiated for the given page and throws an error message
802
-     * accordingly.
803
-     *
804
-     * @access public
805
-     * @throws EE_Error
806
-     * @return void
807
-     */
808
-    public function verify_cpt_object()
809
-    {
810
-        $label = ! empty($this->_cpt_object) ? $this->_cpt_object->labels->singular_name : $this->page_label;
811
-        // verify event object
812
-        if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base) {
813
-            throw new EE_Error(sprintf(__('Something has gone wrong with the page load because we are unable to set up the object for the %1$s.  This usually happens when the given id for the page route is NOT for the correct custom post type for this page',
814
-                'event_espresso'), $label));
815
-        }
816
-        //if auto-draft then throw an error
817
-        if ($this->_cpt_model_obj->get('status') == 'auto-draft') {
818
-            EE_Error::overwrite_errors();
819
-            EE_Error::add_error(sprintf(__('This %1$s was saved without a title, description, or excerpt which means that none of the extra details you added were saved properly.  All autodrafts will show up in the "draft" view of your event list table.  You can delete them from there. Please click the "Add %1$s" button to refresh and restart.'),
820
-                $label), __FILE__, __FUNCTION__, __LINE__);
821
-        }
822
-    }
823
-
824
-
825
-
826
-    /**
827
-     * admin_footer_scripts_global
828
-     * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method
829
-     * will apply on ALL EE_Admin pages.
830
-     *
831
-     * @access public
832
-     * @return void
833
-     */
834
-    public function admin_footer_scripts_global()
835
-    {
836
-        $this->_add_admin_page_ajax_loading_img();
837
-        $this->_add_admin_page_overlay();
838
-    }
839
-
840
-
841
-
842
-    /**
843
-     * add in any global scripts for cpt routes
844
-     *
845
-     * @return void
846
-     */
847
-    public function load_global_scripts_styles()
848
-    {
849
-        parent::load_global_scripts_styles();
850
-        if ($this->_cpt_model_obj instanceof EE_CPT_Base) {
851
-            //setup custom post status object for localize script but only if we've got a cpt object
852
-            $statuses = $this->_cpt_model_obj->get_custom_post_statuses();
853
-            if ( ! empty($statuses)) {
854
-                //get ALL statuses!
855
-                $statuses = $this->_cpt_model_obj->get_all_post_statuses();
856
-                //setup object
857
-                $ee_cpt_statuses = array();
858
-                foreach ($statuses as $status => $label) {
859
-                    $ee_cpt_statuses[$status] = array(
860
-                        'label'      => $label,
861
-                        'save_label' => sprintf(__('Save as %s', 'event_espresso'), $label),
862
-                    );
863
-                }
864
-                wp_localize_script('ee_admin_js', 'eeCPTstatuses', $ee_cpt_statuses);
865
-            }
866
-        }
867
-    }
868
-
869
-
870
-
871
-    /**
872
-     * This is a wrapper for the insert/update routes for cpt items so we can add things that are common to ALL
873
-     * insert/updates
874
-     *
875
-     * @param  int     $post_id ID of post being updated
876
-     * @param  WP_Post $post    Post object from WP
877
-     * @param  bool    $update  Whether this is an update or a new save.
878
-     * @return void
879
-     */
880
-    public function insert_update($post_id, $post, $update)
881
-    {
882
-        //make sure that if this is a revision OR trash action that we don't do any updates!
883
-        if (
884
-            isset($this->_req_data['action'])
885
-            && (
886
-                $this->_req_data['action'] == 'restore'
887
-                || $this->_req_data['action'] == 'trash'
888
-            )
889
-        ) {
890
-            return;
891
-        }
892
-        $this->_set_model_object($post_id, true);
893
-        //if our cpt object is not instantiated and its NOT the same post_id as what is triggering this callback, then exit.
894
-        if ($update
895
-            && (
896
-                ! $this->_cpt_model_obj instanceof EE_CPT_Base
897
-                || $this->_cpt_model_obj->ID() !== $post_id
898
-            )
899
-        ) {
900
-            return;
901
-        }
902
-        //check for autosave and update our req_data property accordingly.
903
-        /*if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE && isset( $this->_req_data['ee_autosave_data'] ) ) {
473
+	}
474
+
475
+
476
+
477
+	/**
478
+	 * if this post is a draft or scheduled post then we provide a preview button for user to click
479
+	 * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter.
480
+	 *
481
+	 * @param  string $return    the current html
482
+	 * @param  int    $id        the post id for the page
483
+	 * @param  string $new_title What the title is
484
+	 * @param  string $new_slug  what the slug is
485
+	 * @return string            The new html string for the permalink area
486
+	 */
487
+	public function preview_button_html($return, $id, $new_title, $new_slug)
488
+	{
489
+		$post = get_post($id);
490
+		if ('publish' != get_post_status($post)) {
491
+			//include shims for the `get_preview_post_link` function
492
+			require_once( EE_CORE . 'wordpress-shims.php' );
493
+			$return .= '<span_id="view-post-btn"><a target="_blank" href="'
494
+					   . get_preview_post_link($id)
495
+					   . '" class="button button-small">'
496
+					   . __('Preview', 'event_espresso')
497
+					   . '</a></span>'
498
+					   . "\n";
499
+		}
500
+		return $return;
501
+	}
502
+
503
+
504
+
505
+	/**
506
+	 * add our custom post stati dropdown on the wp post page for this cpt
507
+	 *
508
+	 * @return string html for dropdown
509
+	 */
510
+	public function custom_post_stati_dropdown()
511
+	{
512
+
513
+		$statuses         = $this->_cpt_model_obj->get_custom_post_statuses();
514
+		$cur_status_label = array_key_exists($this->_cpt_model_obj->status(), $statuses)
515
+			? $statuses[$this->_cpt_model_obj->status()]
516
+			: '';
517
+		$template_args    = array(
518
+			'cur_status'            => $this->_cpt_model_obj->status(),
519
+			'statuses'              => $statuses,
520
+			'cur_status_label'      => $cur_status_label,
521
+			'localized_status_save' => sprintf(__('Save %s', 'event_espresso'), $cur_status_label),
522
+		);
523
+		//we'll add a trash post status (WP doesn't add one for some reason)
524
+		if ($this->_cpt_model_obj->status() == 'trash') {
525
+			$template_args['cur_status_label'] = __('Trashed', 'event_espresso');
526
+			$statuses['trash']                 = __('Trashed', 'event_espresso');
527
+			$template_args['statuses']         = $statuses;
528
+		}
529
+
530
+		$template = EE_ADMIN_TEMPLATE . 'status_dropdown.template.php';
531
+		EEH_Template::display_template($template, $template_args);
532
+	}
533
+
534
+
535
+
536
+	public function setup_autosave_hooks()
537
+	{
538
+		$this->_set_autosave_containers();
539
+		$this->_load_autosave_scripts_styles();
540
+	}
541
+
542
+
543
+
544
+	/**
545
+	 * This is run on all WordPress autosaves AFTER the autosave is complete and sends along a $_POST object (available
546
+	 * in $this->_req_data) containing: post_ID of the saved post autosavenonce for the saved post We'll do the check
547
+	 * for the nonce in here, but then this method looks for two things:
548
+	 * 1. Execute a method (if exists) matching 'ee_autosave_' and appended with the given route. OR
549
+	 * 2. do_actions() for global or class specific actions that have been registered (for plugins/addons not in an
550
+	 * EE_Admin_Page class. PLEASE NOTE: Data will be returned using the _return_json() object and so the
551
+	 * $_template_args property should be used to hold the $data array.  We're expecting the following things set in
552
+	 * template args.
553
+	 *    1. $template_args['error'] = IF there is an error you can add the message in here.
554
+	 *    2. $template_args['data']['items'] = an array of items that are setup in key index pairs of 'where_values_go'
555
+	 *    => 'values_to_add'.  In other words, for the datetime metabox we'll have something like
556
+	 *    $this->_template_args['data']['items'] = array(
557
+	 *        'event-datetime-ids' => '1,2,3';
558
+	 *    );
559
+	 *    Keep in mind the following things:
560
+	 *    - "where" index is for the input with the id as that string.
561
+	 *    - "what" index is what will be used for the value of that input.
562
+	 *
563
+	 * @return void
564
+	 */
565
+	public function do_extra_autosave_stuff()
566
+	{
567
+		//next let's check for the autosave nonce (we'll use _verify_nonce )
568
+		$nonce = isset($this->_req_data['autosavenonce']) ? $this->_req_data['autosavenonce'] : null;
569
+		$this->_verify_nonce($nonce, 'autosave');
570
+		//make sure we define doing autosave (cause WP isn't triggering this we want to make sure we define it)
571
+		if ( ! defined('DOING_AUTOSAVE')) {
572
+			define('DOING_AUTOSAVE', true);
573
+		}
574
+		//if we made it here then the nonce checked out.  Let's run our methods and actions
575
+		if (method_exists($this, '_ee_autosave_' . $this->_current_view)) {
576
+			call_user_func(array($this, '_ee_autosave_' . $this->_current_view));
577
+		} else {
578
+			$this->_template_args['success'] = true;
579
+		}
580
+		do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__global_after', $this);
581
+		do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__after_' . get_class($this), $this);
582
+		//now let's return json
583
+		$this->_return_json();
584
+	}
585
+
586
+
587
+
588
+	/**
589
+	 * This takes care of setting up default routes and pages that utilize the core WP admin pages.
590
+	 * Child classes can override the defaults (in cases for adding metaboxes etc.)
591
+	 * but take care that you include the defaults here otherwise your core WP admin pages for the cpt won't work!
592
+	 *
593
+	 * @access protected
594
+	 * @throws EE_Error
595
+	 * @return void
596
+	 */
597
+	protected function _extend_page_config_for_cpt()
598
+	{
599
+		//before doing anything we need to make sure this runs ONLY when the loaded page matches the set page_slug
600
+		if ((isset($this->_req_data['page']) && $this->_req_data['page'] != $this->page_slug)) {
601
+			return;
602
+		}
603
+		//set page routes and page config but ONLY if we're not viewing a custom setup cpt route as defined in _cpt_routes
604
+		if ( ! empty($this->_cpt_object)) {
605
+			$this->_page_routes = array_merge(array(
606
+				'create_new' => '_create_new_cpt_item',
607
+				'edit'       => '_edit_cpt_item',
608
+			), $this->_page_routes);
609
+			$this->_page_config = array_merge(array(
610
+				'create_new' => array(
611
+					'nav'           => array(
612
+						'label' => $this->_cpt_object->labels->add_new_item,
613
+						'order' => 5,
614
+					),
615
+					'require_nonce' => false,
616
+				),
617
+				'edit'       => array(
618
+					'nav'           => array(
619
+						'label'      => $this->_cpt_object->labels->edit_item,
620
+						'order'      => 5,
621
+						'persistent' => false,
622
+						'url'        => '',
623
+					),
624
+					'require_nonce' => false,
625
+				),
626
+			),
627
+				$this->_page_config
628
+			);
629
+		}
630
+		//load the next section only if this is a matching cpt route as set in the cpt routes array.
631
+		if ( ! isset($this->_cpt_routes[$this->_req_action])) {
632
+			return;
633
+		}
634
+		$this->_cpt_route = isset($this->_cpt_routes[$this->_req_action]) ? true : false;
635
+		//add_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load', array( $this, 'modify_current_screen') );
636
+		if (empty($this->_cpt_object)) {
637
+			$msg = sprintf(__('This page has been set as being related to a registered custom post type, however, the custom post type object could not be retrieved. There are two possible reasons for this:  1. The "%s" does not match a registered post type. or 2. The custom post type is not registered for the "%s" action as indexed in the "$_cpt_routes" property on this class (%s).'),
638
+				$this->page_slug, $this->_req_action, get_class($this));
639
+			throw new EE_Error($msg);
640
+		}
641
+		if ($this->_cpt_route) {
642
+			$id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
643
+			$this->_set_model_object($id);
644
+		}
645
+	}
646
+
647
+
648
+
649
+	/**
650
+	 * Sets the _cpt_model_object property using what has been set for the _cpt_model_name and a given id.
651
+	 *
652
+	 * @access protected
653
+	 * @param int  $id The id to retrieve the model object for. If empty we set a default object.
654
+	 * @param bool $ignore_route_check
655
+	 */
656
+	protected function _set_model_object($id = null, $ignore_route_check = false)
657
+	{
658
+		$model = null;
659
+		if (
660
+			empty($this->_cpt_model_names)
661
+			|| (
662
+				! $ignore_route_check
663
+				&& ! isset($this->_cpt_routes[$this->_req_action])
664
+			) || (
665
+				$this->_cpt_model_obj instanceof EE_CPT_Base
666
+				&& $this->_cpt_model_obj->ID() === $id
667
+			)
668
+		) {
669
+			//get out cuz we either don't have a model name OR the object has already been set and it has the same id as what has been sent.
670
+			return;
671
+		}
672
+		//if ignore_route_check is true, then get the model name via EE_Register_CPTs
673
+		if ($ignore_route_check) {
674
+			$model_names = EE_Register_CPTs::get_cpt_model_names();
675
+			$post_type   = get_post_type($id);
676
+			if (isset($model_names[$post_type])) {
677
+				$model = EE_Registry::instance()->load_model($model_names[$post_type]);
678
+			}
679
+		} else {
680
+			$model = EE_Registry::instance()->load_model($this->_cpt_model_names[$this->_req_action]);
681
+		}
682
+		if ($model instanceof EEM_Base) {
683
+			$this->_cpt_model_obj = ! empty($id) ? $model->get_one_by_ID($id) : $model->create_default_object();
684
+		}
685
+		do_action('AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object');
686
+	}
687
+
688
+
689
+
690
+	/**
691
+	 * admin_init_global
692
+	 * This runs all the code that we want executed within the WP admin_init hook.
693
+	 * This method executes for ALL EE Admin pages.
694
+	 *
695
+	 * @access public
696
+	 * @return void
697
+	 */
698
+	public function admin_init_global()
699
+	{
700
+		$post = isset($this->_req_data['post']) ? get_post($this->_req_data['post']) : null;
701
+		//its possible this is a new save so let's catch that instead
702
+		$post = isset($this->_req_data['post_ID']) ? get_post($this->_req_data['post_ID']) : $post;
703
+		$post_type = $post ? $post->post_type : false;
704
+		$current_route = isset($this->_req_data['current_route']) ? $this->_req_data['current_route']
705
+			: 'shouldneverwork';
706
+		$route_to_check = $post_type && isset($this->_cpt_routes[$current_route]) ? $this->_cpt_routes[$current_route]
707
+			: '';
708
+		add_filter('get_delete_post_link', array($this, 'modify_delete_post_link'), 10, 3);
709
+		add_filter('get_edit_post_link', array($this, 'modify_edit_post_link'), 10, 3);
710
+		if ($post_type === $route_to_check) {
711
+			add_filter('redirect_post_location', array($this, 'cpt_post_location_redirect'), 10, 2);
712
+			//catch trashed wp redirect
713
+			add_filter('wp_redirect', array($this, 'cpt_trash_post_location_redirect'), 10, 2);
714
+		}
715
+		//now let's filter redirect if we're on a revision page and the revision is for an event CPT.
716
+		$revision = isset($this->_req_data['revision']) ? $this->_req_data['revision'] : null;
717
+		if ( ! empty($revision)) {
718
+			$action = isset($this->_req_data['action']) ? $this->_req_data['action'] : null;
719
+			//doing a restore?
720
+			if ( ! empty($action) && $action == 'restore') {
721
+				//get post for revision
722
+				$rev_post = get_post($revision);
723
+				$rev_parent = get_post($rev_post->post_parent);
724
+				//only do our redirect filter AND our restore revision action if the post_type for the parent is one of our cpts.
725
+				if ($rev_parent && $rev_parent->post_type == $this->page_slug) {
726
+					add_filter('wp_redirect', array($this, 'revision_redirect'), 10, 2);
727
+					//restores of revisions
728
+					add_action('wp_restore_post_revision', array($this, 'restore_revision'), 10, 2);
729
+				}
730
+			}
731
+		}
732
+		//NOTE we ONLY want to run these hooks if we're on the right class for the given post type.  Otherwise we could see some really freaky things happen!
733
+		if ($post_type && $post_type === $route_to_check) {
734
+			//$post_id, $post
735
+			add_action('save_post', array($this, 'insert_update'), 10, 3);
736
+			//$post_id
737
+			add_action('trashed_post', array($this, 'before_trash_cpt_item'), 10);
738
+			add_action('trashed_post', array($this, 'dont_permanently_delete_ee_cpts'), 10);
739
+			add_action('untrashed_post', array($this, 'before_restore_cpt_item'), 10);
740
+			add_action('after_delete_post', array($this, 'before_delete_cpt_item'), 10);
741
+		}
742
+	}
743
+
744
+
745
+
746
+	/**
747
+	 * Callback for the WordPress trashed_post hook.
748
+	 * Execute some basic checks before calling the trash_cpt_item declared in the child class.
749
+	 *
750
+	 * @param int $post_id
751
+	 */
752
+	public function before_trash_cpt_item($post_id)
753
+	{
754
+		$this->_set_model_object($post_id, true);
755
+		//if our cpt object isn't existent then get out immediately.
756
+		if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
757
+			return;
758
+		}
759
+		$this->trash_cpt_item($post_id);
760
+	}
761
+
762
+
763
+
764
+	/**
765
+	 * Callback for the WordPress untrashed_post hook.
766
+	 * Execute some basic checks before calling the restore_cpt_method in the child class.
767
+	 *
768
+	 * @param $post_id
769
+	 */
770
+	public function before_restore_cpt_item($post_id)
771
+	{
772
+		$this->_set_model_object($post_id, true);
773
+		//if our cpt object isn't existent then get out immediately.
774
+		if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
775
+			return;
776
+		}
777
+		$this->restore_cpt_item($post_id);
778
+	}
779
+
780
+
781
+
782
+	/**
783
+	 * Callback for the WordPress after_delete_post hook.
784
+	 * Execute some basic checks before calling the delete_cpt_item method in the child class.
785
+	 *
786
+	 * @param $post_id
787
+	 */
788
+	public function before_delete_cpt_item($post_id)
789
+	{
790
+		$this->_set_model_object($post_id, true);
791
+		//if our cpt object isn't existent then get out immediately.
792
+		if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base || $this->_cpt_model_obj->ID() !== $post_id) {
793
+			return;
794
+		}
795
+		$this->delete_cpt_item($post_id);
796
+	}
797
+
798
+
799
+
800
+	/**
801
+	 * This simply verifies if the cpt_model_object is instantiated for the given page and throws an error message
802
+	 * accordingly.
803
+	 *
804
+	 * @access public
805
+	 * @throws EE_Error
806
+	 * @return void
807
+	 */
808
+	public function verify_cpt_object()
809
+	{
810
+		$label = ! empty($this->_cpt_object) ? $this->_cpt_object->labels->singular_name : $this->page_label;
811
+		// verify event object
812
+		if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base) {
813
+			throw new EE_Error(sprintf(__('Something has gone wrong with the page load because we are unable to set up the object for the %1$s.  This usually happens when the given id for the page route is NOT for the correct custom post type for this page',
814
+				'event_espresso'), $label));
815
+		}
816
+		//if auto-draft then throw an error
817
+		if ($this->_cpt_model_obj->get('status') == 'auto-draft') {
818
+			EE_Error::overwrite_errors();
819
+			EE_Error::add_error(sprintf(__('This %1$s was saved without a title, description, or excerpt which means that none of the extra details you added were saved properly.  All autodrafts will show up in the "draft" view of your event list table.  You can delete them from there. Please click the "Add %1$s" button to refresh and restart.'),
820
+				$label), __FILE__, __FUNCTION__, __LINE__);
821
+		}
822
+	}
823
+
824
+
825
+
826
+	/**
827
+	 * admin_footer_scripts_global
828
+	 * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method
829
+	 * will apply on ALL EE_Admin pages.
830
+	 *
831
+	 * @access public
832
+	 * @return void
833
+	 */
834
+	public function admin_footer_scripts_global()
835
+	{
836
+		$this->_add_admin_page_ajax_loading_img();
837
+		$this->_add_admin_page_overlay();
838
+	}
839
+
840
+
841
+
842
+	/**
843
+	 * add in any global scripts for cpt routes
844
+	 *
845
+	 * @return void
846
+	 */
847
+	public function load_global_scripts_styles()
848
+	{
849
+		parent::load_global_scripts_styles();
850
+		if ($this->_cpt_model_obj instanceof EE_CPT_Base) {
851
+			//setup custom post status object for localize script but only if we've got a cpt object
852
+			$statuses = $this->_cpt_model_obj->get_custom_post_statuses();
853
+			if ( ! empty($statuses)) {
854
+				//get ALL statuses!
855
+				$statuses = $this->_cpt_model_obj->get_all_post_statuses();
856
+				//setup object
857
+				$ee_cpt_statuses = array();
858
+				foreach ($statuses as $status => $label) {
859
+					$ee_cpt_statuses[$status] = array(
860
+						'label'      => $label,
861
+						'save_label' => sprintf(__('Save as %s', 'event_espresso'), $label),
862
+					);
863
+				}
864
+				wp_localize_script('ee_admin_js', 'eeCPTstatuses', $ee_cpt_statuses);
865
+			}
866
+		}
867
+	}
868
+
869
+
870
+
871
+	/**
872
+	 * This is a wrapper for the insert/update routes for cpt items so we can add things that are common to ALL
873
+	 * insert/updates
874
+	 *
875
+	 * @param  int     $post_id ID of post being updated
876
+	 * @param  WP_Post $post    Post object from WP
877
+	 * @param  bool    $update  Whether this is an update or a new save.
878
+	 * @return void
879
+	 */
880
+	public function insert_update($post_id, $post, $update)
881
+	{
882
+		//make sure that if this is a revision OR trash action that we don't do any updates!
883
+		if (
884
+			isset($this->_req_data['action'])
885
+			&& (
886
+				$this->_req_data['action'] == 'restore'
887
+				|| $this->_req_data['action'] == 'trash'
888
+			)
889
+		) {
890
+			return;
891
+		}
892
+		$this->_set_model_object($post_id, true);
893
+		//if our cpt object is not instantiated and its NOT the same post_id as what is triggering this callback, then exit.
894
+		if ($update
895
+			&& (
896
+				! $this->_cpt_model_obj instanceof EE_CPT_Base
897
+				|| $this->_cpt_model_obj->ID() !== $post_id
898
+			)
899
+		) {
900
+			return;
901
+		}
902
+		//check for autosave and update our req_data property accordingly.
903
+		/*if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE && isset( $this->_req_data['ee_autosave_data'] ) ) {
904 904
             foreach( (array) $this->_req_data['ee_autosave_data'] as $id => $values ) {
905 905
 
906 906
                 foreach ( (array) $values as $key => $value ) {
@@ -910,536 +910,536 @@  discard block
 block discarded – undo
910 910
 
911 911
         }/**/ //TODO reactivate after autosave is implemented in 4.2
912 912
 
913
-        //take care of updating any selected page_template IF this cpt supports it.
914
-        if ($this->_supports_page_templates($post->post_type) && ! empty($this->_req_data['page_template'])) {
915
-            //wp version aware.
916
-            if (EE_Recommended_Versions::check_wp_version('4.7', '>=')) {
917
-                $page_templates = wp_get_theme()->get_page_templates();
918
-            } else {
919
-                $post->page_template = $this->_req_data['page_template'];
920
-                $page_templates      = wp_get_theme()->get_page_templates($post);
921
-            }
922
-            if ('default' != $this->_req_data['page_template'] && ! isset($page_templates[$this->_req_data['page_template']])) {
923
-                EE_Error::add_error(__('Invalid Page Template.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
924
-            } else {
925
-                update_post_meta($post_id, '_wp_page_template', $this->_req_data['page_template']);
926
-            }
927
-        }
928
-        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
929
-            return;
930
-        } //TODO we'll remove this after reimplementing autosave in 4.2
931
-        $this->_insert_update_cpt_item($post_id, $post);
932
-    }
933
-
934
-
935
-
936
-    /**
937
-     * This hooks into the wp_trash_post() function and removes the `_wp_trash_meta_status` and `_wp_trash_meta_time`
938
-     * post meta IF the trashed post is one of our CPT's - note this method should only be called with our cpt routes
939
-     * so we don't have to check for our CPT.
940
-     *
941
-     * @param  int $post_id ID of the post
942
-     * @return void
943
-     */
944
-    public function dont_permanently_delete_ee_cpts($post_id)
945
-    {
946
-        //only do this if we're actually processing one of our CPTs
947
-        //if our cpt object isn't existent then get out immediately.
948
-        if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base) {
949
-            return;
950
-        }
951
-        delete_post_meta($post_id, '_wp_trash_meta_status');
952
-        delete_post_meta($post_id, '_wp_trash_meta_time');
953
-        //our cpts may have comments so let's take care of that too
954
-        delete_post_meta($post_id, '_wp_trash_meta_comments_status');
955
-    }
956
-
957
-
958
-
959
-    /**
960
-     * This is a wrapper for the restore_cpt_revision route for cpt items so we can make sure that when a revision is
961
-     * triggered that we restore related items.  In order to work cpt classes MUST have a restore_cpt_revision method
962
-     * in them.  We also have our OWN action in here so addons can hook into the restore process easily.
963
-     *
964
-     * @param  int $post_id     ID of cpt item
965
-     * @param  int $revision_id ID of revision being restored
966
-     * @return void
967
-     */
968
-    public function restore_revision($post_id, $revision_id)
969
-    {
970
-        $this->_restore_cpt_item($post_id, $revision_id);
971
-        //global action
972
-        do_action('AHEE_EE_Admin_Page_CPT__restore_revision', $post_id, $revision_id);
973
-        //class specific action so you can limit hooking into a specific page.
974
-        do_action('AHEE_EE_Admin_Page_CPT_' . get_class($this) . '__restore_revision', $post_id, $revision_id);
975
-    }
976
-
977
-
978
-
979
-    /**
980
-     * @see restore_revision() for details
981
-     * @param  int $post_id     ID of cpt item
982
-     * @param  int $revision_id ID of revision for item
983
-     * @return void
984
-     */
985
-    abstract protected function _restore_cpt_item($post_id, $revision_id);
986
-
987
-
988
-
989
-    /**
990
-     * Execution of this method is added to the end of the load_page_dependencies method in the parent
991
-     * so that we can fix a bug where default core metaboxes were not being called in the sidebar.
992
-     * To fix we have to reset the current_screen using the page_slug
993
-     * (which is identical - or should be - to our registered_post_type id.)
994
-     * Also, since the core WP file loads the admin_header.php for WP
995
-     * (and there are a bunch of other things edit-form-advanced.php loads that need to happen really early)
996
-     * we need to load it NOW, hence our _route_admin_request in here. (Otherwise screen options won't be set).
997
-     *
998
-     * @return void
999
-     */
1000
-    public function modify_current_screen()
1001
-    {
1002
-        //ONLY do this if the current page_route IS a cpt route
1003
-        if ( ! $this->_cpt_route) {
1004
-            return;
1005
-        }
1006
-        //routing things REALLY early b/c this is a cpt admin page
1007
-        set_current_screen($this->_cpt_routes[$this->_req_action]);
1008
-        $this->_current_screen       = get_current_screen();
1009
-        $this->_current_screen->base = 'event-espresso';
1010
-        $this->_add_help_tabs(); //we make sure we add any help tabs back in!
1011
-        /*try {
913
+		//take care of updating any selected page_template IF this cpt supports it.
914
+		if ($this->_supports_page_templates($post->post_type) && ! empty($this->_req_data['page_template'])) {
915
+			//wp version aware.
916
+			if (EE_Recommended_Versions::check_wp_version('4.7', '>=')) {
917
+				$page_templates = wp_get_theme()->get_page_templates();
918
+			} else {
919
+				$post->page_template = $this->_req_data['page_template'];
920
+				$page_templates      = wp_get_theme()->get_page_templates($post);
921
+			}
922
+			if ('default' != $this->_req_data['page_template'] && ! isset($page_templates[$this->_req_data['page_template']])) {
923
+				EE_Error::add_error(__('Invalid Page Template.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
924
+			} else {
925
+				update_post_meta($post_id, '_wp_page_template', $this->_req_data['page_template']);
926
+			}
927
+		}
928
+		if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
929
+			return;
930
+		} //TODO we'll remove this after reimplementing autosave in 4.2
931
+		$this->_insert_update_cpt_item($post_id, $post);
932
+	}
933
+
934
+
935
+
936
+	/**
937
+	 * This hooks into the wp_trash_post() function and removes the `_wp_trash_meta_status` and `_wp_trash_meta_time`
938
+	 * post meta IF the trashed post is one of our CPT's - note this method should only be called with our cpt routes
939
+	 * so we don't have to check for our CPT.
940
+	 *
941
+	 * @param  int $post_id ID of the post
942
+	 * @return void
943
+	 */
944
+	public function dont_permanently_delete_ee_cpts($post_id)
945
+	{
946
+		//only do this if we're actually processing one of our CPTs
947
+		//if our cpt object isn't existent then get out immediately.
948
+		if ( ! $this->_cpt_model_obj instanceof EE_CPT_Base) {
949
+			return;
950
+		}
951
+		delete_post_meta($post_id, '_wp_trash_meta_status');
952
+		delete_post_meta($post_id, '_wp_trash_meta_time');
953
+		//our cpts may have comments so let's take care of that too
954
+		delete_post_meta($post_id, '_wp_trash_meta_comments_status');
955
+	}
956
+
957
+
958
+
959
+	/**
960
+	 * This is a wrapper for the restore_cpt_revision route for cpt items so we can make sure that when a revision is
961
+	 * triggered that we restore related items.  In order to work cpt classes MUST have a restore_cpt_revision method
962
+	 * in them.  We also have our OWN action in here so addons can hook into the restore process easily.
963
+	 *
964
+	 * @param  int $post_id     ID of cpt item
965
+	 * @param  int $revision_id ID of revision being restored
966
+	 * @return void
967
+	 */
968
+	public function restore_revision($post_id, $revision_id)
969
+	{
970
+		$this->_restore_cpt_item($post_id, $revision_id);
971
+		//global action
972
+		do_action('AHEE_EE_Admin_Page_CPT__restore_revision', $post_id, $revision_id);
973
+		//class specific action so you can limit hooking into a specific page.
974
+		do_action('AHEE_EE_Admin_Page_CPT_' . get_class($this) . '__restore_revision', $post_id, $revision_id);
975
+	}
976
+
977
+
978
+
979
+	/**
980
+	 * @see restore_revision() for details
981
+	 * @param  int $post_id     ID of cpt item
982
+	 * @param  int $revision_id ID of revision for item
983
+	 * @return void
984
+	 */
985
+	abstract protected function _restore_cpt_item($post_id, $revision_id);
986
+
987
+
988
+
989
+	/**
990
+	 * Execution of this method is added to the end of the load_page_dependencies method in the parent
991
+	 * so that we can fix a bug where default core metaboxes were not being called in the sidebar.
992
+	 * To fix we have to reset the current_screen using the page_slug
993
+	 * (which is identical - or should be - to our registered_post_type id.)
994
+	 * Also, since the core WP file loads the admin_header.php for WP
995
+	 * (and there are a bunch of other things edit-form-advanced.php loads that need to happen really early)
996
+	 * we need to load it NOW, hence our _route_admin_request in here. (Otherwise screen options won't be set).
997
+	 *
998
+	 * @return void
999
+	 */
1000
+	public function modify_current_screen()
1001
+	{
1002
+		//ONLY do this if the current page_route IS a cpt route
1003
+		if ( ! $this->_cpt_route) {
1004
+			return;
1005
+		}
1006
+		//routing things REALLY early b/c this is a cpt admin page
1007
+		set_current_screen($this->_cpt_routes[$this->_req_action]);
1008
+		$this->_current_screen       = get_current_screen();
1009
+		$this->_current_screen->base = 'event-espresso';
1010
+		$this->_add_help_tabs(); //we make sure we add any help tabs back in!
1011
+		/*try {
1012 1012
             $this->_route_admin_request();
1013 1013
         } catch ( EE_Error $e ) {
1014 1014
             $e->get_error();
1015 1015
         }/**/
1016
-    }
1017
-
1018
-
1019
-
1020
-    /**
1021
-     * This allows child classes to modify the default editor title that appears when people add a new or edit an
1022
-     * existing CPT item.     * This uses the _labels property set by the child class via _define_page_props. Just make
1023
-     * sure you have a key in _labels property that equals 'editor_title' and the value can be whatever you want the
1024
-     * default to be.
1025
-     *
1026
-     * @param string $title The new title (or existing if there is no editor_title defined)
1027
-     * @return string
1028
-     */
1029
-    public function add_custom_editor_default_title($title)
1030
-    {
1031
-        return isset($this->_labels['editor_title'][$this->_cpt_routes[$this->_req_action]])
1032
-            ? $this->_labels['editor_title'][$this->_cpt_routes[$this->_req_action]]
1033
-            : $title;
1034
-    }
1035
-
1036
-
1037
-
1038
-    /**
1039
-     * hooks into the wp_get_shortlink button and makes sure that the shortlink gets generated
1040
-     *
1041
-     * @param string $shortlink   The already generated shortlink
1042
-     * @param int    $id          Post ID for this item
1043
-     * @param string $context     The context for the link
1044
-     * @param bool   $allow_slugs Whether to allow post slugs in the shortlink.
1045
-     * @return string
1046
-     */
1047
-    public function add_shortlink_button_to_editor($shortlink, $id, $context, $allow_slugs)
1048
-    {
1049
-        if ( ! empty($id) && '' != get_option('permalink_structure')) {
1050
-            $post = get_post($id);
1051
-            if (isset($post->post_type) && $this->page_slug == $post->post_type) {
1052
-                $shortlink = home_url('?p=' . $post->ID);
1053
-            }
1054
-        }
1055
-        return $shortlink;
1056
-    }
1057
-
1058
-
1059
-
1060
-    /**
1061
-     * overriding the parent route_admin_request method so we DON'T run the route twice on cpt core page loads (it's
1062
-     * already run in modify_current_screen())
1063
-     *
1064
-     * @return void
1065
-     */
1066
-    public function route_admin_request()
1067
-    {
1068
-        if ($this->_cpt_route) {
1069
-            return;
1070
-        }
1071
-        try {
1072
-            $this->_route_admin_request();
1073
-        } catch (EE_Error $e) {
1074
-            $e->get_error();
1075
-        }
1076
-    }
1077
-
1078
-
1079
-
1080
-    /**
1081
-     * Add a hidden form input to cpt core pages so that we know to do redirects to our routes on saves
1082
-     *
1083
-     * @return string html
1084
-     */
1085
-    public function cpt_post_form_hidden_input()
1086
-    {
1087
-        echo '<input type="hidden" name="ee_cpt_item_redirect_url" value="' . $this->_admin_base_url . '" />';
1088
-        //we're also going to add the route value and the current page so we can direct autosave parsing correctly
1089
-        echo '<div id="ee-cpt-hidden-inputs">';
1090
-        echo '<input type="hidden" id="current_route" name="current_route" value="' . $this->_current_view . '" />';
1091
-        echo '<input type="hidden" id="current_page" name="current_page" value="' . $this->page_slug . '" />';
1092
-        echo '</div>';
1093
-    }
1094
-
1095
-
1096
-
1097
-    /**
1098
-     * This allows us to redirect the location of revision restores when they happen so it goes to our CPT routes.
1099
-     *
1100
-     * @param  string $location Original location url
1101
-     * @param  int    $status   Status for http header
1102
-     * @return string           new (or original) url to redirect to.
1103
-     */
1104
-    public function revision_redirect($location, $status)
1105
-    {
1106
-        //get revision
1107
-        $rev_id = isset($this->_req_data['revision']) ? $this->_req_data['revision'] : null;
1108
-        //can't do anything without revision so let's get out if not present
1109
-        if (empty($rev_id)) {
1110
-            return $location;
1111
-        }
1112
-        //get rev_post_data
1113
-        $rev = get_post($rev_id);
1114
-        $admin_url = $this->_admin_base_url;
1115
-        $query_args = array(
1116
-            'action'   => 'edit',
1117
-            'post'     => $rev->post_parent,
1118
-            'revision' => $rev_id,
1119
-            'message'  => 5,
1120
-        );
1121
-        $this->_process_notices($query_args, true);
1122
-        return self::add_query_args_and_nonce($query_args, $admin_url);
1123
-    }
1124
-
1125
-
1126
-
1127
-    /**
1128
-     * Modify the edit post link generated by wp core function so that EE CPTs get setup differently.
1129
-     *
1130
-     * @param  string $link    the original generated link
1131
-     * @param  int    $id      post id
1132
-     * @param  string $context optional, defaults to display.  How to write the '&'
1133
-     * @return string          the link
1134
-     */
1135
-    public function modify_edit_post_link($link, $id, $context)
1136
-    {
1137
-        $post = get_post($id);
1138
-        if ( ! isset($this->_req_data['action'])
1139
-             || ! isset($this->_cpt_routes[$this->_req_data['action']])
1140
-             || $post->post_type !== $this->_cpt_routes[$this->_req_data['action']]
1141
-        ) {
1142
-            return $link;
1143
-        }
1144
-        $query_args = array(
1145
-            'action' => isset($this->_cpt_edit_routes[$post->post_type])
1146
-                ? $this->_cpt_edit_routes[$post->post_type]
1147
-                : 'edit',
1148
-            'post'   => $id,
1149
-        );
1150
-        return self::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1151
-    }
1152
-
1153
-
1154
-
1155
-    /**
1156
-     * Modify the trash link on our cpt edit pages so it has the required query var for triggering redirect properly on
1157
-     * our routes.
1158
-     *
1159
-     * @param  string $delete_link  original delete link
1160
-     * @param  int    $post_id      id of cpt object
1161
-     * @param  bool   $force_delete whether this is forcing a hard delete instead of trash
1162
-     * @return string               new delete link
1163
-     */
1164
-    public function modify_delete_post_link($delete_link, $post_id, $force_delete)
1165
-    {
1166
-        $post = get_post($post_id);
1167
-        if ( ! isset($this->_req_data['action'])
1168
-             || (isset($this->_cpt_routes[$this->_req_data['action']])
1169
-                 && $post->post_type !== $this->_cpt_routes[$this->_req_data['action']])
1170
-        ) {
1171
-            return $delete_link;
1172
-        }
1173
-        return add_query_arg(array('current_route' => 'trash'), $delete_link);
1174
-    }
1175
-
1176
-
1177
-
1178
-    /**
1179
-     * This hooks into the wp_redirect filter and if trashed is detected, then we'll redirect to the appropriate EE
1180
-     * route
1181
-     *
1182
-     * @param  string $location url
1183
-     * @param  string $status   status
1184
-     * @return string           url to redirect to
1185
-     */
1186
-    public function cpt_trash_post_location_redirect($location, $status)
1187
-    {
1188
-        if (isset($this->_req_data['action']) && $this->_req_data['action'] !== 'trash' && empty($this->_req_data['post'])) {
1189
-            return $location;
1190
-        }
1191
-
1192
-        $post              = get_post($this->_req_data['post']);
1193
-        $query_args        = array('action' => 'default');
1194
-        $this->_cpt_object = get_post_type_object($post->post_type);
1195
-        EE_Error::add_success(sprintf(__('%s trashed.', 'event_espresso'), $this->_cpt_object->labels->singular_name));
1196
-        $this->_process_notices($query_args, true);
1197
-        return self::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1198
-    }
1199
-
1200
-
1201
-
1202
-    /**
1203
-     * This is the callback for the 'redirect_post_location' filter in wp-admin/post.php
1204
-     * so that we can hijack the default redirect locations for wp custom post types
1205
-     * that WE'RE using and send back to OUR routes.  This should only be hooked in on the right route.
1206
-     *
1207
-     * @param  string $location This is the incoming currently set redirect location
1208
-     * @param  string $post_id  This is the 'ID' value of the wp_posts table
1209
-     * @return string           the new location to redirect to
1210
-     */
1211
-    public function cpt_post_location_redirect($location, $post_id)
1212
-    {
1213
-        //we DO have a match so let's setup the url
1214
-        //we have to get the post to determine our route
1215
-        $post       = get_post($post_id);
1216
-        $edit_route = $this->_cpt_edit_routes[$post->post_type];
1217
-        //shared query_args
1218
-        $query_args = array('action' => $edit_route, 'post' => $post_id);
1219
-        $admin_url  = $this->_admin_base_url;
1220
-        if (isset($this->_req_data['save']) || isset($this->_req_data['publish'])) {
1221
-            $status = get_post_status($post_id);
1222
-            if (isset($this->_req_data['publish'])) {
1223
-                switch ($status) {
1224
-                    case 'pending':
1225
-                        $message = 8;
1226
-                        break;
1227
-                    case 'future':
1228
-                        $message = 9;
1229
-                        break;
1230
-                    default:
1231
-                        $message = 6;
1232
-                }
1233
-            } else {
1234
-                $message = 'draft' == $status ? 10 : 1;
1235
-            }
1236
-        } else if (isset($this->_req_data['addmeta']) && $this->_req_data['addmeta']) {
1237
-            $message = 2;
1238
-            //			$append = '#postcustom';
1239
-        } else if (isset($this->_req_data['deletemeta']) && $this->_req_data['deletemeta']) {
1240
-            $message = 3;
1241
-            //			$append = '#postcustom';
1242
-        } elseif ($this->_req_data['action'] == 'post-quickpress-save-cont') {
1243
-            $message = 7;
1244
-        } else {
1245
-            $message = 4;
1246
-        }
1247
-        //change the message if the post type is not viewable on the frontend
1248
-        $this->_cpt_object = get_post_type_object($post->post_type);
1249
-        $message           = $message === 1 && ! $this->_cpt_object->publicly_queryable ? 4 : $message;
1250
-        $query_args = array_merge(array('message' => $message), $query_args);
1251
-        $this->_process_notices($query_args, true);
1252
-        return self::add_query_args_and_nonce($query_args, $admin_url);
1253
-    }
1254
-
1255
-
1256
-
1257
-    /**
1258
-     * This method is called to inject nav tabs on core WP cpt pages
1259
-     *
1260
-     * @access public
1261
-     * @return string html
1262
-     */
1263
-    public function inject_nav_tabs()
1264
-    {
1265
-        //can we hijack and insert the nav_tabs?
1266
-        $nav_tabs = $this->_get_main_nav_tabs();
1267
-        //first close off existing form tag
1268
-        $html = '>';
1269
-        $html .= $nav_tabs;
1270
-        //now let's handle the remaining tag ( missing ">" is CORRECT )
1271
-        $html .= '<span></span';
1272
-        echo $html;
1273
-    }
1274
-
1275
-
1276
-
1277
-    /**
1278
-     * This just sets up the post update messages when an update form is loaded
1279
-     *
1280
-     * @access public
1281
-     * @param  array $messages the original messages array
1282
-     * @return array           the new messages array
1283
-     */
1284
-    public function post_update_messages($messages)
1285
-    {
1286
-        global $post;
1287
-        $id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
1288
-        $id = empty($id) && is_object($post) ? $post->ID : null;
1289
-        //		$post_type = $post ? $post->post_type : false;
1290
-        /*$current_route = isset($this->_req_data['current_route']) ? $this->_req_data['current_route'] : 'shouldneverwork';
1016
+	}
1017
+
1018
+
1019
+
1020
+	/**
1021
+	 * This allows child classes to modify the default editor title that appears when people add a new or edit an
1022
+	 * existing CPT item.     * This uses the _labels property set by the child class via _define_page_props. Just make
1023
+	 * sure you have a key in _labels property that equals 'editor_title' and the value can be whatever you want the
1024
+	 * default to be.
1025
+	 *
1026
+	 * @param string $title The new title (or existing if there is no editor_title defined)
1027
+	 * @return string
1028
+	 */
1029
+	public function add_custom_editor_default_title($title)
1030
+	{
1031
+		return isset($this->_labels['editor_title'][$this->_cpt_routes[$this->_req_action]])
1032
+			? $this->_labels['editor_title'][$this->_cpt_routes[$this->_req_action]]
1033
+			: $title;
1034
+	}
1035
+
1036
+
1037
+
1038
+	/**
1039
+	 * hooks into the wp_get_shortlink button and makes sure that the shortlink gets generated
1040
+	 *
1041
+	 * @param string $shortlink   The already generated shortlink
1042
+	 * @param int    $id          Post ID for this item
1043
+	 * @param string $context     The context for the link
1044
+	 * @param bool   $allow_slugs Whether to allow post slugs in the shortlink.
1045
+	 * @return string
1046
+	 */
1047
+	public function add_shortlink_button_to_editor($shortlink, $id, $context, $allow_slugs)
1048
+	{
1049
+		if ( ! empty($id) && '' != get_option('permalink_structure')) {
1050
+			$post = get_post($id);
1051
+			if (isset($post->post_type) && $this->page_slug == $post->post_type) {
1052
+				$shortlink = home_url('?p=' . $post->ID);
1053
+			}
1054
+		}
1055
+		return $shortlink;
1056
+	}
1057
+
1058
+
1059
+
1060
+	/**
1061
+	 * overriding the parent route_admin_request method so we DON'T run the route twice on cpt core page loads (it's
1062
+	 * already run in modify_current_screen())
1063
+	 *
1064
+	 * @return void
1065
+	 */
1066
+	public function route_admin_request()
1067
+	{
1068
+		if ($this->_cpt_route) {
1069
+			return;
1070
+		}
1071
+		try {
1072
+			$this->_route_admin_request();
1073
+		} catch (EE_Error $e) {
1074
+			$e->get_error();
1075
+		}
1076
+	}
1077
+
1078
+
1079
+
1080
+	/**
1081
+	 * Add a hidden form input to cpt core pages so that we know to do redirects to our routes on saves
1082
+	 *
1083
+	 * @return string html
1084
+	 */
1085
+	public function cpt_post_form_hidden_input()
1086
+	{
1087
+		echo '<input type="hidden" name="ee_cpt_item_redirect_url" value="' . $this->_admin_base_url . '" />';
1088
+		//we're also going to add the route value and the current page so we can direct autosave parsing correctly
1089
+		echo '<div id="ee-cpt-hidden-inputs">';
1090
+		echo '<input type="hidden" id="current_route" name="current_route" value="' . $this->_current_view . '" />';
1091
+		echo '<input type="hidden" id="current_page" name="current_page" value="' . $this->page_slug . '" />';
1092
+		echo '</div>';
1093
+	}
1094
+
1095
+
1096
+
1097
+	/**
1098
+	 * This allows us to redirect the location of revision restores when they happen so it goes to our CPT routes.
1099
+	 *
1100
+	 * @param  string $location Original location url
1101
+	 * @param  int    $status   Status for http header
1102
+	 * @return string           new (or original) url to redirect to.
1103
+	 */
1104
+	public function revision_redirect($location, $status)
1105
+	{
1106
+		//get revision
1107
+		$rev_id = isset($this->_req_data['revision']) ? $this->_req_data['revision'] : null;
1108
+		//can't do anything without revision so let's get out if not present
1109
+		if (empty($rev_id)) {
1110
+			return $location;
1111
+		}
1112
+		//get rev_post_data
1113
+		$rev = get_post($rev_id);
1114
+		$admin_url = $this->_admin_base_url;
1115
+		$query_args = array(
1116
+			'action'   => 'edit',
1117
+			'post'     => $rev->post_parent,
1118
+			'revision' => $rev_id,
1119
+			'message'  => 5,
1120
+		);
1121
+		$this->_process_notices($query_args, true);
1122
+		return self::add_query_args_and_nonce($query_args, $admin_url);
1123
+	}
1124
+
1125
+
1126
+
1127
+	/**
1128
+	 * Modify the edit post link generated by wp core function so that EE CPTs get setup differently.
1129
+	 *
1130
+	 * @param  string $link    the original generated link
1131
+	 * @param  int    $id      post id
1132
+	 * @param  string $context optional, defaults to display.  How to write the '&'
1133
+	 * @return string          the link
1134
+	 */
1135
+	public function modify_edit_post_link($link, $id, $context)
1136
+	{
1137
+		$post = get_post($id);
1138
+		if ( ! isset($this->_req_data['action'])
1139
+			 || ! isset($this->_cpt_routes[$this->_req_data['action']])
1140
+			 || $post->post_type !== $this->_cpt_routes[$this->_req_data['action']]
1141
+		) {
1142
+			return $link;
1143
+		}
1144
+		$query_args = array(
1145
+			'action' => isset($this->_cpt_edit_routes[$post->post_type])
1146
+				? $this->_cpt_edit_routes[$post->post_type]
1147
+				: 'edit',
1148
+			'post'   => $id,
1149
+		);
1150
+		return self::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1151
+	}
1152
+
1153
+
1154
+
1155
+	/**
1156
+	 * Modify the trash link on our cpt edit pages so it has the required query var for triggering redirect properly on
1157
+	 * our routes.
1158
+	 *
1159
+	 * @param  string $delete_link  original delete link
1160
+	 * @param  int    $post_id      id of cpt object
1161
+	 * @param  bool   $force_delete whether this is forcing a hard delete instead of trash
1162
+	 * @return string               new delete link
1163
+	 */
1164
+	public function modify_delete_post_link($delete_link, $post_id, $force_delete)
1165
+	{
1166
+		$post = get_post($post_id);
1167
+		if ( ! isset($this->_req_data['action'])
1168
+			 || (isset($this->_cpt_routes[$this->_req_data['action']])
1169
+				 && $post->post_type !== $this->_cpt_routes[$this->_req_data['action']])
1170
+		) {
1171
+			return $delete_link;
1172
+		}
1173
+		return add_query_arg(array('current_route' => 'trash'), $delete_link);
1174
+	}
1175
+
1176
+
1177
+
1178
+	/**
1179
+	 * This hooks into the wp_redirect filter and if trashed is detected, then we'll redirect to the appropriate EE
1180
+	 * route
1181
+	 *
1182
+	 * @param  string $location url
1183
+	 * @param  string $status   status
1184
+	 * @return string           url to redirect to
1185
+	 */
1186
+	public function cpt_trash_post_location_redirect($location, $status)
1187
+	{
1188
+		if (isset($this->_req_data['action']) && $this->_req_data['action'] !== 'trash' && empty($this->_req_data['post'])) {
1189
+			return $location;
1190
+		}
1191
+
1192
+		$post              = get_post($this->_req_data['post']);
1193
+		$query_args        = array('action' => 'default');
1194
+		$this->_cpt_object = get_post_type_object($post->post_type);
1195
+		EE_Error::add_success(sprintf(__('%s trashed.', 'event_espresso'), $this->_cpt_object->labels->singular_name));
1196
+		$this->_process_notices($query_args, true);
1197
+		return self::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1198
+	}
1199
+
1200
+
1201
+
1202
+	/**
1203
+	 * This is the callback for the 'redirect_post_location' filter in wp-admin/post.php
1204
+	 * so that we can hijack the default redirect locations for wp custom post types
1205
+	 * that WE'RE using and send back to OUR routes.  This should only be hooked in on the right route.
1206
+	 *
1207
+	 * @param  string $location This is the incoming currently set redirect location
1208
+	 * @param  string $post_id  This is the 'ID' value of the wp_posts table
1209
+	 * @return string           the new location to redirect to
1210
+	 */
1211
+	public function cpt_post_location_redirect($location, $post_id)
1212
+	{
1213
+		//we DO have a match so let's setup the url
1214
+		//we have to get the post to determine our route
1215
+		$post       = get_post($post_id);
1216
+		$edit_route = $this->_cpt_edit_routes[$post->post_type];
1217
+		//shared query_args
1218
+		$query_args = array('action' => $edit_route, 'post' => $post_id);
1219
+		$admin_url  = $this->_admin_base_url;
1220
+		if (isset($this->_req_data['save']) || isset($this->_req_data['publish'])) {
1221
+			$status = get_post_status($post_id);
1222
+			if (isset($this->_req_data['publish'])) {
1223
+				switch ($status) {
1224
+					case 'pending':
1225
+						$message = 8;
1226
+						break;
1227
+					case 'future':
1228
+						$message = 9;
1229
+						break;
1230
+					default:
1231
+						$message = 6;
1232
+				}
1233
+			} else {
1234
+				$message = 'draft' == $status ? 10 : 1;
1235
+			}
1236
+		} else if (isset($this->_req_data['addmeta']) && $this->_req_data['addmeta']) {
1237
+			$message = 2;
1238
+			//			$append = '#postcustom';
1239
+		} else if (isset($this->_req_data['deletemeta']) && $this->_req_data['deletemeta']) {
1240
+			$message = 3;
1241
+			//			$append = '#postcustom';
1242
+		} elseif ($this->_req_data['action'] == 'post-quickpress-save-cont') {
1243
+			$message = 7;
1244
+		} else {
1245
+			$message = 4;
1246
+		}
1247
+		//change the message if the post type is not viewable on the frontend
1248
+		$this->_cpt_object = get_post_type_object($post->post_type);
1249
+		$message           = $message === 1 && ! $this->_cpt_object->publicly_queryable ? 4 : $message;
1250
+		$query_args = array_merge(array('message' => $message), $query_args);
1251
+		$this->_process_notices($query_args, true);
1252
+		return self::add_query_args_and_nonce($query_args, $admin_url);
1253
+	}
1254
+
1255
+
1256
+
1257
+	/**
1258
+	 * This method is called to inject nav tabs on core WP cpt pages
1259
+	 *
1260
+	 * @access public
1261
+	 * @return string html
1262
+	 */
1263
+	public function inject_nav_tabs()
1264
+	{
1265
+		//can we hijack and insert the nav_tabs?
1266
+		$nav_tabs = $this->_get_main_nav_tabs();
1267
+		//first close off existing form tag
1268
+		$html = '>';
1269
+		$html .= $nav_tabs;
1270
+		//now let's handle the remaining tag ( missing ">" is CORRECT )
1271
+		$html .= '<span></span';
1272
+		echo $html;
1273
+	}
1274
+
1275
+
1276
+
1277
+	/**
1278
+	 * This just sets up the post update messages when an update form is loaded
1279
+	 *
1280
+	 * @access public
1281
+	 * @param  array $messages the original messages array
1282
+	 * @return array           the new messages array
1283
+	 */
1284
+	public function post_update_messages($messages)
1285
+	{
1286
+		global $post;
1287
+		$id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
1288
+		$id = empty($id) && is_object($post) ? $post->ID : null;
1289
+		//		$post_type = $post ? $post->post_type : false;
1290
+		/*$current_route = isset($this->_req_data['current_route']) ? $this->_req_data['current_route'] : 'shouldneverwork';
1291 1291
 
1292 1292
         $route_to_check = $post_type && isset( $this->_cpt_routes[$current_route]) ? $this->_cpt_routes[$current_route] : '';/**/
1293
-        $messages[$post->post_type] = array(
1294
-            0 => '', //Unused. Messages start at index 1.
1295
-            1 => sprintf(
1296
-                __('%1$s updated. %2$sView %1$s%3$s', 'event_espresso'),
1297
-                $this->_cpt_object->labels->singular_name,
1298
-                '<a href="' . esc_url(get_permalink($id)) . '">',
1299
-                '</a>'
1300
-            ),
1301
-            2 => __('Custom field updated'),
1302
-            3 => __('Custom field deleted.'),
1303
-            4 => sprintf(__('%1$s updated.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1304
-            5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'event_espresso'),
1305
-                $this->_cpt_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false))
1306
-                : false,
1307
-            6 => sprintf(
1308
-                __('%1$s published. %2$sView %1$s%3$s', 'event_espresso'),
1309
-                $this->_cpt_object->labels->singular_name,
1310
-                '<a href="' . esc_url(get_permalink($id)) . '">',
1311
-                '</a>'
1312
-            ),
1313
-            7 => sprintf(__('%1$s saved.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1314
-            8 => sprintf(
1315
-                __('%1$s submitted. %2$sPreview %1$s%3$s', 'event_espresso'),
1316
-                $this->_cpt_object->labels->singular_name,
1317
-                '<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))) . '">',
1318
-                '</a>'
1319
-            ),
1320
-            9 => sprintf(
1321
-                __('%1$s scheduled for: %2$s. %3$s">Preview %1$s%3$s', 'event_espresso'),
1322
-                $this->_cpt_object->labels->singular_name,
1323
-                '<strong>' . date_i18n(__('M j, Y @ G:i'), strtotime($post->post_date)) . '</strong>',
1324
-                '<a target="_blank" href="' . esc_url(get_permalink($id)),
1325
-                '</a>'
1326
-            ),
1327
-            10 => sprintf(
1328
-                __('%1$s draft updated. %2$s">Preview page%3$s', 'event_espresso'),
1329
-                $this->_cpt_object->labels->singular_name,
1330
-                '<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))),
1331
-                '</a>'
1332
-            ),
1333
-        );
1334
-        return $messages;
1335
-    }
1336
-
1337
-
1338
-
1339
-    /**
1340
-     * default method for the 'create_new' route for cpt admin pages.
1341
-     * For reference what to include in here, see wp-admin/post-new.php
1342
-     *
1343
-     * @access  protected
1344
-     * @return string template for add new cpt form
1345
-     */
1346
-    protected function _create_new_cpt_item()
1347
-    {
1348
-        global $post, $title, $is_IE, $post_type, $post_type_object;
1349
-        $post_type        = $this->_cpt_routes[$this->_req_action];
1350
-        $post_type_object = $this->_cpt_object;
1351
-        $title            = $post_type_object->labels->add_new_item;
1352
-        $editing          = true;
1353
-        wp_enqueue_script('autosave');
1354
-        $post    = $post = get_default_post_to_edit($this->_cpt_routes[$this->_req_action], true);
1355
-        $post_ID = $post->ID;
1356
-        $is_IE   = $is_IE;
1357
-        add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1358
-        //modify the default editor title field with default title.
1359
-        add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1360
-        include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1361
-    }
1362
-
1363
-
1364
-
1365
-    public function add_new_admin_page_global()
1366
-    {
1367
-        $admin_page = ! empty($this->_req_data['post']) ? 'post-php' : 'post-new-php';
1368
-        ?>
1293
+		$messages[$post->post_type] = array(
1294
+			0 => '', //Unused. Messages start at index 1.
1295
+			1 => sprintf(
1296
+				__('%1$s updated. %2$sView %1$s%3$s', 'event_espresso'),
1297
+				$this->_cpt_object->labels->singular_name,
1298
+				'<a href="' . esc_url(get_permalink($id)) . '">',
1299
+				'</a>'
1300
+			),
1301
+			2 => __('Custom field updated'),
1302
+			3 => __('Custom field deleted.'),
1303
+			4 => sprintf(__('%1$s updated.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1304
+			5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'event_espresso'),
1305
+				$this->_cpt_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false))
1306
+				: false,
1307
+			6 => sprintf(
1308
+				__('%1$s published. %2$sView %1$s%3$s', 'event_espresso'),
1309
+				$this->_cpt_object->labels->singular_name,
1310
+				'<a href="' . esc_url(get_permalink($id)) . '">',
1311
+				'</a>'
1312
+			),
1313
+			7 => sprintf(__('%1$s saved.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1314
+			8 => sprintf(
1315
+				__('%1$s submitted. %2$sPreview %1$s%3$s', 'event_espresso'),
1316
+				$this->_cpt_object->labels->singular_name,
1317
+				'<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))) . '">',
1318
+				'</a>'
1319
+			),
1320
+			9 => sprintf(
1321
+				__('%1$s scheduled for: %2$s. %3$s">Preview %1$s%3$s', 'event_espresso'),
1322
+				$this->_cpt_object->labels->singular_name,
1323
+				'<strong>' . date_i18n(__('M j, Y @ G:i'), strtotime($post->post_date)) . '</strong>',
1324
+				'<a target="_blank" href="' . esc_url(get_permalink($id)),
1325
+				'</a>'
1326
+			),
1327
+			10 => sprintf(
1328
+				__('%1$s draft updated. %2$s">Preview page%3$s', 'event_espresso'),
1329
+				$this->_cpt_object->labels->singular_name,
1330
+				'<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))),
1331
+				'</a>'
1332
+			),
1333
+		);
1334
+		return $messages;
1335
+	}
1336
+
1337
+
1338
+
1339
+	/**
1340
+	 * default method for the 'create_new' route for cpt admin pages.
1341
+	 * For reference what to include in here, see wp-admin/post-new.php
1342
+	 *
1343
+	 * @access  protected
1344
+	 * @return string template for add new cpt form
1345
+	 */
1346
+	protected function _create_new_cpt_item()
1347
+	{
1348
+		global $post, $title, $is_IE, $post_type, $post_type_object;
1349
+		$post_type        = $this->_cpt_routes[$this->_req_action];
1350
+		$post_type_object = $this->_cpt_object;
1351
+		$title            = $post_type_object->labels->add_new_item;
1352
+		$editing          = true;
1353
+		wp_enqueue_script('autosave');
1354
+		$post    = $post = get_default_post_to_edit($this->_cpt_routes[$this->_req_action], true);
1355
+		$post_ID = $post->ID;
1356
+		$is_IE   = $is_IE;
1357
+		add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1358
+		//modify the default editor title field with default title.
1359
+		add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1360
+		include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1361
+	}
1362
+
1363
+
1364
+
1365
+	public function add_new_admin_page_global()
1366
+	{
1367
+		$admin_page = ! empty($this->_req_data['post']) ? 'post-php' : 'post-new-php';
1368
+		?>
1369 1369
         <script type="text/javascript">
1370 1370
             adminpage = '<?php echo $admin_page; ?>';
1371 1371
         </script>
1372 1372
         <?php
1373
-    }
1374
-
1375
-
1376
-
1377
-    /**
1378
-     * default method for the 'edit' route for cpt admin pages
1379
-     * For reference on what to put in here, refer to wp-admin/post.php
1380
-     *
1381
-     * @access protected
1382
-     * @return string   template for edit cpt form
1383
-     */
1384
-    protected function _edit_cpt_item()
1385
-    {
1386
-        global $post, $title, $is_IE, $post_type, $post_type_object;
1387
-        $post_id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
1388
-        $post = ! empty($post_id) ? get_post($post_id, OBJECT, 'edit') : null;
1389
-        if (empty ($post)) {
1390
-            wp_die(__('You attempted to edit an item that doesn&#8217;t exist. Perhaps it was deleted?'));
1391
-        }
1392
-        if ( ! empty($_GET['get-post-lock'])) {
1393
-            wp_set_post_lock($post_id);
1394
-            wp_redirect(get_edit_post_link($post_id, 'url'));
1395
-            exit();
1396
-        }
1397
-
1398
-        // template vars
1399
-        $editing          = true;
1400
-        $post_ID          = $post_id;
1401
-        $post_type        = $this->_cpt_routes[$this->_req_action];
1402
-        $post_type_object = $this->_cpt_object;
1403
-
1404
-        if ( ! wp_check_post_lock($post->ID)) {
1405
-            $active_post_lock = wp_set_post_lock($post->ID);
1406
-            //wp_enqueue_script('autosave');
1407
-        }
1408
-        $title = $this->_cpt_object->labels->edit_item;
1409
-        add_action('admin_footer', '_admin_notice_post_locked');
1410
-        if (isset($this->_cpt_routes[$this->_req_data['action']])
1411
-            && ! isset($this->_labels['hide_add_button_on_cpt_route'][$this->_req_data['action']])
1412
-        ) {
1413
-            $create_new_action = apply_filters('FHEE__EE_Admin_Page_CPT___edit_cpt_item__create_new_action',
1414
-                'create_new', $this);
1415
-            $post_new_file = EE_Admin_Page::add_query_args_and_nonce(array(
1416
-                'action' => $create_new_action,
1417
-                'page'   => $this->page_slug,
1418
-            ), 'admin.php');
1419
-        }
1420
-        if (post_type_supports($this->_cpt_routes[$this->_req_action], 'comments')) {
1421
-            wp_enqueue_script('admin-comments');
1422
-            enqueue_comment_hotkeys_js();
1423
-        }
1424
-        add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1425
-        //modify the default editor title field with default title.
1426
-        add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1427
-        include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1428
-    }
1429
-
1430
-
1431
-
1432
-    /**
1433
-     * some getters
1434
-     */
1435
-    /**
1436
-     * This returns the protected _cpt_model_obj property
1437
-     *
1438
-     * @return EE_CPT_Base
1439
-     */
1440
-    public function get_cpt_model_obj()
1441
-    {
1442
-        return $this->_cpt_model_obj;
1443
-    }
1373
+	}
1374
+
1375
+
1376
+
1377
+	/**
1378
+	 * default method for the 'edit' route for cpt admin pages
1379
+	 * For reference on what to put in here, refer to wp-admin/post.php
1380
+	 *
1381
+	 * @access protected
1382
+	 * @return string   template for edit cpt form
1383
+	 */
1384
+	protected function _edit_cpt_item()
1385
+	{
1386
+		global $post, $title, $is_IE, $post_type, $post_type_object;
1387
+		$post_id = isset($this->_req_data['post']) ? $this->_req_data['post'] : null;
1388
+		$post = ! empty($post_id) ? get_post($post_id, OBJECT, 'edit') : null;
1389
+		if (empty ($post)) {
1390
+			wp_die(__('You attempted to edit an item that doesn&#8217;t exist. Perhaps it was deleted?'));
1391
+		}
1392
+		if ( ! empty($_GET['get-post-lock'])) {
1393
+			wp_set_post_lock($post_id);
1394
+			wp_redirect(get_edit_post_link($post_id, 'url'));
1395
+			exit();
1396
+		}
1397
+
1398
+		// template vars
1399
+		$editing          = true;
1400
+		$post_ID          = $post_id;
1401
+		$post_type        = $this->_cpt_routes[$this->_req_action];
1402
+		$post_type_object = $this->_cpt_object;
1403
+
1404
+		if ( ! wp_check_post_lock($post->ID)) {
1405
+			$active_post_lock = wp_set_post_lock($post->ID);
1406
+			//wp_enqueue_script('autosave');
1407
+		}
1408
+		$title = $this->_cpt_object->labels->edit_item;
1409
+		add_action('admin_footer', '_admin_notice_post_locked');
1410
+		if (isset($this->_cpt_routes[$this->_req_data['action']])
1411
+			&& ! isset($this->_labels['hide_add_button_on_cpt_route'][$this->_req_data['action']])
1412
+		) {
1413
+			$create_new_action = apply_filters('FHEE__EE_Admin_Page_CPT___edit_cpt_item__create_new_action',
1414
+				'create_new', $this);
1415
+			$post_new_file = EE_Admin_Page::add_query_args_and_nonce(array(
1416
+				'action' => $create_new_action,
1417
+				'page'   => $this->page_slug,
1418
+			), 'admin.php');
1419
+		}
1420
+		if (post_type_supports($this->_cpt_routes[$this->_req_action], 'comments')) {
1421
+			wp_enqueue_script('admin-comments');
1422
+			enqueue_comment_hotkeys_js();
1423
+		}
1424
+		add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1425
+		//modify the default editor title field with default title.
1426
+		add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1427
+		include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1428
+	}
1429
+
1430
+
1431
+
1432
+	/**
1433
+	 * some getters
1434
+	 */
1435
+	/**
1436
+	 * This returns the protected _cpt_model_obj property
1437
+	 *
1438
+	 * @return EE_CPT_Base
1439
+	 */
1440
+	public function get_cpt_model_obj()
1441
+	{
1442
+		return $this->_cpt_model_obj;
1443
+	}
1444 1444
 
1445 1445
 }
Please login to merge, or discard this patch.
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      */
236 236
     protected function _register_autosave_containers($ids)
237 237
     {
238
-        $this->_autosave_containers = array_merge($this->_autosave_fields, (array)$ids);
238
+        $this->_autosave_containers = array_merge($this->_autosave_fields, (array) $ids);
239 239
     }
240 240
 
241 241
 
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
         //filter _autosave_containers
280 280
         $containers = apply_filters('FHEE__EE_Admin_Page_CPT___load_autosave_scripts_styles__containers',
281 281
             $this->_autosave_containers, $this);
282
-        $containers = apply_filters('FHEE__EE_Admin_Page_CPT__' . get_class($this) . '___load_autosave_scripts_styles__containers',
282
+        $containers = apply_filters('FHEE__EE_Admin_Page_CPT__'.get_class($this).'___load_autosave_scripts_styles__containers',
283 283
             $containers, $this);
284 284
 
285 285
         wp_localize_script('event_editor_js', 'EE_AUTOSAVE_IDS',
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
         parent::_load_page_dependencies();
370 370
         //notice we are ALSO going to load the pagenow hook set for this route (see _before_page_setup for the reset of the pagenow global ). This is for any plugins that are doing things properly and hooking into the load page hook for core wp cpt routes.
371 371
         global $pagenow;
372
-        do_action('load-' . $pagenow);
372
+        do_action('load-'.$pagenow);
373 373
         $this->modify_current_screen();
374 374
         add_action('admin_enqueue_scripts', array($this, 'setup_autosave_hooks'), 30);
375 375
         //we route REALLY early.
@@ -400,8 +400,8 @@  discard block
 block discarded – undo
400 400
                 'admin.php?page=espresso_registrations&action=contact_list',
401 401
             ),
402 402
             1 => array(
403
-                'edit.php?post_type=' . $this->_cpt_object->name,
404
-                'admin.php?page=' . $this->_cpt_object->name,
403
+                'edit.php?post_type='.$this->_cpt_object->name,
404
+                'admin.php?page='.$this->_cpt_object->name,
405 405
             ),
406 406
         );
407 407
         foreach ($routes_to_match as $route_matches) {
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
         $cpt_has_support = ! empty($cpt_args['page_templates']);
430 430
 
431 431
         //if the installed version of WP is > 4.7 we do some additional checks.
432
-        if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
432
+        if (EE_Recommended_Versions::check_wp_version('4.7', '>=')) {
433 433
             $post_templates = wp_get_theme()->get_post_templates();
434 434
             //if there are $post_templates for this cpt, then we return false for this method because
435 435
             //that means we aren't going to load our page template manager and leave that up to the native
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
         global $post;
453 453
         $template = '';
454 454
 
455
-        if (EE_Recommended_Versions::check_wp_version('4.7','>=')) {
455
+        if (EE_Recommended_Versions::check_wp_version('4.7', '>=')) {
456 456
             $page_template_count = count(get_page_templates());
457 457
         } else {
458 458
             $page_template_count = count(get_page_templates($post));
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
         $post = get_post($id);
490 490
         if ('publish' != get_post_status($post)) {
491 491
             //include shims for the `get_preview_post_link` function
492
-            require_once( EE_CORE . 'wordpress-shims.php' );
492
+            require_once(EE_CORE.'wordpress-shims.php');
493 493
             $return .= '<span_id="view-post-btn"><a target="_blank" href="'
494 494
                        . get_preview_post_link($id)
495 495
                        . '" class="button button-small">'
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
             $template_args['statuses']         = $statuses;
528 528
         }
529 529
 
530
-        $template = EE_ADMIN_TEMPLATE . 'status_dropdown.template.php';
530
+        $template = EE_ADMIN_TEMPLATE.'status_dropdown.template.php';
531 531
         EEH_Template::display_template($template, $template_args);
532 532
     }
533 533
 
@@ -572,13 +572,13 @@  discard block
 block discarded – undo
572 572
             define('DOING_AUTOSAVE', true);
573 573
         }
574 574
         //if we made it here then the nonce checked out.  Let's run our methods and actions
575
-        if (method_exists($this, '_ee_autosave_' . $this->_current_view)) {
576
-            call_user_func(array($this, '_ee_autosave_' . $this->_current_view));
575
+        if (method_exists($this, '_ee_autosave_'.$this->_current_view)) {
576
+            call_user_func(array($this, '_ee_autosave_'.$this->_current_view));
577 577
         } else {
578 578
             $this->_template_args['success'] = true;
579 579
         }
580 580
         do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__global_after', $this);
581
-        do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__after_' . get_class($this), $this);
581
+        do_action('AHEE__EE_Admin_Page_CPT__do_extra_autosave_stuff__after_'.get_class($this), $this);
582 582
         //now let's return json
583 583
         $this->_return_json();
584 584
     }
@@ -971,7 +971,7 @@  discard block
 block discarded – undo
971 971
         //global action
972 972
         do_action('AHEE_EE_Admin_Page_CPT__restore_revision', $post_id, $revision_id);
973 973
         //class specific action so you can limit hooking into a specific page.
974
-        do_action('AHEE_EE_Admin_Page_CPT_' . get_class($this) . '__restore_revision', $post_id, $revision_id);
974
+        do_action('AHEE_EE_Admin_Page_CPT_'.get_class($this).'__restore_revision', $post_id, $revision_id);
975 975
     }
976 976
 
977 977
 
@@ -1049,7 +1049,7 @@  discard block
 block discarded – undo
1049 1049
         if ( ! empty($id) && '' != get_option('permalink_structure')) {
1050 1050
             $post = get_post($id);
1051 1051
             if (isset($post->post_type) && $this->page_slug == $post->post_type) {
1052
-                $shortlink = home_url('?p=' . $post->ID);
1052
+                $shortlink = home_url('?p='.$post->ID);
1053 1053
             }
1054 1054
         }
1055 1055
         return $shortlink;
@@ -1084,11 +1084,11 @@  discard block
 block discarded – undo
1084 1084
      */
1085 1085
     public function cpt_post_form_hidden_input()
1086 1086
     {
1087
-        echo '<input type="hidden" name="ee_cpt_item_redirect_url" value="' . $this->_admin_base_url . '" />';
1087
+        echo '<input type="hidden" name="ee_cpt_item_redirect_url" value="'.$this->_admin_base_url.'" />';
1088 1088
         //we're also going to add the route value and the current page so we can direct autosave parsing correctly
1089 1089
         echo '<div id="ee-cpt-hidden-inputs">';
1090
-        echo '<input type="hidden" id="current_route" name="current_route" value="' . $this->_current_view . '" />';
1091
-        echo '<input type="hidden" id="current_page" name="current_page" value="' . $this->page_slug . '" />';
1090
+        echo '<input type="hidden" id="current_route" name="current_route" value="'.$this->_current_view.'" />';
1091
+        echo '<input type="hidden" id="current_page" name="current_page" value="'.$this->page_slug.'" />';
1092 1092
         echo '</div>';
1093 1093
     }
1094 1094
 
@@ -1295,39 +1295,39 @@  discard block
 block discarded – undo
1295 1295
             1 => sprintf(
1296 1296
                 __('%1$s updated. %2$sView %1$s%3$s', 'event_espresso'),
1297 1297
                 $this->_cpt_object->labels->singular_name,
1298
-                '<a href="' . esc_url(get_permalink($id)) . '">',
1298
+                '<a href="'.esc_url(get_permalink($id)).'">',
1299 1299
                 '</a>'
1300 1300
             ),
1301 1301
             2 => __('Custom field updated'),
1302 1302
             3 => __('Custom field deleted.'),
1303 1303
             4 => sprintf(__('%1$s updated.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1304 1304
             5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'event_espresso'),
1305
-                $this->_cpt_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false))
1305
+                $this->_cpt_object->labels->singular_name, wp_post_revision_title((int) $_GET['revision'], false))
1306 1306
                 : false,
1307 1307
             6 => sprintf(
1308 1308
                 __('%1$s published. %2$sView %1$s%3$s', 'event_espresso'),
1309 1309
                 $this->_cpt_object->labels->singular_name,
1310
-                '<a href="' . esc_url(get_permalink($id)) . '">',
1310
+                '<a href="'.esc_url(get_permalink($id)).'">',
1311 1311
                 '</a>'
1312 1312
             ),
1313 1313
             7 => sprintf(__('%1$s saved.', 'event_espresso'), $this->_cpt_object->labels->singular_name),
1314 1314
             8 => sprintf(
1315 1315
                 __('%1$s submitted. %2$sPreview %1$s%3$s', 'event_espresso'),
1316 1316
                 $this->_cpt_object->labels->singular_name,
1317
-                '<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))) . '">',
1317
+                '<a target="_blank" href="'.esc_url(add_query_arg('preview', 'true', get_permalink($id))).'">',
1318 1318
                 '</a>'
1319 1319
             ),
1320 1320
             9 => sprintf(
1321 1321
                 __('%1$s scheduled for: %2$s. %3$s">Preview %1$s%3$s', 'event_espresso'),
1322 1322
                 $this->_cpt_object->labels->singular_name,
1323
-                '<strong>' . date_i18n(__('M j, Y @ G:i'), strtotime($post->post_date)) . '</strong>',
1324
-                '<a target="_blank" href="' . esc_url(get_permalink($id)),
1323
+                '<strong>'.date_i18n(__('M j, Y @ G:i'), strtotime($post->post_date)).'</strong>',
1324
+                '<a target="_blank" href="'.esc_url(get_permalink($id)),
1325 1325
                 '</a>'
1326 1326
             ),
1327 1327
             10 => sprintf(
1328 1328
                 __('%1$s draft updated. %2$s">Preview page%3$s', 'event_espresso'),
1329 1329
                 $this->_cpt_object->labels->singular_name,
1330
-                '<a target="_blank" href="' . esc_url(add_query_arg('preview', 'true', get_permalink($id))),
1330
+                '<a target="_blank" href="'.esc_url(add_query_arg('preview', 'true', get_permalink($id))),
1331 1331
                 '</a>'
1332 1332
             ),
1333 1333
         );
@@ -1357,7 +1357,7 @@  discard block
 block discarded – undo
1357 1357
         add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1358 1358
         //modify the default editor title field with default title.
1359 1359
         add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1360
-        include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1360
+        include_once WP_ADMIN_PATH.'edit-form-advanced.php';
1361 1361
     }
1362 1362
 
1363 1363
 
@@ -1424,7 +1424,7 @@  discard block
 block discarded – undo
1424 1424
         add_action('admin_print_styles', array($this, 'add_new_admin_page_global'));
1425 1425
         //modify the default editor title field with default title.
1426 1426
         add_filter('enter_title_here', array($this, 'add_custom_editor_default_title'), 10);
1427
-        include_once WP_ADMIN_PATH . 'edit-form-advanced.php';
1427
+        include_once WP_ADMIN_PATH.'edit-form-advanced.php';
1428 1428
     }
1429 1429
 
1430 1430
 
Please login to merge, or discard this patch.
core/admin/EE_Admin_Page.core.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
      * All this method does is verify the incoming request and make sure that routes exist for it.  We do this early so we know if we need to drop out.
704 704
      *
705 705
      * @access protected
706
-     * @return void
706
+     * @return false|null
707 707
      */
708 708
     protected function _verify_routes()
709 709
     {
@@ -757,7 +757,7 @@  discard block
 block discarded – undo
757 757
      * this method simply verifies a given route and makes sure its an actual route available for the loaded page
758 758
      *
759 759
      * @param  string $route the route name we're verifying
760
-     * @return mixed  (bool|Exception)      we'll throw an exception if this isn't a valid route.
760
+     * @return boolean  (bool|Exception)      we'll throw an exception if this isn't a valid route.
761 761
      */
762 762
     protected function _verify_route($route)
763 763
     {
@@ -3247,7 +3247,7 @@  discard block
 block discarded – undo
3247 3247
 
3248 3248
 
3249 3249
     /**
3250
-     * @return mixed
3250
+     * @return string[]
3251 3251
      */
3252 3252
     public function default_espresso_metaboxes()
3253 3253
     {
@@ -3267,7 +3267,7 @@  discard block
 block discarded – undo
3267 3267
 
3268 3268
 
3269 3269
     /**
3270
-     * @return mixed
3270
+     * @return string
3271 3271
      */
3272 3272
     public function wp_page_slug()
3273 3273
     {
Please login to merge, or discard this patch.
Spacing   +145 added lines, -145 removed lines patch added patch discarded remove patch
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
         $this->_current_page = ! empty($_GET['page']) ? sanitize_key($_GET['page']) : '';
475 475
         $this->page_folder = strtolower(str_replace('_Admin_Page', '', str_replace('Extend_', '', get_class($this))));
476 476
         global $ee_menu_slugs;
477
-        $ee_menu_slugs = (array)$ee_menu_slugs;
477
+        $ee_menu_slugs = (array) $ee_menu_slugs;
478 478
         if (( ! $this->_current_page || ! isset($ee_menu_slugs[$this->_current_page])) && ! defined('DOING_AJAX')) {
479 479
             return;
480 480
         }
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
         //however if we are doing_ajax and we've got a 'route' set then that's what the req_action will be
490 490
         $this->_req_action = defined('DOING_AJAX') && isset($this->_req_data['route']) ? $this->_req_data['route'] : $this->_req_action;
491 491
         $this->_current_view = $this->_req_action;
492
-        $this->_req_nonce = $this->_req_action . '_nonce';
492
+        $this->_req_nonce = $this->_req_action.'_nonce';
493 493
         $this->_define_page_props();
494 494
         $this->_current_page_view_url = add_query_arg(array('page' => $this->_current_page, 'action' => $this->_current_view), $this->_admin_base_url);
495 495
         //default things
@@ -510,11 +510,11 @@  discard block
 block discarded – undo
510 510
             $this->_extend_page_config_for_cpt();
511 511
         }
512 512
         //filter routes and page_config so addons can add their stuff. Filtering done per class
513
-        $this->_page_routes = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_routes', $this->_page_routes, $this);
514
-        $this->_page_config = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_config', $this->_page_config, $this);
513
+        $this->_page_routes = apply_filters('FHEE__'.get_class($this).'__page_setup__page_routes', $this->_page_routes, $this);
514
+        $this->_page_config = apply_filters('FHEE__'.get_class($this).'__page_setup__page_config', $this->_page_config, $this);
515 515
         //if AHEE__EE_Admin_Page__route_admin_request_$this->_current_view method is present then we call it hooked into the AHEE__EE_Admin_Page__route_admin_request action
516
-        if (method_exists($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view)) {
517
-            add_action('AHEE__EE_Admin_Page__route_admin_request', array($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view), 10, 2);
516
+        if (method_exists($this, 'AHEE__EE_Admin_Page__route_admin_request_'.$this->_current_view)) {
517
+            add_action('AHEE__EE_Admin_Page__route_admin_request', array($this, 'AHEE__EE_Admin_Page__route_admin_request_'.$this->_current_view), 10, 2);
518 518
         }
519 519
         //next route only if routing enabled
520 520
         if ($this->_routing && ! defined('DOING_AJAX')) {
@@ -524,8 +524,8 @@  discard block
 block discarded – undo
524 524
             if ($this->_is_UI_request) {
525 525
                 //admin_init stuff - global, all views for this page class, specific view
526 526
                 add_action('admin_init', array($this, 'admin_init'), 10);
527
-                if (method_exists($this, 'admin_init_' . $this->_current_view)) {
528
-                    add_action('admin_init', array($this, 'admin_init_' . $this->_current_view), 15);
527
+                if (method_exists($this, 'admin_init_'.$this->_current_view)) {
528
+                    add_action('admin_init', array($this, 'admin_init_'.$this->_current_view), 15);
529 529
                 }
530 530
             } else {
531 531
                 //hijack regular WP loading and route admin request immediately
@@ -545,17 +545,17 @@  discard block
 block discarded – undo
545 545
      */
546 546
     private function _do_other_page_hooks()
547 547
     {
548
-        $registered_pages = apply_filters('FHEE_do_other_page_hooks_' . $this->page_slug, array());
548
+        $registered_pages = apply_filters('FHEE_do_other_page_hooks_'.$this->page_slug, array());
549 549
         foreach ($registered_pages as $page) {
550 550
             //now let's setup the file name and class that should be present
551 551
             $classname = str_replace('.class.php', '', $page);
552 552
             //autoloaders should take care of loading file
553 553
             if ( ! class_exists($classname)) {
554
-                $error_msg[] = sprintf( esc_html__('Something went wrong with loading the %s admin hooks page.', 'event_espresso'), $page);
554
+                $error_msg[] = sprintf(esc_html__('Something went wrong with loading the %s admin hooks page.', 'event_espresso'), $page);
555 555
                 $error_msg[] = $error_msg[0]
556 556
                                . "\r\n"
557
-                               . sprintf( esc_html__('There is no class in place for the %1$s admin hooks page.%2$sMake sure you have %3$s defined. If this is a non-EE-core admin page then you also must have an autoloader in place for your class',
558
-                                'event_espresso'), $page, '<br />', '<strong>' . $classname . '</strong>');
557
+                               . sprintf(esc_html__('There is no class in place for the %1$s admin hooks page.%2$sMake sure you have %3$s defined. If this is a non-EE-core admin page then you also must have an autoloader in place for your class',
558
+                                'event_espresso'), $page, '<br />', '<strong>'.$classname.'</strong>');
559 559
                 throw new EE_Error(implode('||', $error_msg));
560 560
             }
561 561
             $a = new ReflectionClass($classname);
@@ -591,13 +591,13 @@  discard block
 block discarded – undo
591 591
         //load admin_notices - global, page class, and view specific
592 592
         add_action('admin_notices', array($this, 'admin_notices_global'), 5);
593 593
         add_action('admin_notices', array($this, 'admin_notices'), 10);
594
-        if (method_exists($this, 'admin_notices_' . $this->_current_view)) {
595
-            add_action('admin_notices', array($this, 'admin_notices_' . $this->_current_view), 15);
594
+        if (method_exists($this, 'admin_notices_'.$this->_current_view)) {
595
+            add_action('admin_notices', array($this, 'admin_notices_'.$this->_current_view), 15);
596 596
         }
597 597
         //load network admin_notices - global, page class, and view specific
598 598
         add_action('network_admin_notices', array($this, 'network_admin_notices_global'), 5);
599
-        if (method_exists($this, 'network_admin_notices_' . $this->_current_view)) {
600
-            add_action('network_admin_notices', array($this, 'network_admin_notices_' . $this->_current_view));
599
+        if (method_exists($this, 'network_admin_notices_'.$this->_current_view)) {
600
+            add_action('network_admin_notices', array($this, 'network_admin_notices_'.$this->_current_view));
601 601
         }
602 602
         //this will save any per_page screen options if they are present
603 603
         $this->_set_per_page_screen_options();
@@ -609,8 +609,8 @@  discard block
 block discarded – undo
609 609
         //add screen options - global, page child class, and view specific
610 610
         $this->_add_global_screen_options();
611 611
         $this->_add_screen_options();
612
-        if (method_exists($this, '_add_screen_options_' . $this->_current_view)) {
613
-            call_user_func(array($this, '_add_screen_options_' . $this->_current_view));
612
+        if (method_exists($this, '_add_screen_options_'.$this->_current_view)) {
613
+            call_user_func(array($this, '_add_screen_options_'.$this->_current_view));
614 614
         }
615 615
         //add help tab(s) and tours- set via page_config and qtips.
616 616
         $this->_add_help_tour();
@@ -619,31 +619,31 @@  discard block
 block discarded – undo
619 619
         //add feature_pointers - global, page child class, and view specific
620 620
         $this->_add_feature_pointers();
621 621
         $this->_add_global_feature_pointers();
622
-        if (method_exists($this, '_add_feature_pointer_' . $this->_current_view)) {
623
-            call_user_func(array($this, '_add_feature_pointer_' . $this->_current_view));
622
+        if (method_exists($this, '_add_feature_pointer_'.$this->_current_view)) {
623
+            call_user_func(array($this, '_add_feature_pointer_'.$this->_current_view));
624 624
         }
625 625
         //enqueue scripts/styles - global, page class, and view specific
626 626
         add_action('admin_enqueue_scripts', array($this, 'load_global_scripts_styles'), 5);
627 627
         add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles'), 10);
628
-        if (method_exists($this, 'load_scripts_styles_' . $this->_current_view)) {
629
-            add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles_' . $this->_current_view), 15);
628
+        if (method_exists($this, 'load_scripts_styles_'.$this->_current_view)) {
629
+            add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles_'.$this->_current_view), 15);
630 630
         }
631 631
         add_action('admin_enqueue_scripts', array($this, 'admin_footer_scripts_eei18n_js_strings'), 100);
632 632
         //admin_print_footer_scripts - global, page child class, and view specific.  NOTE, despite the name, whenever possible, scripts should NOT be loaded using this.  In most cases that's doing_it_wrong().  But adding hidden container elements etc. is a good use case. Notice the late priority we're giving these
633 633
         add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_global'), 99);
634 634
         add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts'), 100);
635
-        if (method_exists($this, 'admin_footer_scripts_' . $this->_current_view)) {
636
-            add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_' . $this->_current_view), 101);
635
+        if (method_exists($this, 'admin_footer_scripts_'.$this->_current_view)) {
636
+            add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_'.$this->_current_view), 101);
637 637
         }
638 638
         //admin footer scripts
639 639
         add_action('admin_footer', array($this, 'admin_footer_global'), 99);
640 640
         add_action('admin_footer', array($this, 'admin_footer'), 100);
641
-        if (method_exists($this, 'admin_footer_' . $this->_current_view)) {
642
-            add_action('admin_footer', array($this, 'admin_footer_' . $this->_current_view), 101);
641
+        if (method_exists($this, 'admin_footer_'.$this->_current_view)) {
642
+            add_action('admin_footer', array($this, 'admin_footer_'.$this->_current_view), 101);
643 643
         }
644 644
         do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load', $this->page_slug);
645 645
         //targeted hook
646
-        do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load__' . $this->page_slug . '__' . $this->_req_action);
646
+        do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load__'.$this->page_slug.'__'.$this->_req_action);
647 647
     }
648 648
 
649 649
 
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
             // user error msg
720 720
             $error_msg = sprintf(__('No page routes have been set for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
721 721
             // developer error msg
722
-            $error_msg .= '||' . $error_msg . __(' Make sure the "set_page_routes()" method exists, and is setting the "_page_routes" array properly.', 'event_espresso');
722
+            $error_msg .= '||'.$error_msg.__(' Make sure the "set_page_routes()" method exists, and is setting the "_page_routes" array properly.', 'event_espresso');
723 723
             throw new EE_Error($error_msg);
724 724
         }
725 725
         // and that the requested page route exists
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
             // user error msg
731 731
             $error_msg = sprintf(__('The requested page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
732 732
             // developer error msg
733
-            $error_msg .= '||' . $error_msg . sprintf(__(' Create a key in the "_page_routes" array named "%s" and set its value to the appropriate method.', 'event_espresso'), $this->_req_action);
733
+            $error_msg .= '||'.$error_msg.sprintf(__(' Create a key in the "_page_routes" array named "%s" and set its value to the appropriate method.', 'event_espresso'), $this->_req_action);
734 734
             throw new EE_Error($error_msg);
735 735
         }
736 736
         // and that a default route exists
@@ -738,7 +738,7 @@  discard block
 block discarded – undo
738 738
             // user error msg
739 739
             $error_msg = sprintf(__('A default page route has not been set for the % admin page.', 'event_espresso'), $this->_admin_page_title);
740 740
             // developer error msg
741
-            $error_msg .= '||' . $error_msg . __(' Create a key in the "_page_routes" array named "default" and set its value to your default page method.', 'event_espresso');
741
+            $error_msg .= '||'.$error_msg.__(' Create a key in the "_page_routes" array named "default" and set its value to your default page method.', 'event_espresso');
742 742
             throw new EE_Error($error_msg);
743 743
         }
744 744
         //first lets' catch if the UI request has EVER been set.
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
             // user error msg
768 768
             $error_msg = sprintf(__('The given page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
769 769
             // developer error msg
770
-            $error_msg .= '||' . $error_msg . sprintf(__(' Check the route you are using in your method (%s) and make sure it matches a route set in your "_page_routes" array property', 'event_espresso'), $route);
770
+            $error_msg .= '||'.$error_msg.sprintf(__(' Check the route you are using in your method (%s) and make sure it matches a route set in your "_page_routes" array property', 'event_espresso'), $route);
771 771
             throw new EE_Error($error_msg);
772 772
         }
773 773
     }
@@ -789,7 +789,7 @@  discard block
 block discarded – undo
789 789
             // these are not the droids you are looking for !!!
790 790
             $msg = sprintf(__('%sNonce Fail.%s', 'event_espresso'), '<a href="http://www.youtube.com/watch?v=56_S0WeTkzs">', '</a>');
791 791
             if (WP_DEBUG) {
792
-                $msg .= "\n  " . sprintf(__('In order to dynamically generate nonces for your actions, use the %s::add_query_args_and_nonce() method. May the Nonce be with you!', 'event_espresso'), __CLASS__);
792
+                $msg .= "\n  ".sprintf(__('In order to dynamically generate nonces for your actions, use the %s::add_query_args_and_nonce() method. May the Nonce be with you!', 'event_espresso'), __CLASS__);
793 793
             }
794 794
             if ( ! defined('DOING_AJAX')) {
795 795
                 wp_die($msg);
@@ -967,7 +967,7 @@  discard block
 block discarded – undo
967 967
                 if (strpos($key, 'nonce') !== false) {
968 968
                     continue;
969 969
                 }
970
-                $args['wp_referer[' . $key . ']'] = $value;
970
+                $args['wp_referer['.$key.']'] = $value;
971 971
             }
972 972
         }
973 973
         return EEH_URL::add_query_args_and_nonce($args, $url, $exclude_nonce);
@@ -1013,7 +1013,7 @@  discard block
 block discarded – undo
1013 1013
                     if ($tour instanceof EE_Help_Tour_final_stop) {
1014 1014
                         continue;
1015 1015
                     }
1016
-                    $tb[] = '<button id="trigger-tour-' . $tour->get_slug() . '" class="button-primary trigger-ee-help-tour">' . $tour->get_label() . '</button>';
1016
+                    $tb[] = '<button id="trigger-tour-'.$tour->get_slug().'" class="button-primary trigger-ee-help-tour">'.$tour->get_label().'</button>';
1017 1017
                 }
1018 1018
                 $tour_buttons .= implode('<br />', $tb);
1019 1019
                 $tour_buttons .= '</div></div>';
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
                     throw new EE_Error(sprintf(__('The _page_config array has a callback set for the "help_sidebar" option.  However the callback given (%s) is not a valid callback.  Doublecheck the spelling and make sure this method exists for the class %s',
1026 1026
                             'event_espresso'), $config['help_sidebar'], get_class($this)));
1027 1027
                 }
1028
-                $content = apply_filters('FHEE__' . get_class($this) . '__add_help_tabs__help_sidebar', call_user_func(array($this, $config['help_sidebar'])));
1028
+                $content = apply_filters('FHEE__'.get_class($this).'__add_help_tabs__help_sidebar', call_user_func(array($this, $config['help_sidebar'])));
1029 1029
                 $content .= $tour_buttons; //add help tour buttons.
1030 1030
                 //do we have any help tours setup?  Cause if we do we want to add the buttons
1031 1031
                 $this->_current_screen->set_help_sidebar($content);
@@ -1038,13 +1038,13 @@  discard block
 block discarded – undo
1038 1038
             if ( ! isset($config['help_tabs']) && ! empty($tour_buttons)) {
1039 1039
                 $_ht['id'] = $this->page_slug;
1040 1040
                 $_ht['title'] = __('Help Tours', 'event_espresso');
1041
-                $_ht['content'] = '<p>' . __('The buttons to the right allow you to start/restart any help tours available for this page', 'event_espresso') . '</p>';
1041
+                $_ht['content'] = '<p>'.__('The buttons to the right allow you to start/restart any help tours available for this page', 'event_espresso').'</p>';
1042 1042
                 $this->_current_screen->add_help_tab($_ht);
1043 1043
             }/**/
1044 1044
             if ( ! isset($config['help_tabs'])) {
1045 1045
                 return;
1046 1046
             } //no help tabs for this route
1047
-            foreach ((array)$config['help_tabs'] as $tab_id => $cfg) {
1047
+            foreach ((array) $config['help_tabs'] as $tab_id => $cfg) {
1048 1048
                 //we're here so there ARE help tabs!
1049 1049
                 //make sure we've got what we need
1050 1050
                 if ( ! isset($cfg['title'])) {
@@ -1059,9 +1059,9 @@  discard block
 block discarded – undo
1059 1059
                     $content = ! empty($cfg['content']) ? $cfg['content'] : null;
1060 1060
                     //second priority goes to filename
1061 1061
                 } else if ( ! empty($cfg['filename'])) {
1062
-                    $file_path = $this->_get_dir() . '/help_tabs/' . $cfg['filename'] . '.help_tab.php';
1062
+                    $file_path = $this->_get_dir().'/help_tabs/'.$cfg['filename'].'.help_tab.php';
1063 1063
                     //it's possible that the file is located on decaf route (and above sets up for caf route, if this is the case then lets check decaf route too)
1064
-                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tabs/' . $cfg['filename'] . '.help_tab.php' : $file_path;
1064
+                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES.basename($this->_get_dir()).'/help_tabs/'.$cfg['filename'].'.help_tab.php' : $file_path;
1065 1065
                     //if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1066 1066
                     if ( ! is_readable($file_path) && ! isset($cfg['callback'])) {
1067 1067
                         EE_Error::add_error(sprintf(__('The filename given for the help tab %s is not a valid file and there is no other configuration for the tab content.  Please check that the string you set for the help tab on this route (%s) is the correct spelling.  The file should be in %s',
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
                     return;
1081 1081
                 }
1082 1082
                 //setup config array for help tab method
1083
-                $id = $this->page_slug . '-' . $this->_req_action . '-' . $tab_id;
1083
+                $id = $this->page_slug.'-'.$this->_req_action.'-'.$tab_id;
1084 1084
                 $_ht = array(
1085 1085
                         'id'       => $id,
1086 1086
                         'title'    => $cfg['title'],
@@ -1118,9 +1118,9 @@  discard block
 block discarded – undo
1118 1118
             }
1119 1119
             if (isset($config['help_tour'])) {
1120 1120
                 foreach ($config['help_tour'] as $tour) {
1121
-                    $file_path = $this->_get_dir() . '/help_tours/' . $tour . '.class.php';
1121
+                    $file_path = $this->_get_dir().'/help_tours/'.$tour.'.class.php';
1122 1122
                     //let's see if we can get that file... if not its possible this is a decaf route not set in caffienated so lets try and get the caffeinated equivalent
1123
-                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tours/' . $tour . '.class.php' : $file_path;
1123
+                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES.basename($this->_get_dir()).'/help_tours/'.$tour.'.class.php' : $file_path;
1124 1124
                     //if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1125 1125
                     if ( ! is_readable($file_path)) {
1126 1126
                         EE_Error::add_error(sprintf(__('The file path given for the help tour (%s) is not a valid path.  Please check that the string you set for the help tour on this route (%s) is the correct spelling', 'event_espresso'),
@@ -1130,7 +1130,7 @@  discard block
 block discarded – undo
1130 1130
                     require_once $file_path;
1131 1131
                     if ( ! class_exists($tour)) {
1132 1132
                         $error_msg[] = sprintf(__('Something went wrong with loading the %s Help Tour Class.', 'event_espresso'), $tour);
1133
-                        $error_msg[] = $error_msg[0] . "\r\n" . sprintf(__('There is no class in place for the %s help tour.%s Make sure you have <strong>%s</strong> defined in the "help_tour" array for the %s route of the % admin page.',
1133
+                        $error_msg[] = $error_msg[0]."\r\n".sprintf(__('There is no class in place for the %s help tour.%s Make sure you have <strong>%s</strong> defined in the "help_tour" array for the %s route of the % admin page.',
1134 1134
                                         'event_espresso'), $tour, '<br />', $tour, $this->_req_action, get_class($this));
1135 1135
                         throw new EE_Error(implode('||', $error_msg));
1136 1136
                     }
@@ -1162,11 +1162,11 @@  discard block
 block discarded – undo
1162 1162
     protected function _add_qtips()
1163 1163
     {
1164 1164
         if (isset($this->_route_config['qtips'])) {
1165
-            $qtips = (array)$this->_route_config['qtips'];
1165
+            $qtips = (array) $this->_route_config['qtips'];
1166 1166
             //load qtip loader
1167 1167
             $path = array(
1168
-                    $this->_get_dir() . '/qtips/',
1169
-                    EE_ADMIN_PAGES . basename($this->_get_dir()) . '/qtips/',
1168
+                    $this->_get_dir().'/qtips/',
1169
+                    EE_ADMIN_PAGES.basename($this->_get_dir()).'/qtips/',
1170 1170
             );
1171 1171
             EEH_Qtip_Loader::instance()->register($qtips, $path);
1172 1172
         }
@@ -1196,11 +1196,11 @@  discard block
 block discarded – undo
1196 1196
             if ( ! $this->check_user_access($slug, true)) {
1197 1197
                 continue;
1198 1198
             } //no nav tab becasue current user does not have access.
1199
-            $css_class = isset($config['css_class']) ? $config['css_class'] . ' ' : '';
1199
+            $css_class = isset($config['css_class']) ? $config['css_class'].' ' : '';
1200 1200
             $this->_nav_tabs[$slug] = array(
1201 1201
                     'url'       => isset($config['nav']['url']) ? $config['nav']['url'] : self::add_query_args_and_nonce(array('action' => $slug), $this->_admin_base_url),
1202 1202
                     'link_text' => isset($config['nav']['label']) ? $config['nav']['label'] : ucwords(str_replace('_', ' ', $slug)),
1203
-                    'css_class' => $this->_req_action == $slug ? $css_class . 'nav-tab-active' : $css_class,
1203
+                    'css_class' => $this->_req_action == $slug ? $css_class.'nav-tab-active' : $css_class,
1204 1204
                     'order'     => isset($config['nav']['order']) ? $config['nav']['order'] : $i,
1205 1205
             );
1206 1206
             $i++;
@@ -1263,11 +1263,11 @@  discard block
 block discarded – undo
1263 1263
             $capability = empty($capability) ? 'manage_options' : $capability;
1264 1264
         }
1265 1265
         $id = is_array($this->_route) && ! empty($this->_route['obj_id']) ? $this->_route['obj_id'] : 0;
1266
-        if (( ! function_exists('is_admin') || ! EE_Registry::instance()->CAP->current_user_can($capability, $this->page_slug . '_' . $route_to_check, $id)) && ! defined('DOING_AJAX')) {
1266
+        if (( ! function_exists('is_admin') || ! EE_Registry::instance()->CAP->current_user_can($capability, $this->page_slug.'_'.$route_to_check, $id)) && ! defined('DOING_AJAX')) {
1267 1267
             if ($verify_only) {
1268 1268
                 return false;
1269 1269
             } else {
1270
-                if ( is_user_logged_in() ) {
1270
+                if (is_user_logged_in()) {
1271 1271
                     wp_die(__('You do not have access to this route.', 'event_espresso'));
1272 1272
                 } else {
1273 1273
                     return false;
@@ -1359,7 +1359,7 @@  discard block
 block discarded – undo
1359 1359
     public function admin_footer_global()
1360 1360
     {
1361 1361
         //dialog container for dialog helper
1362
-        $d_cont = '<div class="ee-admin-dialog-container auto-hide hidden">' . "\n";
1362
+        $d_cont = '<div class="ee-admin-dialog-container auto-hide hidden">'."\n";
1363 1363
         $d_cont .= '<div class="ee-notices"></div>';
1364 1364
         $d_cont .= '<div class="ee-admin-dialog-container-inner-content"></div>';
1365 1365
         $d_cont .= '</div>';
@@ -1369,7 +1369,7 @@  discard block
 block discarded – undo
1369 1369
             echo implode('<br />', $this->_help_tour[$this->_req_action]);
1370 1370
         }
1371 1371
         //current set timezone for timezone js
1372
-        echo '<span id="current_timezone" class="hidden">' . EEH_DTT_Helper::get_timezone() . '</span>';
1372
+        echo '<span id="current_timezone" class="hidden">'.EEH_DTT_Helper::get_timezone().'</span>';
1373 1373
     }
1374 1374
 
1375 1375
 
@@ -1394,7 +1394,7 @@  discard block
 block discarded – undo
1394 1394
     {
1395 1395
         $content = '';
1396 1396
         $help_array = empty($help_array) ? $this->_get_help_content() : $help_array;
1397
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_help_popup.template.php';
1397
+        $template_path = EE_ADMIN_TEMPLATE.'admin_help_popup.template.php';
1398 1398
         //loop through the array and setup content
1399 1399
         foreach ($help_array as $trigger => $help) {
1400 1400
             //make sure the array is setup properly
@@ -1428,7 +1428,7 @@  discard block
 block discarded – undo
1428 1428
     private function _get_help_content()
1429 1429
     {
1430 1430
         //what is the method we're looking for?
1431
-        $method_name = '_help_popup_content_' . $this->_req_action;
1431
+        $method_name = '_help_popup_content_'.$this->_req_action;
1432 1432
         //if method doesn't exist let's get out.
1433 1433
         if ( ! method_exists($this, $method_name)) {
1434 1434
             return array();
@@ -1472,8 +1472,8 @@  discard block
 block discarded – undo
1472 1472
             $help_content = $this->_set_help_popup_content($help_array, false);
1473 1473
         }
1474 1474
         //let's setup the trigger
1475
-        $content = '<a class="ee-dialog" href="?height=' . $dimensions[0] . '&width=' . $dimensions[1] . '&inlineId=' . $trigger_id . '" target="_blank"><span class="question ee-help-popup-question"></span></a>';
1476
-        $content = $content . $help_content;
1475
+        $content = '<a class="ee-dialog" href="?height='.$dimensions[0].'&width='.$dimensions[1].'&inlineId='.$trigger_id.'" target="_blank"><span class="question ee-help-popup-question"></span></a>';
1476
+        $content = $content.$help_content;
1477 1477
         if ($display) {
1478 1478
             echo $content;
1479 1479
         } else {
@@ -1533,32 +1533,32 @@  discard block
 block discarded – undo
1533 1533
             add_action('admin_head', array($this, 'add_xdebug_style'));
1534 1534
         }
1535 1535
         //register all styles
1536
-        wp_register_style('espresso-ui-theme', EE_GLOBAL_ASSETS_URL . 'css/espresso-ui-theme/jquery-ui-1.10.3.custom.min.css', array(), EVENT_ESPRESSO_VERSION);
1537
-        wp_register_style('ee-admin-css', EE_ADMIN_URL . 'assets/ee-admin-page.css', array(), EVENT_ESPRESSO_VERSION);
1536
+        wp_register_style('espresso-ui-theme', EE_GLOBAL_ASSETS_URL.'css/espresso-ui-theme/jquery-ui-1.10.3.custom.min.css', array(), EVENT_ESPRESSO_VERSION);
1537
+        wp_register_style('ee-admin-css', EE_ADMIN_URL.'assets/ee-admin-page.css', array(), EVENT_ESPRESSO_VERSION);
1538 1538
         //helpers styles
1539
-        wp_register_style('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.css', array(), EVENT_ESPRESSO_VERSION);
1539
+        wp_register_style('ee-text-links', EE_PLUGIN_DIR_URL.'core/helpers/assets/ee_text_list_helper.css', array(), EVENT_ESPRESSO_VERSION);
1540 1540
         //enqueue global styles
1541 1541
         wp_enqueue_style('ee-admin-css');
1542 1542
         /** SCRIPTS **/
1543 1543
         //register all scripts
1544
-        wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1545
-        wp_register_script('ee-dialog', EE_ADMIN_URL . 'assets/ee-dialog-helper.js', array('jquery', 'jquery-ui-draggable'), EVENT_ESPRESSO_VERSION, true);
1546
-        wp_register_script('ee_admin_js', EE_ADMIN_URL . 'assets/ee-admin-page.js', array('espresso_core', 'ee-parse-uri', 'ee-dialog'), EVENT_ESPRESSO_VERSION, true);
1547
-        wp_register_script('jquery-ui-timepicker-addon', EE_GLOBAL_ASSETS_URL . 'scripts/jquery-ui-timepicker-addon.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), EVENT_ESPRESSO_VERSION, true);
1544
+        wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1545
+        wp_register_script('ee-dialog', EE_ADMIN_URL.'assets/ee-dialog-helper.js', array('jquery', 'jquery-ui-draggable'), EVENT_ESPRESSO_VERSION, true);
1546
+        wp_register_script('ee_admin_js', EE_ADMIN_URL.'assets/ee-admin-page.js', array('espresso_core', 'ee-parse-uri', 'ee-dialog'), EVENT_ESPRESSO_VERSION, true);
1547
+        wp_register_script('jquery-ui-timepicker-addon', EE_GLOBAL_ASSETS_URL.'scripts/jquery-ui-timepicker-addon.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), EVENT_ESPRESSO_VERSION, true);
1548 1548
         // register jQuery Validate - see /includes/functions/wp_hooks.php
1549 1549
         add_filter('FHEE_load_jquery_validate', '__return_true');
1550 1550
         add_filter('FHEE_load_joyride', '__return_true');
1551 1551
         //script for sorting tables
1552
-        wp_register_script('espresso_ajax_table_sorting', EE_ADMIN_URL . "assets/espresso_ajax_table_sorting.js", array('ee_admin_js', 'jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
1552
+        wp_register_script('espresso_ajax_table_sorting', EE_ADMIN_URL."assets/espresso_ajax_table_sorting.js", array('ee_admin_js', 'jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
1553 1553
         //script for parsing uri's
1554
-        wp_register_script('ee-parse-uri', EE_GLOBAL_ASSETS_URL . 'scripts/parseuri.js', array(), EVENT_ESPRESSO_VERSION, true);
1554
+        wp_register_script('ee-parse-uri', EE_GLOBAL_ASSETS_URL.'scripts/parseuri.js', array(), EVENT_ESPRESSO_VERSION, true);
1555 1555
         //and parsing associative serialized form elements
1556
-        wp_register_script('ee-serialize-full-array', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.serializefullarray.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1556
+        wp_register_script('ee-serialize-full-array', EE_GLOBAL_ASSETS_URL.'scripts/jquery.serializefullarray.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1557 1557
         //helpers scripts
1558
-        wp_register_script('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1559
-        wp_register_script('ee-moment-core', EE_THIRD_PARTY_URL . 'moment/moment-with-locales.min.js', array(), EVENT_ESPRESSO_VERSION, true);
1560
-        wp_register_script('ee-moment', EE_THIRD_PARTY_URL . 'moment/moment-timezone-with-data.min.js', array('ee-moment-core'), EVENT_ESPRESSO_VERSION, true);
1561
-        wp_register_script('ee-datepicker', EE_ADMIN_URL . 'assets/ee-datepicker.js', array('jquery-ui-timepicker-addon', 'ee-moment'), EVENT_ESPRESSO_VERSION, true);
1558
+        wp_register_script('ee-text-links', EE_PLUGIN_DIR_URL.'core/helpers/assets/ee_text_list_helper.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1559
+        wp_register_script('ee-moment-core', EE_THIRD_PARTY_URL.'moment/moment-with-locales.min.js', array(), EVENT_ESPRESSO_VERSION, true);
1560
+        wp_register_script('ee-moment', EE_THIRD_PARTY_URL.'moment/moment-timezone-with-data.min.js', array('ee-moment-core'), EVENT_ESPRESSO_VERSION, true);
1561
+        wp_register_script('ee-datepicker', EE_ADMIN_URL.'assets/ee-datepicker.js', array('jquery-ui-timepicker-addon', 'ee-moment'), EVENT_ESPRESSO_VERSION, true);
1562 1562
         //google charts
1563 1563
         wp_register_script('google-charts', 'https://www.gstatic.com/charts/loader.js', array(), EVENT_ESPRESSO_VERSION, false);
1564 1564
         //enqueue global scripts
@@ -1579,7 +1579,7 @@  discard block
 block discarded – undo
1579 1579
          */
1580 1580
         if ( ! empty($this->_help_tour)) {
1581 1581
             //register the js for kicking things off
1582
-            wp_enqueue_script('ee-help-tour', EE_ADMIN_URL . 'assets/ee-help-tour.js', array('jquery-joyride'), EVENT_ESPRESSO_VERSION, true);
1582
+            wp_enqueue_script('ee-help-tour', EE_ADMIN_URL.'assets/ee-help-tour.js', array('jquery-joyride'), EVENT_ESPRESSO_VERSION, true);
1583 1583
             //setup tours for the js tour object
1584 1584
             foreach ($this->_help_tour['tours'] as $tour) {
1585 1585
                 $tours[] = array(
@@ -1678,17 +1678,17 @@  discard block
 block discarded – undo
1678 1678
             return;
1679 1679
         } //not a list_table view so get out.
1680 1680
         //list table functions are per view specific (because some admin pages might have more than one listtable!)
1681
-        if (call_user_func(array($this, '_set_list_table_views_' . $this->_req_action)) === false) {
1681
+        if (call_user_func(array($this, '_set_list_table_views_'.$this->_req_action)) === false) {
1682 1682
             //user error msg
1683 1683
             $error_msg = __('An error occurred. The requested list table views could not be found.', 'event_espresso');
1684 1684
             //developer error msg
1685
-            $error_msg .= '||' . sprintf(__('List table views for "%s" route could not be setup. Check that you have the corresponding method, "%s" set up for defining list_table_views for this route.', 'event_espresso'),
1686
-                            $this->_req_action, '_set_list_table_views_' . $this->_req_action);
1685
+            $error_msg .= '||'.sprintf(__('List table views for "%s" route could not be setup. Check that you have the corresponding method, "%s" set up for defining list_table_views for this route.', 'event_espresso'),
1686
+                            $this->_req_action, '_set_list_table_views_'.$this->_req_action);
1687 1687
             throw new EE_Error($error_msg);
1688 1688
         }
1689 1689
         //let's provide the ability to filter the views per PAGE AND ROUTE, per PAGE, and globally
1690
-        $this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug . '_' . $this->_req_action, $this->_views);
1691
-        $this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug, $this->_views);
1690
+        $this->_views = apply_filters('FHEE_list_table_views_'.$this->page_slug.'_'.$this->_req_action, $this->_views);
1691
+        $this->_views = apply_filters('FHEE_list_table_views_'.$this->page_slug, $this->_views);
1692 1692
         $this->_views = apply_filters('FHEE_list_table_views', $this->_views);
1693 1693
         $this->_set_list_table_view();
1694 1694
         $this->_set_list_table_object();
@@ -1763,7 +1763,7 @@  discard block
 block discarded – undo
1763 1763
             // check for current view
1764 1764
             $this->_views[$key]['class'] = $this->_view == $view['slug'] ? 'current' : '';
1765 1765
             $query_args['action'] = $this->_req_action;
1766
-            $query_args[$this->_req_action . '_nonce'] = wp_create_nonce($query_args['action'] . '_nonce');
1766
+            $query_args[$this->_req_action.'_nonce'] = wp_create_nonce($query_args['action'].'_nonce');
1767 1767
             $query_args['status'] = $view['slug'];
1768 1768
             //merge any other arguments sent in.
1769 1769
             if (isset($extra_query_args[$view['slug']])) {
@@ -1801,14 +1801,14 @@  discard block
 block discarded – undo
1801 1801
 					<select id="entries-per-page-slct" name="entries-per-page-slct">';
1802 1802
         foreach ($values as $value) {
1803 1803
             if ($value < $max_entries) {
1804
-                $selected = $value == $per_page ? ' selected="' . $per_page . '"' : '';
1804
+                $selected = $value == $per_page ? ' selected="'.$per_page.'"' : '';
1805 1805
                 $entries_per_page_dropdown .= '
1806
-						<option value="' . $value . '"' . $selected . '>' . $value . '&nbsp;&nbsp;</option>';
1806
+						<option value="' . $value.'"'.$selected.'>'.$value.'&nbsp;&nbsp;</option>';
1807 1807
             }
1808 1808
         }
1809
-        $selected = $max_entries == $per_page ? ' selected="' . $per_page . '"' : '';
1809
+        $selected = $max_entries == $per_page ? ' selected="'.$per_page.'"' : '';
1810 1810
         $entries_per_page_dropdown .= '
1811
-						<option value="' . $max_entries . '"' . $selected . '>All&nbsp;&nbsp;</option>';
1811
+						<option value="' . $max_entries.'"'.$selected.'>All&nbsp;&nbsp;</option>';
1812 1812
         $entries_per_page_dropdown .= '
1813 1813
 					</select>
1814 1814
 					entries
@@ -1830,7 +1830,7 @@  discard block
 block discarded – undo
1830 1830
     public function _set_search_attributes()
1831 1831
     {
1832 1832
         $this->_template_args['search']['btn_label'] = sprintf(__('Search %s', 'event_espresso'), empty($this->_search_btn_label) ? $this->page_label : $this->_search_btn_label);
1833
-        $this->_template_args['search']['callback'] = 'search_' . $this->page_slug;
1833
+        $this->_template_args['search']['callback'] = 'search_'.$this->page_slug;
1834 1834
     }
1835 1835
 
1836 1836
     /*** END LIST TABLE METHODS **/
@@ -1868,7 +1868,7 @@  discard block
 block discarded – undo
1868 1868
                     // user error msg
1869 1869
                     $error_msg = __('An error occurred. The  requested metabox could not be found.', 'event_espresso');
1870 1870
                     // developer error msg
1871
-                    $error_msg .= '||' . sprintf(
1871
+                    $error_msg .= '||'.sprintf(
1872 1872
                                     __(
1873 1873
                                             'The metabox with the string "%s" could not be called. Check that the spelling for method names and actions in the "_page_config[\'metaboxes\']" array are all correct.',
1874 1874
                                             'event_espresso'
@@ -1898,15 +1898,15 @@  discard block
 block discarded – undo
1898 1898
                 && is_array($this->_route_config['columns'])
1899 1899
                 && count($this->_route_config['columns']) === 2
1900 1900
         ) {
1901
-            add_screen_option('layout_columns', array('max' => (int)$this->_route_config['columns'][0], 'default' => (int)$this->_route_config['columns'][1]));
1901
+            add_screen_option('layout_columns', array('max' => (int) $this->_route_config['columns'][0], 'default' => (int) $this->_route_config['columns'][1]));
1902 1902
             $this->_template_args['num_columns'] = $this->_route_config['columns'][0];
1903 1903
             $screen_id = $this->_current_screen->id;
1904
-            $screen_columns = (int)get_user_option("screen_layout_$screen_id");
1904
+            $screen_columns = (int) get_user_option("screen_layout_$screen_id");
1905 1905
             $total_columns = ! empty($screen_columns) ? $screen_columns : $this->_route_config['columns'][1];
1906
-            $this->_template_args['current_screen_widget_class'] = 'columns-' . $total_columns;
1906
+            $this->_template_args['current_screen_widget_class'] = 'columns-'.$total_columns;
1907 1907
             $this->_template_args['current_page'] = $this->_wp_page_slug;
1908 1908
             $this->_template_args['screen'] = $this->_current_screen;
1909
-            $this->_column_template_path = EE_ADMIN_TEMPLATE . 'admin_details_metabox_column_wrapper.template.php';
1909
+            $this->_column_template_path = EE_ADMIN_TEMPLATE.'admin_details_metabox_column_wrapper.template.php';
1910 1910
             //finally if we don't have has_metaboxes set in the route config let's make sure it IS set other wise the necessary hidden fields for this won't be loaded.
1911 1911
             $this->_route_config['has_metaboxes'] = true;
1912 1912
         }
@@ -1953,7 +1953,7 @@  discard block
 block discarded – undo
1953 1953
      */
1954 1954
     public function espresso_ratings_request()
1955 1955
     {
1956
-        $template_path = EE_ADMIN_TEMPLATE . 'espresso_ratings_request_content.template.php';
1956
+        $template_path = EE_ADMIN_TEMPLATE.'espresso_ratings_request_content.template.php';
1957 1957
         EEH_Template::display_template($template_path, array());
1958 1958
     }
1959 1959
 
@@ -1961,18 +1961,18 @@  discard block
 block discarded – undo
1961 1961
 
1962 1962
     public static function cached_rss_display($rss_id, $url)
1963 1963
     {
1964
-        $loading = '<p class="widget-loading hide-if-no-js">' . __('Loading&#8230;') . '</p><p class="hide-if-js">' . __('This widget requires JavaScript.') . '</p>';
1964
+        $loading = '<p class="widget-loading hide-if-no-js">'.__('Loading&#8230;').'</p><p class="hide-if-js">'.__('This widget requires JavaScript.').'</p>';
1965 1965
         $doing_ajax = (defined('DOING_AJAX') && DOING_AJAX);
1966
-        $pre = '<div class="espresso-rss-display">' . "\n\t";
1967
-        $pre .= '<span id="' . $rss_id . '_url" class="hidden">' . $url . '</span>';
1968
-        $post = '</div>' . "\n";
1969
-        $cache_key = 'ee_rss_' . md5($rss_id);
1966
+        $pre = '<div class="espresso-rss-display">'."\n\t";
1967
+        $pre .= '<span id="'.$rss_id.'_url" class="hidden">'.$url.'</span>';
1968
+        $post = '</div>'."\n";
1969
+        $cache_key = 'ee_rss_'.md5($rss_id);
1970 1970
         if (false != ($output = get_transient($cache_key))) {
1971
-            echo $pre . $output . $post;
1971
+            echo $pre.$output.$post;
1972 1972
             return true;
1973 1973
         }
1974 1974
         if ( ! $doing_ajax) {
1975
-            echo $pre . $loading . $post;
1975
+            echo $pre.$loading.$post;
1976 1976
             return false;
1977 1977
         }
1978 1978
         ob_start();
@@ -2031,7 +2031,7 @@  discard block
 block discarded – undo
2031 2031
 
2032 2032
     public function espresso_sponsors_post_box()
2033 2033
     {
2034
-        $templatepath = EE_ADMIN_TEMPLATE . 'admin_general_metabox_contents_espresso_sponsors.template.php';
2034
+        $templatepath = EE_ADMIN_TEMPLATE.'admin_general_metabox_contents_espresso_sponsors.template.php';
2035 2035
         EEH_Template::display_template($templatepath);
2036 2036
     }
2037 2037
 
@@ -2039,7 +2039,7 @@  discard block
 block discarded – undo
2039 2039
 
2040 2040
     private function _publish_post_box()
2041 2041
     {
2042
-        $meta_box_ref = 'espresso_' . $this->page_slug . '_editor_overview';
2042
+        $meta_box_ref = 'espresso_'.$this->page_slug.'_editor_overview';
2043 2043
         //if there is a array('label' => array('publishbox' => 'some title') ) present in the _page_config array then we'll use that for the metabox label.  Otherwise we'll just use publish (publishbox itself could be an array of labels indexed by routes)
2044 2044
         if ( ! empty($this->_labels['publishbox'])) {
2045 2045
             $box_label = is_array($this->_labels['publishbox']) ? $this->_labels['publishbox'][$this->_req_action] : $this->_labels['publishbox'];
@@ -2056,7 +2056,7 @@  discard block
 block discarded – undo
2056 2056
     {
2057 2057
         //if we have extra content set let's add it in if not make sure its empty
2058 2058
         $this->_template_args['publish_box_extra_content'] = isset($this->_template_args['publish_box_extra_content']) ? $this->_template_args['publish_box_extra_content'] : '';
2059
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_details_publish_metabox.template.php';
2059
+        $template_path = EE_ADMIN_TEMPLATE.'admin_details_publish_metabox.template.php';
2060 2060
         echo EEH_Template::display_template($template_path, $this->_template_args, true);
2061 2061
     }
2062 2062
 
@@ -2225,7 +2225,7 @@  discard block
 block discarded – undo
2225 2225
         //if $create_func is true (default) then we automatically create the function for displaying the actual meta box.  If false then we take the $callback reference passed through and use it instead (so callers can define their own callback function/method if they wish)
2226 2226
         $call_back_func = $create_func ? create_function('$post, $metabox',
2227 2227
                 'do_action( "AHEE_log", __FILE__, __FUNCTION__, ""); echo EEH_Template::display_template( $metabox["args"]["template_path"], $metabox["args"]["template_args"], TRUE );') : $callback;
2228
-        add_meta_box(str_replace('_', '-', $action) . '-mbox', $title, $call_back_func, $this->_wp_page_slug, $column, $priority, $callback_args);
2228
+        add_meta_box(str_replace('_', '-', $action).'-mbox', $title, $call_back_func, $this->_wp_page_slug, $column, $priority, $callback_args);
2229 2229
     }
2230 2230
 
2231 2231
 
@@ -2305,10 +2305,10 @@  discard block
 block discarded – undo
2305 2305
                 ? 'poststuff'
2306 2306
                 : 'espresso-default-admin';
2307 2307
         $template_path = $sidebar
2308
-                ? EE_ADMIN_TEMPLATE . 'admin_details_wrapper.template.php'
2309
-                : EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar.template.php';
2308
+                ? EE_ADMIN_TEMPLATE.'admin_details_wrapper.template.php'
2309
+                : EE_ADMIN_TEMPLATE.'admin_details_wrapper_no_sidebar.template.php';
2310 2310
         if (defined('DOING_AJAX') && DOING_AJAX) {
2311
-            $template_path = EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar_ajax.template.php';
2311
+            $template_path = EE_ADMIN_TEMPLATE.'admin_details_wrapper_no_sidebar_ajax.template.php';
2312 2312
         }
2313 2313
         $template_path = ! empty($this->_column_template_path) ? $this->_column_template_path : $template_path;
2314 2314
         $this->_template_args['post_body_content'] = isset($this->_template_args['admin_page_content']) ? $this->_template_args['admin_page_content'] : '';
@@ -2354,7 +2354,7 @@  discard block
 block discarded – undo
2354 2354
                         true
2355 2355
                 )
2356 2356
                 : $this->_template_args['preview_action_button'];
2357
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_caf_full_page_preview.template.php';
2357
+        $template_path = EE_ADMIN_TEMPLATE.'admin_caf_full_page_preview.template.php';
2358 2358
         $this->_template_args['admin_page_content'] = EEH_Template::display_template(
2359 2359
                 $template_path,
2360 2360
                 $this->_template_args,
@@ -2405,7 +2405,7 @@  discard block
 block discarded – undo
2405 2405
         //setup search attributes
2406 2406
         $this->_set_search_attributes();
2407 2407
         $this->_template_args['current_page'] = $this->_wp_page_slug;
2408
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_list_wrapper.template.php';
2408
+        $template_path = EE_ADMIN_TEMPLATE.'admin_list_wrapper.template.php';
2409 2409
         $this->_template_args['table_url'] = defined('DOING_AJAX')
2410 2410
                 ? add_query_arg(array('noheader' => 'true', 'route' => $this->_req_action), $this->_admin_base_url)
2411 2411
                 : add_query_arg(array('route' => $this->_req_action), $this->_admin_base_url);
@@ -2415,29 +2415,29 @@  discard block
 block discarded – undo
2415 2415
         $ajax_sorting_callback = $this->_list_table_object->get_ajax_sorting_callback();
2416 2416
         if ( ! empty($ajax_sorting_callback)) {
2417 2417
             $sortable_list_table_form_fields = wp_nonce_field(
2418
-                    $ajax_sorting_callback . '_nonce',
2419
-                    $ajax_sorting_callback . '_nonce',
2418
+                    $ajax_sorting_callback.'_nonce',
2419
+                    $ajax_sorting_callback.'_nonce',
2420 2420
                     false,
2421 2421
                     false
2422 2422
             );
2423 2423
             //			$reorder_action = 'espresso_' . $ajax_sorting_callback . '_nonce';
2424 2424
             //			$sortable_list_table_form_fields = wp_nonce_field( $reorder_action, 'ajax_table_sort_nonce', FALSE, FALSE );
2425
-            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_page" name="ajax_table_sort_page" value="' . $this->page_slug . '" />';
2426
-            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_action" name="ajax_table_sort_action" value="' . $ajax_sorting_callback . '" />';
2425
+            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_page" name="ajax_table_sort_page" value="'.$this->page_slug.'" />';
2426
+            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_action" name="ajax_table_sort_action" value="'.$ajax_sorting_callback.'" />';
2427 2427
         } else {
2428 2428
             $sortable_list_table_form_fields = '';
2429 2429
         }
2430 2430
         $this->_template_args['sortable_list_table_form_fields'] = $sortable_list_table_form_fields;
2431 2431
         $hidden_form_fields = isset($this->_template_args['list_table_hidden_fields']) ? $this->_template_args['list_table_hidden_fields'] : '';
2432
-        $nonce_ref = $this->_req_action . '_nonce';
2433
-        $hidden_form_fields .= '<input type="hidden" name="' . $nonce_ref . '" value="' . wp_create_nonce($nonce_ref) . '">';
2432
+        $nonce_ref = $this->_req_action.'_nonce';
2433
+        $hidden_form_fields .= '<input type="hidden" name="'.$nonce_ref.'" value="'.wp_create_nonce($nonce_ref).'">';
2434 2434
         $this->_template_args['list_table_hidden_fields'] = $hidden_form_fields;
2435 2435
         //display message about search results?
2436 2436
         $this->_template_args['before_list_table'] .= ! empty($this->_req_data['s'])
2437
-                ? '<p class="ee-search-results">' . sprintf(
2437
+                ? '<p class="ee-search-results">'.sprintf(
2438 2438
                         esc_html__('Displaying search results for the search string: %1$s', 'event_espresso'),
2439 2439
                         trim($this->_req_data['s'], '%')
2440
-                ) . '</p>'
2440
+                ).'</p>'
2441 2441
                 : '';
2442 2442
         // filter before_list_table template arg
2443 2443
         $this->_template_args['before_list_table'] = implode(
@@ -2491,8 +2491,8 @@  discard block
 block discarded – undo
2491 2491
      */
2492 2492
     protected function _display_legend($items)
2493 2493
     {
2494
-        $this->_template_args['items'] = apply_filters('FHEE__EE_Admin_Page___display_legend__items', (array)$items, $this);
2495
-        $legend_template = EE_ADMIN_TEMPLATE . 'admin_details_legend.template.php';
2494
+        $this->_template_args['items'] = apply_filters('FHEE__EE_Admin_Page___display_legend__items', (array) $items, $this);
2495
+        $legend_template = EE_ADMIN_TEMPLATE.'admin_details_legend.template.php';
2496 2496
         return EEH_Template::display_template($legend_template, $this->_template_args, true);
2497 2497
     }
2498 2498
 
@@ -2584,15 +2584,15 @@  discard block
 block discarded – undo
2584 2584
         $this->_nav_tabs = $this->_get_main_nav_tabs();
2585 2585
         $this->_template_args['nav_tabs'] = $this->_nav_tabs;
2586 2586
         $this->_template_args['admin_page_title'] = $this->_admin_page_title;
2587
-        $this->_template_args['before_admin_page_content'] = apply_filters('FHEE_before_admin_page_content' . $this->_current_page . $this->_current_view,
2587
+        $this->_template_args['before_admin_page_content'] = apply_filters('FHEE_before_admin_page_content'.$this->_current_page.$this->_current_view,
2588 2588
                 isset($this->_template_args['before_admin_page_content']) ? $this->_template_args['before_admin_page_content'] : '');
2589
-        $this->_template_args['after_admin_page_content'] = apply_filters('FHEE_after_admin_page_content' . $this->_current_page . $this->_current_view,
2589
+        $this->_template_args['after_admin_page_content'] = apply_filters('FHEE_after_admin_page_content'.$this->_current_page.$this->_current_view,
2590 2590
                 isset($this->_template_args['after_admin_page_content']) ? $this->_template_args['after_admin_page_content'] : '');
2591 2591
         $this->_template_args['after_admin_page_content'] .= $this->_set_help_popup_content();
2592 2592
         // load settings page wrapper template
2593
-        $template_path = ! defined('DOING_AJAX') ? EE_ADMIN_TEMPLATE . 'admin_wrapper.template.php' : EE_ADMIN_TEMPLATE . 'admin_wrapper_ajax.template.php';
2593
+        $template_path = ! defined('DOING_AJAX') ? EE_ADMIN_TEMPLATE.'admin_wrapper.template.php' : EE_ADMIN_TEMPLATE.'admin_wrapper_ajax.template.php';
2594 2594
         //about page?
2595
-        $template_path = $about ? EE_ADMIN_TEMPLATE . 'about_admin_wrapper.template.php' : $template_path;
2595
+        $template_path = $about ? EE_ADMIN_TEMPLATE.'about_admin_wrapper.template.php' : $template_path;
2596 2596
         if (defined('DOING_AJAX')) {
2597 2597
             $this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, true);
2598 2598
             $this->_return_json();
@@ -2664,20 +2664,20 @@  discard block
 block discarded – undo
2664 2664
     protected function _set_save_buttons($both = true, $text = array(), $actions = array(), $referrer = null)
2665 2665
     {
2666 2666
         //make sure $text and $actions are in an array
2667
-        $text = (array)$text;
2668
-        $actions = (array)$actions;
2667
+        $text = (array) $text;
2668
+        $actions = (array) $actions;
2669 2669
         $referrer_url = empty($referrer) ? '' : $referrer;
2670
-        $referrer_url = ! $referrer ? '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $_SERVER['REQUEST_URI'] . '" />'
2671
-                : '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $referrer . '" />';
2670
+        $referrer_url = ! $referrer ? '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="'.$_SERVER['REQUEST_URI'].'" />'
2671
+                : '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="'.$referrer.'" />';
2672 2672
         $button_text = ! empty($text) ? $text : array(__('Save', 'event_espresso'), __('Save and Close', 'event_espresso'));
2673 2673
         $default_names = array('save', 'save_and_close');
2674 2674
         //add in a hidden index for the current page (so save and close redirects properly)
2675 2675
         $this->_template_args['save_buttons'] = $referrer_url;
2676 2676
         foreach ($button_text as $key => $button) {
2677 2677
             $ref = $default_names[$key];
2678
-            $id = $this->_current_view . '_' . $ref;
2678
+            $id = $this->_current_view.'_'.$ref;
2679 2679
             $name = ! empty($actions) ? $actions[$key] : $ref;
2680
-            $this->_template_args['save_buttons'] .= '<input type="submit" class="button-primary ' . $ref . '" value="' . $button . '" name="' . $name . '" id="' . $id . '" />';
2680
+            $this->_template_args['save_buttons'] .= '<input type="submit" class="button-primary '.$ref.'" value="'.$button.'" name="'.$name.'" id="'.$id.'" />';
2681 2681
             if ( ! $both) {
2682 2682
                 break;
2683 2683
             }
@@ -2713,15 +2713,15 @@  discard block
 block discarded – undo
2713 2713
     {
2714 2714
         if (empty($route)) {
2715 2715
             $user_msg = __('An error occurred. No action was set for this page\'s form.', 'event_espresso');
2716
-            $dev_msg = $user_msg . "\n" . sprintf(__('The $route argument is required for the %s->%s method.', 'event_espresso'), __FUNCTION__, __CLASS__);
2717
-            EE_Error::add_error($user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__);
2716
+            $dev_msg = $user_msg."\n".sprintf(__('The $route argument is required for the %s->%s method.', 'event_espresso'), __FUNCTION__, __CLASS__);
2717
+            EE_Error::add_error($user_msg.'||'.$dev_msg, __FILE__, __FUNCTION__, __LINE__);
2718 2718
         }
2719 2719
         // open form
2720
-        $this->_template_args['before_admin_page_content'] = '<form name="form" method="post" action="' . $this->_admin_base_url . '" id="' . $route . '_event_form" >';
2720
+        $this->_template_args['before_admin_page_content'] = '<form name="form" method="post" action="'.$this->_admin_base_url.'" id="'.$route.'_event_form" >';
2721 2721
         // add nonce
2722
-        $nonce = wp_nonce_field($route . '_nonce', $route . '_nonce', false, false);
2722
+        $nonce = wp_nonce_field($route.'_nonce', $route.'_nonce', false, false);
2723 2723
         //		$nonce = wp_nonce_field( $route . '_nonce', '_wpnonce', FALSE, FALSE );
2724
-        $this->_template_args['before_admin_page_content'] .= "\n\t" . $nonce;
2724
+        $this->_template_args['before_admin_page_content'] .= "\n\t".$nonce;
2725 2725
         // add REQUIRED form action
2726 2726
         $hidden_fields = array(
2727 2727
                 'action' => array('type' => 'hidden', 'value' => $route),
@@ -2731,8 +2731,8 @@  discard block
 block discarded – undo
2731 2731
         // generate form fields
2732 2732
         $form_fields = $this->_generate_admin_form_fields($hidden_fields, 'array');
2733 2733
         // add fields to form
2734
-        foreach ((array)$form_fields as $field_name => $form_field) {
2735
-            $this->_template_args['before_admin_page_content'] .= "\n\t" . $form_field['field'];
2734
+        foreach ((array) $form_fields as $field_name => $form_field) {
2735
+            $this->_template_args['before_admin_page_content'] .= "\n\t".$form_field['field'];
2736 2736
         }
2737 2737
         // close form
2738 2738
         $this->_template_args['after_admin_page_content'] = '</form>';
@@ -2813,7 +2813,7 @@  discard block
 block discarded – undo
2813 2813
          * @param array $query_args       The original query_args array coming into the
2814 2814
          *                                method.
2815 2815
          */
2816
-        do_action('AHEE__' . $classname . '___redirect_after_action__before_redirect_modification_' . $this->_req_action, $query_args);
2816
+        do_action('AHEE__'.$classname.'___redirect_after_action__before_redirect_modification_'.$this->_req_action, $query_args);
2817 2817
         //calculate where we're going (if we have a "save and close" button pushed)
2818 2818
         if (isset($this->_req_data['save_and_close']) && isset($this->_req_data['save_and_close_referrer'])) {
2819 2819
             // even though we have the save_and_close referrer, we need to parse the url for the action in order to generate a nonce
@@ -2829,7 +2829,7 @@  discard block
 block discarded – undo
2829 2829
             foreach ($this->_default_route_query_args as $query_param => $query_value) {
2830 2830
                 //is there a wp_referer array in our _default_route_query_args property?
2831 2831
                 if ($query_param == 'wp_referer') {
2832
-                    $query_value = (array)$query_value;
2832
+                    $query_value = (array) $query_value;
2833 2833
                     foreach ($query_value as $reference => $value) {
2834 2834
                         if (strpos($reference, 'nonce') !== false) {
2835 2835
                             continue;
@@ -2855,11 +2855,11 @@  discard block
 block discarded – undo
2855 2855
         // if redirecting to anything other than the main page, add a nonce
2856 2856
         if (isset($query_args['action'])) {
2857 2857
             // manually generate wp_nonce and merge that with the query vars becuz the wp_nonce_url function wrecks havoc on some vars
2858
-            $query_args['_wpnonce'] = wp_create_nonce($query_args['action'] . '_nonce');
2858
+            $query_args['_wpnonce'] = wp_create_nonce($query_args['action'].'_nonce');
2859 2859
         }
2860 2860
         //we're adding some hooks and filters in here for processing any things just before redirects (example: an admin page has done an insert or update and we want to run something after that).
2861
-        do_action('AHEE_redirect_' . $classname . $this->_req_action, $query_args);
2862
-        $redirect_url = apply_filters('FHEE_redirect_' . $classname . $this->_req_action, self::add_query_args_and_nonce($query_args, $redirect_url), $query_args);
2861
+        do_action('AHEE_redirect_'.$classname.$this->_req_action, $query_args);
2862
+        $redirect_url = apply_filters('FHEE_redirect_'.$classname.$this->_req_action, self::add_query_args_and_nonce($query_args, $redirect_url), $query_args);
2863 2863
         // check if we're doing ajax.  If we are then lets just return the results and js can handle how it wants.
2864 2864
         if (defined('DOING_AJAX')) {
2865 2865
             $default_data = array(
@@ -2989,7 +2989,7 @@  discard block
 block discarded – undo
2989 2989
         $args = array(
2990 2990
                 'label'   => $this->_admin_page_title,
2991 2991
                 'default' => 10,
2992
-                'option'  => $this->_current_page . '_' . $this->_current_view . '_per_page',
2992
+                'option'  => $this->_current_page.'_'.$this->_current_view.'_per_page',
2993 2993
         );
2994 2994
         //ONLY add the screen option if the user has access to it.
2995 2995
         if ($this->check_user_access($this->_current_view, true)) {
@@ -3022,8 +3022,8 @@  discard block
 block discarded – undo
3022 3022
             $map_option = $option;
3023 3023
             $option = str_replace('-', '_', $option);
3024 3024
             switch ($map_option) {
3025
-                case $this->_current_page . '_' . $this->_current_view . '_per_page':
3026
-                    $value = (int)$value;
3025
+                case $this->_current_page.'_'.$this->_current_view.'_per_page':
3026
+                    $value = (int) $value;
3027 3027
                     if ($value < 1 || $value > 999) {
3028 3028
                         return;
3029 3029
                     }
@@ -3050,7 +3050,7 @@  discard block
 block discarded – undo
3050 3050
      */
3051 3051
     public function set_template_args($data)
3052 3052
     {
3053
-        $this->_template_args = array_merge($this->_template_args, (array)$data);
3053
+        $this->_template_args = array_merge($this->_template_args, (array) $data);
3054 3054
     }
3055 3055
 
3056 3056
 
@@ -3072,12 +3072,12 @@  discard block
 block discarded – undo
3072 3072
             $this->_verify_route($route);
3073 3073
         }
3074 3074
         //now let's set the string for what kind of transient we're setting
3075
-        $transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3075
+        $transient = $notices ? 'ee_rte_n_tx_'.$route.'_'.$user_id : 'rte_tx_'.$route.'_'.$user_id;
3076 3076
         $data = $notices ? array('notices' => $data) : $data;
3077 3077
         //is there already a transient for this route?  If there is then let's ADD to that transient
3078 3078
         $existing = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3079 3079
         if ($existing) {
3080
-            $data = array_merge((array)$data, (array)$existing);
3080
+            $data = array_merge((array) $data, (array) $existing);
3081 3081
         }
3082 3082
         if (is_multisite() && is_network_admin()) {
3083 3083
             set_site_transient($transient, $data, 8);
@@ -3098,7 +3098,7 @@  discard block
 block discarded – undo
3098 3098
     {
3099 3099
         $user_id = get_current_user_id();
3100 3100
         $route = ! $route ? $this->_req_action : $route;
3101
-        $transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3101
+        $transient = $notices ? 'ee_rte_n_tx_'.$route.'_'.$user_id : 'rte_tx_'.$route.'_'.$user_id;
3102 3102
         $data = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3103 3103
         //delete transient after retrieval (just in case it hasn't expired);
3104 3104
         if (is_multisite() && is_network_admin()) {
@@ -3339,7 +3339,7 @@  discard block
 block discarded – undo
3339 3339
      */
3340 3340
     protected function _next_link($url, $class = 'dashicons dashicons-arrow-right')
3341 3341
     {
3342
-        return '<a class="' . $class . '" href="' . $url . '"></a>';
3342
+        return '<a class="'.$class.'" href="'.$url.'"></a>';
3343 3343
     }
3344 3344
 
3345 3345
 
@@ -3353,7 +3353,7 @@  discard block
 block discarded – undo
3353 3353
      */
3354 3354
     protected function _previous_link($url, $class = 'dashicons dashicons-arrow-left')
3355 3355
     {
3356
-        return '<a class="' . $class . '" href="' . $url . '"></a>';
3356
+        return '<a class="'.$class.'" href="'.$url.'"></a>';
3357 3357
     }
3358 3358
 
3359 3359
 
Please login to merge, or discard this patch.
Indentation   +3305 added lines, -3305 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -28,2120 +28,2120 @@  discard block
 block discarded – undo
28 28
 {
29 29
 
30 30
 
31
-    //set in _init_page_props()
32
-    public $page_slug;
31
+	//set in _init_page_props()
32
+	public $page_slug;
33 33
 
34
-    public $page_label;
34
+	public $page_label;
35 35
 
36
-    public $page_folder;
36
+	public $page_folder;
37 37
 
38
-    //set in define_page_props()
39
-    protected $_admin_base_url;
38
+	//set in define_page_props()
39
+	protected $_admin_base_url;
40 40
 
41
-    protected $_admin_base_path;
41
+	protected $_admin_base_path;
42 42
 
43
-    protected $_admin_page_title;
43
+	protected $_admin_page_title;
44 44
 
45
-    protected $_labels;
45
+	protected $_labels;
46 46
 
47 47
 
48
-    //set early within EE_Admin_Init
49
-    protected $_wp_page_slug;
48
+	//set early within EE_Admin_Init
49
+	protected $_wp_page_slug;
50 50
 
51
-    //navtabs
52
-    protected $_nav_tabs;
51
+	//navtabs
52
+	protected $_nav_tabs;
53 53
 
54
-    protected $_default_nav_tab_name;
54
+	protected $_default_nav_tab_name;
55 55
 
56
-    //helptourstops
57
-    protected $_help_tour = array();
56
+	//helptourstops
57
+	protected $_help_tour = array();
58 58
 
59 59
 
60
-    //template variables (used by templates)
61
-    protected $_template_path;
60
+	//template variables (used by templates)
61
+	protected $_template_path;
62 62
 
63
-    protected $_column_template_path;
63
+	protected $_column_template_path;
64 64
 
65
-    /**
66
-     * @var array $_template_args
67
-     */
68
-    protected $_template_args = array();
65
+	/**
66
+	 * @var array $_template_args
67
+	 */
68
+	protected $_template_args = array();
69 69
 
70
-    /**
71
-     * this will hold the list table object for a given view.
72
-     *
73
-     * @var EE_Admin_List_Table $_list_table_object
74
-     */
75
-    protected $_list_table_object;
70
+	/**
71
+	 * this will hold the list table object for a given view.
72
+	 *
73
+	 * @var EE_Admin_List_Table $_list_table_object
74
+	 */
75
+	protected $_list_table_object;
76 76
 
77
-    //bools
78
-    protected $_is_UI_request = null; //this starts at null so we can have no header routes progress through two states.
77
+	//bools
78
+	protected $_is_UI_request = null; //this starts at null so we can have no header routes progress through two states.
79 79
 
80
-    protected $_routing;
80
+	protected $_routing;
81 81
 
82
-    //list table args
83
-    protected $_view;
82
+	//list table args
83
+	protected $_view;
84 84
 
85
-    protected $_views;
85
+	protected $_views;
86 86
 
87 87
 
88
-    //action => method pairs used for routing incoming requests
89
-    protected $_page_routes;
88
+	//action => method pairs used for routing incoming requests
89
+	protected $_page_routes;
90 90
 
91
-    protected $_page_config;
91
+	protected $_page_config;
92 92
 
93
-    //the current page route and route config
94
-    protected $_route;
93
+	//the current page route and route config
94
+	protected $_route;
95 95
 
96
-    protected $_route_config;
96
+	protected $_route_config;
97 97
 
98
-    /**
99
-     * Used to hold default query args for list table routes to help preserve stickiness of filters for carried out
100
-     * actions.
101
-     *
102
-     * @since 4.6.x
103
-     * @var array.
104
-     */
105
-    protected $_default_route_query_args;
98
+	/**
99
+	 * Used to hold default query args for list table routes to help preserve stickiness of filters for carried out
100
+	 * actions.
101
+	 *
102
+	 * @since 4.6.x
103
+	 * @var array.
104
+	 */
105
+	protected $_default_route_query_args;
106 106
 
107
-    //set via request page and action args.
108
-    protected $_current_page;
107
+	//set via request page and action args.
108
+	protected $_current_page;
109 109
 
110
-    protected $_current_view;
110
+	protected $_current_view;
111 111
 
112
-    protected $_current_page_view_url;
112
+	protected $_current_page_view_url;
113 113
 
114
-    //sanitized request action (and nonce)
115
-    /**
116
-     * @var string $_req_action
117
-     */
118
-    protected $_req_action;
114
+	//sanitized request action (and nonce)
115
+	/**
116
+	 * @var string $_req_action
117
+	 */
118
+	protected $_req_action;
119 119
 
120
-    /**
121
-     * @var string $_req_nonce
122
-     */
123
-    protected $_req_nonce;
120
+	/**
121
+	 * @var string $_req_nonce
122
+	 */
123
+	protected $_req_nonce;
124 124
 
125
-    //search related
126
-    protected $_search_btn_label;
125
+	//search related
126
+	protected $_search_btn_label;
127 127
 
128
-    protected $_search_box_callback;
128
+	protected $_search_box_callback;
129 129
 
130
-    /**
131
-     * WP Current Screen object
132
-     *
133
-     * @var WP_Screen
134
-     */
135
-    protected $_current_screen;
130
+	/**
131
+	 * WP Current Screen object
132
+	 *
133
+	 * @var WP_Screen
134
+	 */
135
+	protected $_current_screen;
136 136
 
137
-    //for holding EE_Admin_Hooks object when needed (set via set_hook_object())
138
-    protected $_hook_obj;
137
+	//for holding EE_Admin_Hooks object when needed (set via set_hook_object())
138
+	protected $_hook_obj;
139 139
 
140
-    //for holding incoming request data
141
-    protected $_req_data;
140
+	//for holding incoming request data
141
+	protected $_req_data;
142 142
 
143
-    // yes / no array for admin form fields
144
-    protected $_yes_no_values = array();
145
-
146
-    //some default things shared by all child classes
147
-    protected $_default_espresso_metaboxes;
148
-
149
-    /**
150
-     *    EE_Registry Object
151
-     *
152
-     * @var    EE_Registry
153
-     * @access    protected
154
-     */
155
-    protected $EE = null;
156
-
157
-
158
-
159
-    /**
160
-     * This is just a property that flags whether the given route is a caffeinated route or not.
161
-     *
162
-     * @var boolean
163
-     */
164
-    protected $_is_caf = false;
165
-
166
-
167
-
168
-    /**
169
-     * @Constructor
170
-     * @param bool $routing indicate whether we want to just load the object and handle routing or just load the object.
171
-     * @access public
172
-     */
173
-    public function __construct($routing = true)
174
-    {
175
-        if (strpos($this->_get_dir(), 'caffeinated') !== false) {
176
-            $this->_is_caf = true;
177
-        }
178
-        $this->_yes_no_values = array(
179
-                array('id' => true, 'text' => __('Yes', 'event_espresso')),
180
-                array('id' => false, 'text' => __('No', 'event_espresso')),
181
-        );
182
-        //set the _req_data property.
183
-        $this->_req_data = array_merge($_GET, $_POST);
184
-        //routing enabled?
185
-        $this->_routing = $routing;
186
-        //set initial page props (child method)
187
-        $this->_init_page_props();
188
-        //set global defaults
189
-        $this->_set_defaults();
190
-        //set early because incoming requests could be ajax related and we need to register those hooks.
191
-        $this->_global_ajax_hooks();
192
-        $this->_ajax_hooks();
193
-        //other_page_hooks have to be early too.
194
-        $this->_do_other_page_hooks();
195
-        //This just allows us to have extending classes do something specific
196
-        // before the parent constructor runs _page_setup().
197
-        if (method_exists($this, '_before_page_setup')) {
198
-            $this->_before_page_setup();
199
-        }
200
-        //set up page dependencies
201
-        $this->_page_setup();
202
-    }
203
-
204
-
205
-
206
-    /**
207
-     * _init_page_props
208
-     * Child classes use to set at least the following properties:
209
-     * $page_slug.
210
-     * $page_label.
211
-     *
212
-     * @abstract
213
-     * @access protected
214
-     * @return void
215
-     */
216
-    abstract protected function _init_page_props();
217
-
218
-
219
-
220
-    /**
221
-     * _ajax_hooks
222
-     * child classes put all their add_action('wp_ajax_{name_of_hook}') hooks in here.
223
-     * Note: within the ajax callback methods.
224
-     *
225
-     * @abstract
226
-     * @access protected
227
-     * @return void
228
-     */
229
-    abstract protected function _ajax_hooks();
230
-
231
-
232
-
233
-    /**
234
-     * _define_page_props
235
-     * child classes define page properties in here.  Must include at least:
236
-     * $_admin_base_url = base_url for all admin pages
237
-     * $_admin_page_title = default admin_page_title for admin pages
238
-     * $_labels = array of default labels for various automatically generated elements:
239
-     *    array(
240
-     *        'buttons' => array(
241
-     *            'add' => __('label for add new button'),
242
-     *            'edit' => __('label for edit button'),
243
-     *            'delete' => __('label for delete button')
244
-     *            )
245
-     *        )
246
-     *
247
-     * @abstract
248
-     * @access protected
249
-     * @return void
250
-     */
251
-    abstract protected function _define_page_props();
252
-
253
-
254
-
255
-    /**
256
-     * _set_page_routes
257
-     * child classes use this to define the page routes for all subpages handled by the class.  Page routes are assigned to a action => method pairs in an array and to the $_page_routes property.  Each page route must also have a 'default'
258
-     * route. Here's the format
259
-     * $this->_page_routes = array(
260
-     *        'default' => array(
261
-     *            'func' => '_default_method_handling_route',
262
-     *            'args' => array('array','of','args'),
263
-     *            'noheader' => true, //add this in if this page route is processed before any headers are loaded (i.e. ajax request, backend processing)
264
-     *            'headers_sent_route'=>'headers_route_reference', //add this if noheader=>true, and you want to load a headers route after.  The string you enter here should match the defined route reference for a headers sent route.
265
-     *            'capability' => 'route_capability', //indicate a string for minimum capability required to access this route.
266
-     *            'obj_id' => 10 // if this route has an object id, then this can include it (used for capability checks).
267
-     *        ),
268
-     *        'insert_item' => '_method_for_handling_insert_item' //this can be used if all we need to have is a handling method.
269
-     *        )
270
-     * )
271
-     *
272
-     * @abstract
273
-     * @access protected
274
-     * @return void
275
-     */
276
-    abstract protected function _set_page_routes();
277
-
278
-
279
-
280
-    /**
281
-     * _set_page_config
282
-     * child classes use this to define the _page_config array for all subpages handled by the class. Each key in the array corresponds to the page_route for the loaded page.
283
-     * Format:
284
-     * $this->_page_config = array(
285
-     *        'default' => array(
286
-     *            'labels' => array(
287
-     *                'buttons' => array(
288
-     *                    'add' => __('label for adding item'),
289
-     *                    'edit' => __('label for editing item'),
290
-     *                    'delete' => __('label for deleting item')
291
-     *                ),
292
-     *                'publishbox' => __('Localized Title for Publish metabox', 'event_espresso')
293
-     *            ), //optional an array of custom labels for various automatically generated elements to use on the page. If this isn't present then the defaults will be used as set for the $this->_labels in _define_page_props() method
294
-     *            'nav' => array(
295
-     *                'label' => __('Label for Tab', 'event_espresso').
296
-     *                'url' => 'http://someurl', //automatically generated UNLESS you define
297
-     *                'css_class' => 'css-class', //automatically generated UNLESS you define
298
-     *                'order' => 10, //required to indicate tab position.
299
-     *                'persistent' => false //if you want the nav tab to ONLY display when the specific route is displayed then add this parameter.
300
-     *            'list_table' => 'name_of_list_table' //string for list table class to be loaded for this admin_page.
301
-     *            'metaboxes' => array('metabox1', 'metabox2'), //if present this key indicates we want to load metaboxes set for eventespresso admin pages.
302
-     *            'has_metaboxes' => true, //this boolean flag can simply be used to indicate if the route will have metaboxes.  Typically this is used if the 'metaboxes' index is not used because metaboxes are added later.  We just use
303
-     *            this flag to make sure the necessary js gets enqueued on page load.
304
-     *            'has_help_popups' => false //defaults(true) //this boolean flag can simply be used to indicate if the given route has help popups setup and if it does then we need to make sure thickbox is enqueued.
305
-     *            'columns' => array(4, 2), //this key triggers the setup of a page that uses columns (metaboxes).  The array indicates the max number of columns (4) and the default number of columns on page load (2).  There is an option
306
-     *            in the "screen_options" dropdown that is setup so users can pick what columns they want to display.
307
-     *            'help_tabs' => array( //this is used for adding help tabs to a page
308
-     *                'tab_id' => array(
309
-     *                    'title' => 'tab_title',
310
-     *                    'filename' => 'name_of_file_containing_content', //this is the primary method for setting help tab content.  The fallback if it isn't present is to try a the callback.  Filename should match a file in the admin
311
-     *                    folder's "help_tabs" dir (ie.. events/help_tabs/name_of_file_containing_content.help_tab.php)
312
-     *                    'callback' => 'callback_method_for_content', //if 'filename' isn't present then system will attempt to use the callback which should match the name of a method in the class
313
-     *                    ),
314
-     *                'tab2_id' => array(
315
-     *                    'title' => 'tab2 title',
316
-     *                    'filename' => 'file_name_2'
317
-     *                    'callback' => 'callback_method_for_content',
318
-     *                 ),
319
-     *            'help_sidebar' => 'callback_for_sidebar_content', //this is used for setting up the sidebar in the help tab area on an admin page. @link http://make.wordpress.org/core/2011/12/06/help-and-screen-api-changes-in-3-3/
320
-     *            'help_tour' => array(
321
-     *                'name_of_help_tour_class', //all help tours shoudl be a child class of EE_Help_Tour and located in a folder for this admin page named "help_tours", a file name matching the key given here
322
-     *                (name_of_help_tour_class.class.php), and class matching key given here (name_of_help_tour_class)
323
-     *            ),
324
-     *            'require_nonce' => TRUE //this is used if you want to set a route to NOT require a nonce (default is true if it isn't present).  To remove the requirement for a nonce check when this route is visited just set
325
-     *            'require_nonce' to FALSE
326
-     *            )
327
-     * )
328
-     *
329
-     * @abstract
330
-     * @access protected
331
-     * @return void
332
-     */
333
-    abstract protected function _set_page_config();
334
-
335
-
336
-
337
-
338
-
339
-    /** end sample help_tour methods **/
340
-    /**
341
-     * _add_screen_options
342
-     * Child classes can add any extra wp_screen_options within this method using built-in WP functions/methods for doing so.
343
-     * Note child classes can also define _add_screen_options_($this->_current_view) to limit screen options to a particular view.
344
-     *
345
-     * @link   http://chrismarslender.com/wp-tutorials/wordpress-screen-options-tutorial/
346
-     *         see also WP_Screen object documents...
347
-     * @link   http://codex.wordpress.org/Class_Reference/WP_Screen
348
-     * @abstract
349
-     * @access protected
350
-     * @return void
351
-     */
352
-    abstract protected function _add_screen_options();
353
-
354
-
355
-
356
-    /**
357
-     * _add_feature_pointers
358
-     * Child classes should use this method for implementing any "feature pointers" (using built-in WP styling js).
359
-     * Note child classes can also define _add_feature_pointers_($this->_current_view) to limit screen options to a particular view.
360
-     * Note: this is just a placeholder for now.  Implementation will come down the road
361
-     * See: WP_Internal_Pointers class in wp-admin/includes/template.php for example (its a final class so can't be extended) also see:
362
-     *
363
-     * @link   http://eamann.com/tech/wordpress-portland/
364
-     * @abstract
365
-     * @access protected
366
-     * @return void
367
-     */
368
-    abstract protected function _add_feature_pointers();
369
-
370
-
371
-
372
-    /**
373
-     * load_scripts_styles
374
-     * child classes put their wp_enqueue_script and wp_enqueue_style hooks in here for anything they need loaded for their pages/subpages.  Note this is for all pages/subpages of the system.  You can also load only specific scripts/styles
375
-     * per view by putting them in a dynamic function in this format (load_scripts_styles_{$this->_current_view}) which matches your page route (action request arg)
376
-     *
377
-     * @abstract
378
-     * @access public
379
-     * @return void
380
-     */
381
-    abstract public function load_scripts_styles();
382
-
383
-
384
-
385
-    /**
386
-     * admin_init
387
-     * Anything that should be set/executed at 'admin_init' WP hook runtime should be put in here.  This will apply to all pages/views loaded by child class.
388
-     *
389
-     * @abstract
390
-     * @access public
391
-     * @return void
392
-     */
393
-    abstract public function admin_init();
394
-
395
-
396
-
397
-    /**
398
-     * admin_notices
399
-     * Anything triggered by the 'admin_notices' WP hook should be put in here.  This particular method will apply to all pages/views loaded by child class.
400
-     *
401
-     * @abstract
402
-     * @access public
403
-     * @return void
404
-     */
405
-    abstract public function admin_notices();
406
-
407
-
408
-
409
-    /**
410
-     * admin_footer_scripts
411
-     * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method will apply to all pages/views loaded by child class.
412
-     *
413
-     * @access public
414
-     * @return void
415
-     */
416
-    abstract public function admin_footer_scripts();
417
-
418
-
419
-
420
-    /**
421
-     * admin_footer
422
-     * anything triggered by the 'admin_footer' WP action hook should be added to here. This particular method will apply to all pages/views loaded by child class.
423
-     *
424
-     * @access  public
425
-     * @return void
426
-     */
427
-    public function admin_footer()
428
-    {
429
-    }
430
-
431
-
432
-
433
-    /**
434
-     * _global_ajax_hooks
435
-     * all global add_action('wp_ajax_{name_of_hook}') hooks in here.
436
-     * Note: within the ajax callback methods.
437
-     *
438
-     * @abstract
439
-     * @access protected
440
-     * @return void
441
-     */
442
-    protected function _global_ajax_hooks()
443
-    {
444
-        //for lazy loading of metabox content
445
-        add_action('wp_ajax_espresso-ajax-content', array($this, 'ajax_metabox_content'), 10);
446
-    }
447
-
448
-
449
-
450
-    public function ajax_metabox_content()
451
-    {
452
-        $contentid = isset($this->_req_data['contentid']) ? $this->_req_data['contentid'] : '';
453
-        $url = isset($this->_req_data['contenturl']) ? $this->_req_data['contenturl'] : '';
454
-        self::cached_rss_display($contentid, $url);
455
-        wp_die();
456
-    }
457
-
458
-
459
-
460
-    /**
461
-     * _page_setup
462
-     * Makes sure any things that need to be loaded early get handled.  We also escape early here if the page requested doesn't match the object.
463
-     *
464
-     * @final
465
-     * @access protected
466
-     * @return void
467
-     */
468
-    final protected function _page_setup()
469
-    {
470
-        //requires?
471
-        //admin_init stuff - global - we're setting this REALLY early so if EE_Admin pages have to hook into other WP pages they can.  But keep in mind, not everything is available from the EE_Admin Page object at this point.
472
-        add_action('admin_init', array($this, 'admin_init_global'), 5);
473
-        //next verify if we need to load anything...
474
-        $this->_current_page = ! empty($_GET['page']) ? sanitize_key($_GET['page']) : '';
475
-        $this->page_folder = strtolower(str_replace('_Admin_Page', '', str_replace('Extend_', '', get_class($this))));
476
-        global $ee_menu_slugs;
477
-        $ee_menu_slugs = (array)$ee_menu_slugs;
478
-        if (( ! $this->_current_page || ! isset($ee_menu_slugs[$this->_current_page])) && ! defined('DOING_AJAX')) {
479
-            return;
480
-        }
481
-        // becuz WP List tables have two duplicate select inputs for choosing bulk actions, we need to copy the action from the second to the first
482
-        if (isset($this->_req_data['action2']) && $this->_req_data['action'] == -1) {
483
-            $this->_req_data['action'] = ! empty($this->_req_data['action2']) && $this->_req_data['action2'] != -1 ? $this->_req_data['action2'] : $this->_req_data['action'];
484
-        }
485
-        // then set blank or -1 action values to 'default'
486
-        $this->_req_action = isset($this->_req_data['action']) && ! empty($this->_req_data['action']) && $this->_req_data['action'] != -1 ? sanitize_key($this->_req_data['action']) : 'default';
487
-        //if action is 'default' after the above BUT we have  'route' var set, then let's use the route as the action.  This covers cases where we're coming in from a list table that isn't on the default route.
488
-        $this->_req_action = $this->_req_action === 'default' && isset($this->_req_data['route']) ? $this->_req_data['route'] : $this->_req_action;
489
-        //however if we are doing_ajax and we've got a 'route' set then that's what the req_action will be
490
-        $this->_req_action = defined('DOING_AJAX') && isset($this->_req_data['route']) ? $this->_req_data['route'] : $this->_req_action;
491
-        $this->_current_view = $this->_req_action;
492
-        $this->_req_nonce = $this->_req_action . '_nonce';
493
-        $this->_define_page_props();
494
-        $this->_current_page_view_url = add_query_arg(array('page' => $this->_current_page, 'action' => $this->_current_view), $this->_admin_base_url);
495
-        //default things
496
-        $this->_default_espresso_metaboxes = array('_espresso_news_post_box', '_espresso_links_post_box', '_espresso_ratings_request', '_espresso_sponsors_post_box');
497
-        //set page configs
498
-        $this->_set_page_routes();
499
-        $this->_set_page_config();
500
-        //let's include any referrer data in our default_query_args for this route for "stickiness".
501
-        if (isset($this->_req_data['wp_referer'])) {
502
-            $this->_default_route_query_args['wp_referer'] = $this->_req_data['wp_referer'];
503
-        }
504
-        //for caffeinated and other extended functionality.  If there is a _extend_page_config method then let's run that to modify the all the various page configuration arrays
505
-        if (method_exists($this, '_extend_page_config')) {
506
-            $this->_extend_page_config();
507
-        }
508
-        //for CPT and other extended functionality. If there is an _extend_page_config_for_cpt then let's run that to modify all the various page configuration arrays.
509
-        if (method_exists($this, '_extend_page_config_for_cpt')) {
510
-            $this->_extend_page_config_for_cpt();
511
-        }
512
-        //filter routes and page_config so addons can add their stuff. Filtering done per class
513
-        $this->_page_routes = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_routes', $this->_page_routes, $this);
514
-        $this->_page_config = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_config', $this->_page_config, $this);
515
-        //if AHEE__EE_Admin_Page__route_admin_request_$this->_current_view method is present then we call it hooked into the AHEE__EE_Admin_Page__route_admin_request action
516
-        if (method_exists($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view)) {
517
-            add_action('AHEE__EE_Admin_Page__route_admin_request', array($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view), 10, 2);
518
-        }
519
-        //next route only if routing enabled
520
-        if ($this->_routing && ! defined('DOING_AJAX')) {
521
-            $this->_verify_routes();
522
-            //next let's just check user_access and kill if no access
523
-            $this->check_user_access();
524
-            if ($this->_is_UI_request) {
525
-                //admin_init stuff - global, all views for this page class, specific view
526
-                add_action('admin_init', array($this, 'admin_init'), 10);
527
-                if (method_exists($this, 'admin_init_' . $this->_current_view)) {
528
-                    add_action('admin_init', array($this, 'admin_init_' . $this->_current_view), 15);
529
-                }
530
-            } else {
531
-                //hijack regular WP loading and route admin request immediately
532
-                @ini_set('memory_limit', apply_filters('admin_memory_limit', WP_MAX_MEMORY_LIMIT));
533
-                $this->route_admin_request();
534
-            }
535
-        }
536
-    }
537
-
538
-
539
-
540
-    /**
541
-     * Provides a way for related child admin pages to load stuff on the loaded admin page.
542
-     *
543
-     * @access private
544
-     * @return void
545
-     */
546
-    private function _do_other_page_hooks()
547
-    {
548
-        $registered_pages = apply_filters('FHEE_do_other_page_hooks_' . $this->page_slug, array());
549
-        foreach ($registered_pages as $page) {
550
-            //now let's setup the file name and class that should be present
551
-            $classname = str_replace('.class.php', '', $page);
552
-            //autoloaders should take care of loading file
553
-            if ( ! class_exists($classname)) {
554
-                $error_msg[] = sprintf( esc_html__('Something went wrong with loading the %s admin hooks page.', 'event_espresso'), $page);
555
-                $error_msg[] = $error_msg[0]
556
-                               . "\r\n"
557
-                               . sprintf( esc_html__('There is no class in place for the %1$s admin hooks page.%2$sMake sure you have %3$s defined. If this is a non-EE-core admin page then you also must have an autoloader in place for your class',
558
-                                'event_espresso'), $page, '<br />', '<strong>' . $classname . '</strong>');
559
-                throw new EE_Error(implode('||', $error_msg));
560
-            }
561
-            $a = new ReflectionClass($classname);
562
-            //notice we are passing the instance of this class to the hook object.
563
-            $hookobj[] = $a->newInstance($this);
564
-        }
565
-    }
566
-
567
-
568
-
569
-    public function load_page_dependencies()
570
-    {
571
-        try {
572
-            $this->_load_page_dependencies();
573
-        } catch (EE_Error $e) {
574
-            $e->get_error();
575
-        }
576
-    }
577
-
578
-
579
-
580
-    /**
581
-     * load_page_dependencies
582
-     * loads things specific to this page class when its loaded.  Really helps with efficiency.
583
-     *
584
-     * @access public
585
-     * @return void
586
-     */
587
-    protected function _load_page_dependencies()
588
-    {
589
-        //let's set the current_screen and screen options to override what WP set
590
-        $this->_current_screen = get_current_screen();
591
-        //load admin_notices - global, page class, and view specific
592
-        add_action('admin_notices', array($this, 'admin_notices_global'), 5);
593
-        add_action('admin_notices', array($this, 'admin_notices'), 10);
594
-        if (method_exists($this, 'admin_notices_' . $this->_current_view)) {
595
-            add_action('admin_notices', array($this, 'admin_notices_' . $this->_current_view), 15);
596
-        }
597
-        //load network admin_notices - global, page class, and view specific
598
-        add_action('network_admin_notices', array($this, 'network_admin_notices_global'), 5);
599
-        if (method_exists($this, 'network_admin_notices_' . $this->_current_view)) {
600
-            add_action('network_admin_notices', array($this, 'network_admin_notices_' . $this->_current_view));
601
-        }
602
-        //this will save any per_page screen options if they are present
603
-        $this->_set_per_page_screen_options();
604
-        //setup list table properties
605
-        $this->_set_list_table();
606
-        // child classes can "register" a metabox to be automatically handled via the _page_config array property.  However in some cases the metaboxes will need to be added within a route handling callback.
607
-        $this->_add_registered_meta_boxes();
608
-        $this->_add_screen_columns();
609
-        //add screen options - global, page child class, and view specific
610
-        $this->_add_global_screen_options();
611
-        $this->_add_screen_options();
612
-        if (method_exists($this, '_add_screen_options_' . $this->_current_view)) {
613
-            call_user_func(array($this, '_add_screen_options_' . $this->_current_view));
614
-        }
615
-        //add help tab(s) and tours- set via page_config and qtips.
616
-        $this->_add_help_tour();
617
-        $this->_add_help_tabs();
618
-        $this->_add_qtips();
619
-        //add feature_pointers - global, page child class, and view specific
620
-        $this->_add_feature_pointers();
621
-        $this->_add_global_feature_pointers();
622
-        if (method_exists($this, '_add_feature_pointer_' . $this->_current_view)) {
623
-            call_user_func(array($this, '_add_feature_pointer_' . $this->_current_view));
624
-        }
625
-        //enqueue scripts/styles - global, page class, and view specific
626
-        add_action('admin_enqueue_scripts', array($this, 'load_global_scripts_styles'), 5);
627
-        add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles'), 10);
628
-        if (method_exists($this, 'load_scripts_styles_' . $this->_current_view)) {
629
-            add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles_' . $this->_current_view), 15);
630
-        }
631
-        add_action('admin_enqueue_scripts', array($this, 'admin_footer_scripts_eei18n_js_strings'), 100);
632
-        //admin_print_footer_scripts - global, page child class, and view specific.  NOTE, despite the name, whenever possible, scripts should NOT be loaded using this.  In most cases that's doing_it_wrong().  But adding hidden container elements etc. is a good use case. Notice the late priority we're giving these
633
-        add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_global'), 99);
634
-        add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts'), 100);
635
-        if (method_exists($this, 'admin_footer_scripts_' . $this->_current_view)) {
636
-            add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_' . $this->_current_view), 101);
637
-        }
638
-        //admin footer scripts
639
-        add_action('admin_footer', array($this, 'admin_footer_global'), 99);
640
-        add_action('admin_footer', array($this, 'admin_footer'), 100);
641
-        if (method_exists($this, 'admin_footer_' . $this->_current_view)) {
642
-            add_action('admin_footer', array($this, 'admin_footer_' . $this->_current_view), 101);
643
-        }
644
-        do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load', $this->page_slug);
645
-        //targeted hook
646
-        do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load__' . $this->page_slug . '__' . $this->_req_action);
647
-    }
648
-
649
-
650
-
651
-    /**
652
-     * _set_defaults
653
-     * This sets some global defaults for class properties.
654
-     */
655
-    private function _set_defaults()
656
-    {
657
-        $this->_current_screen = $this->_admin_page_title = $this->_req_action = $this->_req_nonce = $this->_event = $this->_template_path = $this->_column_template_path = null;
658
-        $this->_nav_tabs = $this_views = $this->_page_routes = $this->_page_config = $this->_default_route_query_args = array();
659
-        $this->default_nav_tab_name = 'overview';
660
-        //init template args
661
-        $this->_template_args = array(
662
-                'admin_page_header'  => '',
663
-                'admin_page_content' => '',
664
-                'post_body_content'  => '',
665
-                'before_list_table'  => '',
666
-                'after_list_table'   => '',
667
-        );
668
-    }
669
-
670
-
671
-
672
-    /**
673
-     * route_admin_request
674
-     *
675
-     * @see    _route_admin_request()
676
-     * @access public
677
-     * @return void|exception error
678
-     */
679
-    public function route_admin_request()
680
-    {
681
-        try {
682
-            $this->_route_admin_request();
683
-        } catch (EE_Error $e) {
684
-            $e->get_error();
685
-        }
686
-    }
687
-
688
-
689
-
690
-    public function set_wp_page_slug($wp_page_slug)
691
-    {
692
-        $this->_wp_page_slug = $wp_page_slug;
693
-        //if in network admin then we need to append "-network" to the page slug. Why? Because that's how WP rolls...
694
-        if (is_network_admin()) {
695
-            $this->_wp_page_slug .= '-network';
696
-        }
697
-    }
698
-
699
-
700
-
701
-    /**
702
-     * _verify_routes
703
-     * All this method does is verify the incoming request and make sure that routes exist for it.  We do this early so we know if we need to drop out.
704
-     *
705
-     * @access protected
706
-     * @return void
707
-     */
708
-    protected function _verify_routes()
709
-    {
710
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
711
-        if ( ! $this->_current_page && ! defined('DOING_AJAX')) {
712
-            return false;
713
-        }
714
-        $this->_route = false;
715
-        $func = false;
716
-        $args = array();
717
-        // check that the page_routes array is not empty
718
-        if (empty($this->_page_routes)) {
719
-            // user error msg
720
-            $error_msg = sprintf(__('No page routes have been set for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
721
-            // developer error msg
722
-            $error_msg .= '||' . $error_msg . __(' Make sure the "set_page_routes()" method exists, and is setting the "_page_routes" array properly.', 'event_espresso');
723
-            throw new EE_Error($error_msg);
724
-        }
725
-        // and that the requested page route exists
726
-        if (array_key_exists($this->_req_action, $this->_page_routes)) {
727
-            $this->_route = $this->_page_routes[$this->_req_action];
728
-            $this->_route_config = isset($this->_page_config[$this->_req_action]) ? $this->_page_config[$this->_req_action] : array();
729
-        } else {
730
-            // user error msg
731
-            $error_msg = sprintf(__('The requested page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
732
-            // developer error msg
733
-            $error_msg .= '||' . $error_msg . sprintf(__(' Create a key in the "_page_routes" array named "%s" and set its value to the appropriate method.', 'event_espresso'), $this->_req_action);
734
-            throw new EE_Error($error_msg);
735
-        }
736
-        // and that a default route exists
737
-        if ( ! array_key_exists('default', $this->_page_routes)) {
738
-            // user error msg
739
-            $error_msg = sprintf(__('A default page route has not been set for the % admin page.', 'event_espresso'), $this->_admin_page_title);
740
-            // developer error msg
741
-            $error_msg .= '||' . $error_msg . __(' Create a key in the "_page_routes" array named "default" and set its value to your default page method.', 'event_espresso');
742
-            throw new EE_Error($error_msg);
743
-        }
744
-        //first lets' catch if the UI request has EVER been set.
745
-        if ($this->_is_UI_request === null) {
746
-            //lets set if this is a UI request or not.
747
-            $this->_is_UI_request = ( ! isset($this->_req_data['noheader']) || $this->_req_data['noheader'] !== true) ? true : false;
748
-            //wait a minute... we might have a noheader in the route array
749
-            $this->_is_UI_request = is_array($this->_route) && isset($this->_route['noheader']) && $this->_route['noheader'] ? false : $this->_is_UI_request;
750
-        }
751
-        $this->_set_current_labels();
752
-    }
753
-
754
-
755
-
756
-    /**
757
-     * this method simply verifies a given route and makes sure its an actual route available for the loaded page
758
-     *
759
-     * @param  string $route the route name we're verifying
760
-     * @return mixed  (bool|Exception)      we'll throw an exception if this isn't a valid route.
761
-     */
762
-    protected function _verify_route($route)
763
-    {
764
-        if (array_key_exists($this->_req_action, $this->_page_routes)) {
765
-            return true;
766
-        } else {
767
-            // user error msg
768
-            $error_msg = sprintf(__('The given page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
769
-            // developer error msg
770
-            $error_msg .= '||' . $error_msg . sprintf(__(' Check the route you are using in your method (%s) and make sure it matches a route set in your "_page_routes" array property', 'event_espresso'), $route);
771
-            throw new EE_Error($error_msg);
772
-        }
773
-    }
774
-
775
-
776
-
777
-    /**
778
-     * perform nonce verification
779
-     * This method has be encapsulated here so that any ajax requests that bypass normal routes can verify their nonces using this method (and save retyping!)
780
-     *
781
-     * @param  string $nonce     The nonce sent
782
-     * @param  string $nonce_ref The nonce reference string (name0)
783
-     * @return mixed (bool|die)
784
-     */
785
-    protected function _verify_nonce($nonce, $nonce_ref)
786
-    {
787
-        // verify nonce against expected value
788
-        if ( ! wp_verify_nonce($nonce, $nonce_ref)) {
789
-            // these are not the droids you are looking for !!!
790
-            $msg = sprintf(__('%sNonce Fail.%s', 'event_espresso'), '<a href="http://www.youtube.com/watch?v=56_S0WeTkzs">', '</a>');
791
-            if (WP_DEBUG) {
792
-                $msg .= "\n  " . sprintf(__('In order to dynamically generate nonces for your actions, use the %s::add_query_args_and_nonce() method. May the Nonce be with you!', 'event_espresso'), __CLASS__);
793
-            }
794
-            if ( ! defined('DOING_AJAX')) {
795
-                wp_die($msg);
796
-            } else {
797
-                EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
798
-                $this->_return_json();
799
-            }
800
-        }
801
-    }
802
-
803
-
804
-
805
-    /**
806
-     * _route_admin_request()
807
-     * Meat and potatoes of the class.  Basically, this dude checks out what's being requested and sees if theres are
808
-     * some doodads to work the magic and handle the flingjangy. Translation:  Checks if the requested action is listed
809
-     * in the page routes and then will try to load the corresponding method.
810
-     *
811
-     * @access protected
812
-     * @return void
813
-     * @throws \EE_Error
814
-     */
815
-    protected function _route_admin_request()
816
-    {
817
-        if ( ! $this->_is_UI_request) {
818
-            $this->_verify_routes();
819
-        }
820
-        $nonce_check = isset($this->_route_config['require_nonce'])
821
-            ? $this->_route_config['require_nonce']
822
-            : true;
823
-        if ($this->_req_action !== 'default' && $nonce_check) {
824
-            // set nonce from post data
825
-            $nonce = isset($this->_req_data[$this->_req_nonce])
826
-                ? sanitize_text_field($this->_req_data[$this->_req_nonce])
827
-                : '';
828
-            $this->_verify_nonce($nonce, $this->_req_nonce);
829
-        }
830
-        //set the nav_tabs array but ONLY if this is  UI_request
831
-        if ($this->_is_UI_request) {
832
-            $this->_set_nav_tabs();
833
-        }
834
-        // grab callback function
835
-        $func = is_array($this->_route) ? $this->_route['func'] : $this->_route;
836
-        // check if callback has args
837
-        $args = is_array($this->_route) && isset($this->_route['args']) ? $this->_route['args'] : array();
838
-        $error_msg = '';
839
-        // action right before calling route
840
-        // (hook is something like 'AHEE__Registrations_Admin_Page__route_admin_request')
841
-        if ( ! did_action('AHEE__EE_Admin_Page__route_admin_request')) {
842
-            do_action('AHEE__EE_Admin_Page__route_admin_request', $this->_current_view, $this);
843
-        }
844
-        // right before calling the route, let's remove _wp_http_referer from the
845
-        // $_SERVER[REQUEST_URI] global (its now in _req_data for route processing).
846
-        $_SERVER['REQUEST_URI'] = remove_query_arg('_wp_http_referer', wp_unslash($_SERVER['REQUEST_URI']));
847
-        if ( ! empty($func)) {
848
-            if (is_array($func)) {
849
-                list($class, $method) = $func;
850
-            } else if (strpos($func, '::') !== false) {
851
-                list($class, $method) = explode('::', $func);
852
-            } else {
853
-                $class = $this;
854
-                $method = $func;
855
-            }
856
-            if ( ! (is_object($class) && $class === $this)) {
857
-                // send along this admin page object for access by addons.
858
-                $args['admin_page_object'] = $this;
859
-            }
860
-
861
-            if (
862
-                //is it a method on a class that doesn't work?
863
-                (
864
-                    (
865
-                        method_exists($class, $method)
866
-                        && call_user_func_array(array($class, $method), $args) === false
867
-                    )
868
-                    && (
869
-                        //is it a standalone function that doesn't work?
870
-                        function_exists($method)
871
-                        && call_user_func_array($func, array_merge(array('admin_page_object' => $this), $args)) === false
872
-                    )
873
-                )
874
-                || (
875
-                    //is it neither a class method NOR a standalone function?
876
-                    ! method_exists($class, $method)
877
-                    && ! function_exists($method)
878
-                )
879
-            ) {
880
-                // user error msg
881
-                $error_msg = __('An error occurred. The  requested page route could not be found.', 'event_espresso');
882
-                // developer error msg
883
-                $error_msg .= '||';
884
-                $error_msg .= sprintf(
885
-                    __(
886
-                        'Page route "%s" could not be called. Check that the spelling for method names and actions in the "_page_routes" array are all correct.',
887
-                        'event_espresso'
888
-                    ),
889
-                    $method
890
-                );
891
-            }
892
-            if ( ! empty($error_msg)) {
893
-                throw new EE_Error($error_msg);
894
-            }
895
-        }
896
-        //if we've routed and this route has a no headers route AND a sent_headers_route, then we need to reset the routing properties to the new route.
897
-        //now if UI request is FALSE and noheader is true AND we have a headers_sent_route in the route array then let's set UI_request to true because the no header route has a second func after headers have been sent.
898
-        if ($this->_is_UI_request === false
899
-            && is_array($this->_route)
900
-            && ! empty($this->_route['headers_sent_route'])
901
-        ) {
902
-            $this->_reset_routing_properties($this->_route['headers_sent_route']);
903
-        }
904
-    }
905
-
906
-
907
-
908
-    /**
909
-     * This method just allows the resetting of page properties in the case where a no headers
910
-     * route redirects to a headers route in its route config.
911
-     *
912
-     * @since   4.3.0
913
-     * @param  string $new_route New (non header) route to redirect to.
914
-     * @return   void
915
-     */
916
-    protected function _reset_routing_properties($new_route)
917
-    {
918
-        $this->_is_UI_request = true;
919
-        //now we set the current route to whatever the headers_sent_route is set at
920
-        $this->_req_data['action'] = $new_route;
921
-        //rerun page setup
922
-        $this->_page_setup();
923
-    }
924
-
925
-
926
-
927
-    /**
928
-     * _add_query_arg
929
-     * adds nonce to array of arguments then calls WP add_query_arg function
930
-     *(internally just uses EEH_URL's function with the same name)
931
-     *
932
-     * @access public
933
-     * @param array  $args
934
-     * @param string $url
935
-     * @param bool   $sticky                  if true, then the existing Request params will be appended to the generated
936
-     *                                        url in an associative array indexed by the key 'wp_referer';
937
-     *                                        Example usage:
938
-     *                                        If the current page is:
939
-     *                                        http://mydomain.com/wp-admin/admin.php?page=espresso_registrations
940
-     *                                        &action=default&event_id=20&month_range=March%202015
941
-     *                                        &_wpnonce=5467821
942
-     *                                        and you call:
943
-     *                                        EE_Admin_Page::add_query_args_and_nonce(
944
-     *                                        array(
945
-     *                                        'action' => 'resend_something',
946
-     *                                        'page=>espresso_registrations'
947
-     *                                        ),
948
-     *                                        $some_url,
949
-     *                                        true
950
-     *                                        );
951
-     *                                        It will produce a url in this structure:
952
-     *                                        http://{$some_url}/?page=espresso_registrations&action=resend_something
953
-     *                                        &wp_referer[action]=default&wp_referer[event_id]=20&wpreferer[
954
-     *                                        month_range]=March%202015
955
-     * @param   bool $exclude_nonce           If true, the the nonce will be excluded from the generated nonce.
956
-     * @return string
957
-     */
958
-    public static function add_query_args_and_nonce($args = array(), $url = false, $sticky = false, $exclude_nonce = false)
959
-    {
960
-        //if there is a _wp_http_referer include the values from the request but only if sticky = true
961
-        if ($sticky) {
962
-            $request = $_REQUEST;
963
-            unset($request['_wp_http_referer']);
964
-            unset($request['wp_referer']);
965
-            foreach ($request as $key => $value) {
966
-                //do not add nonces
967
-                if (strpos($key, 'nonce') !== false) {
968
-                    continue;
969
-                }
970
-                $args['wp_referer[' . $key . ']'] = $value;
971
-            }
972
-        }
973
-        return EEH_URL::add_query_args_and_nonce($args, $url, $exclude_nonce);
974
-    }
975
-
976
-
977
-
978
-    /**
979
-     * This returns a generated link that will load the related help tab.
980
-     *
981
-     * @param  string $help_tab_id the id for the connected help tab
982
-     * @param  string $icon_style  (optional) include css class for the style you want to use for the help icon.
983
-     * @param  string $help_text   (optional) send help text you want to use for the link if default not to be used
984
-     * @uses EEH_Template::get_help_tab_link()
985
-     * @return string              generated link
986
-     */
987
-    protected function _get_help_tab_link($help_tab_id, $icon_style = false, $help_text = false)
988
-    {
989
-        return EEH_Template::get_help_tab_link($help_tab_id, $this->page_slug, $this->_req_action, $icon_style, $help_text);
990
-    }
991
-
992
-
993
-
994
-    /**
995
-     * _add_help_tabs
996
-     * Note child classes define their help tabs within the page_config array.
997
-     *
998
-     * @link   http://codex.wordpress.org/Function_Reference/add_help_tab
999
-     * @access protected
1000
-     * @return void
1001
-     */
1002
-    protected function _add_help_tabs()
1003
-    {
1004
-        $tour_buttons = '';
1005
-        if (isset($this->_page_config[$this->_req_action])) {
1006
-            $config = $this->_page_config[$this->_req_action];
1007
-            //is there a help tour for the current route?  if there is let's setup the tour buttons
1008
-            if (isset($this->_help_tour[$this->_req_action])) {
1009
-                $tb = array();
1010
-                $tour_buttons = '<div class="ee-abs-container"><div class="ee-help-tour-restart-buttons">';
1011
-                foreach ($this->_help_tour['tours'] as $tour) {
1012
-                    //if this is the end tour then we don't need to setup a button
1013
-                    if ($tour instanceof EE_Help_Tour_final_stop) {
1014
-                        continue;
1015
-                    }
1016
-                    $tb[] = '<button id="trigger-tour-' . $tour->get_slug() . '" class="button-primary trigger-ee-help-tour">' . $tour->get_label() . '</button>';
1017
-                }
1018
-                $tour_buttons .= implode('<br />', $tb);
1019
-                $tour_buttons .= '</div></div>';
1020
-            }
1021
-            // let's see if there is a help_sidebar set for the current route and we'll set that up for usage as well.
1022
-            if (is_array($config) && isset($config['help_sidebar'])) {
1023
-                //check that the callback given is valid
1024
-                if ( ! method_exists($this, $config['help_sidebar'])) {
1025
-                    throw new EE_Error(sprintf(__('The _page_config array has a callback set for the "help_sidebar" option.  However the callback given (%s) is not a valid callback.  Doublecheck the spelling and make sure this method exists for the class %s',
1026
-                            'event_espresso'), $config['help_sidebar'], get_class($this)));
1027
-                }
1028
-                $content = apply_filters('FHEE__' . get_class($this) . '__add_help_tabs__help_sidebar', call_user_func(array($this, $config['help_sidebar'])));
1029
-                $content .= $tour_buttons; //add help tour buttons.
1030
-                //do we have any help tours setup?  Cause if we do we want to add the buttons
1031
-                $this->_current_screen->set_help_sidebar($content);
1032
-            }
1033
-            //if we DON'T have config help sidebar and there ARE toure buttons then we'll just add the tour buttons to the sidebar.
1034
-            if ( ! isset($config['help_sidebar']) && ! empty($tour_buttons)) {
1035
-                $this->_current_screen->set_help_sidebar($tour_buttons);
1036
-            }
1037
-            //handle if no help_tabs are set so the sidebar will still show for the help tour buttons
1038
-            if ( ! isset($config['help_tabs']) && ! empty($tour_buttons)) {
1039
-                $_ht['id'] = $this->page_slug;
1040
-                $_ht['title'] = __('Help Tours', 'event_espresso');
1041
-                $_ht['content'] = '<p>' . __('The buttons to the right allow you to start/restart any help tours available for this page', 'event_espresso') . '</p>';
1042
-                $this->_current_screen->add_help_tab($_ht);
1043
-            }/**/
1044
-            if ( ! isset($config['help_tabs'])) {
1045
-                return;
1046
-            } //no help tabs for this route
1047
-            foreach ((array)$config['help_tabs'] as $tab_id => $cfg) {
1048
-                //we're here so there ARE help tabs!
1049
-                //make sure we've got what we need
1050
-                if ( ! isset($cfg['title'])) {
1051
-                    throw new EE_Error(__('The _page_config array is not set up properly for help tabs.  It is missing a title', 'event_espresso'));
1052
-                }
1053
-                if ( ! isset($cfg['filename']) && ! isset($cfg['callback']) && ! isset($cfg['content'])) {
1054
-                    throw new EE_Error(__('The _page_config array is not setup properly for help tabs. It is missing a either a filename reference, or a callback reference or a content reference so there is no way to know the content for the help tab',
1055
-                            'event_espresso'));
1056
-                }
1057
-                //first priority goes to content.
1058
-                if ( ! empty($cfg['content'])) {
1059
-                    $content = ! empty($cfg['content']) ? $cfg['content'] : null;
1060
-                    //second priority goes to filename
1061
-                } else if ( ! empty($cfg['filename'])) {
1062
-                    $file_path = $this->_get_dir() . '/help_tabs/' . $cfg['filename'] . '.help_tab.php';
1063
-                    //it's possible that the file is located on decaf route (and above sets up for caf route, if this is the case then lets check decaf route too)
1064
-                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tabs/' . $cfg['filename'] . '.help_tab.php' : $file_path;
1065
-                    //if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1066
-                    if ( ! is_readable($file_path) && ! isset($cfg['callback'])) {
1067
-                        EE_Error::add_error(sprintf(__('The filename given for the help tab %s is not a valid file and there is no other configuration for the tab content.  Please check that the string you set for the help tab on this route (%s) is the correct spelling.  The file should be in %s',
1068
-                                'event_espresso'), $tab_id, key($config), $file_path), __FILE__, __FUNCTION__, __LINE__);
1069
-                        return;
1070
-                    }
1071
-                    $template_args['admin_page_obj'] = $this;
1072
-                    $content = EEH_Template::display_template($file_path, $template_args, true);
1073
-                } else {
1074
-                    $content = '';
1075
-                }
1076
-                //check if callback is valid
1077
-                if (empty($content) && ( ! isset($cfg['callback']) || ! method_exists($this, $cfg['callback']))) {
1078
-                    EE_Error::add_error(sprintf(__('The callback given for a %s help tab on this page does not content OR a corresponding method for generating the content.  Check the spelling or make sure the method is present.',
1079
-                            'event_espresso'), $cfg['title']), __FILE__, __FUNCTION__, __LINE__);
1080
-                    return;
1081
-                }
1082
-                //setup config array for help tab method
1083
-                $id = $this->page_slug . '-' . $this->_req_action . '-' . $tab_id;
1084
-                $_ht = array(
1085
-                        'id'       => $id,
1086
-                        'title'    => $cfg['title'],
1087
-                        'callback' => isset($cfg['callback']) && empty($content) ? array($this, $cfg['callback']) : null,
1088
-                        'content'  => $content,
1089
-                );
1090
-                $this->_current_screen->add_help_tab($_ht);
1091
-            }
1092
-        }
1093
-    }
1094
-
1095
-
1096
-
1097
-    /**
1098
-     * This basically checks loaded $_page_config property to see if there are any help_tours defined.  "help_tours" is an array with properties for setting up usage of the joyride plugin
1099
-     *
1100
-     * @link   http://zurb.com/playground/jquery-joyride-feature-tour-plugin
1101
-     * @see    instructions regarding the format and construction of the "help_tour" array element is found in the _set_page_config() comments
1102
-     * @access protected
1103
-     * @return void
1104
-     */
1105
-    protected function _add_help_tour()
1106
-    {
1107
-        $tours = array();
1108
-        $this->_help_tour = array();
1109
-        //exit early if help tours are turned off globally
1110
-        if ( ! EE_Registry::instance()->CFG->admin->help_tour_activation || (defined('EE_DISABLE_HELP_TOURS') && EE_DISABLE_HELP_TOURS)) {
1111
-            return;
1112
-        }
1113
-        //loop through _page_config to find any help_tour defined
1114
-        foreach ($this->_page_config as $route => $config) {
1115
-            //we're only going to set things up for this route
1116
-            if ($route !== $this->_req_action) {
1117
-                continue;
1118
-            }
1119
-            if (isset($config['help_tour'])) {
1120
-                foreach ($config['help_tour'] as $tour) {
1121
-                    $file_path = $this->_get_dir() . '/help_tours/' . $tour . '.class.php';
1122
-                    //let's see if we can get that file... if not its possible this is a decaf route not set in caffienated so lets try and get the caffeinated equivalent
1123
-                    $file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tours/' . $tour . '.class.php' : $file_path;
1124
-                    //if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1125
-                    if ( ! is_readable($file_path)) {
1126
-                        EE_Error::add_error(sprintf(__('The file path given for the help tour (%s) is not a valid path.  Please check that the string you set for the help tour on this route (%s) is the correct spelling', 'event_espresso'),
1127
-                                $file_path, $tour), __FILE__, __FUNCTION__, __LINE__);
1128
-                        return;
1129
-                    }
1130
-                    require_once $file_path;
1131
-                    if ( ! class_exists($tour)) {
1132
-                        $error_msg[] = sprintf(__('Something went wrong with loading the %s Help Tour Class.', 'event_espresso'), $tour);
1133
-                        $error_msg[] = $error_msg[0] . "\r\n" . sprintf(__('There is no class in place for the %s help tour.%s Make sure you have <strong>%s</strong> defined in the "help_tour" array for the %s route of the % admin page.',
1134
-                                        'event_espresso'), $tour, '<br />', $tour, $this->_req_action, get_class($this));
1135
-                        throw new EE_Error(implode('||', $error_msg));
1136
-                    }
1137
-                    $a = new ReflectionClass($tour);
1138
-                    $tour_obj = $a->newInstance($this->_is_caf);
1139
-                    $tours[] = $tour_obj;
1140
-                    $this->_help_tour[$route][] = EEH_Template::help_tour_stops_generator($tour_obj);
1141
-                }
1142
-                //let's inject the end tour stop element common to all pages... this will only get seen once per machine.
1143
-                $end_stop_tour = new EE_Help_Tour_final_stop($this->_is_caf);
1144
-                $tours[] = $end_stop_tour;
1145
-                $this->_help_tour[$route][] = EEH_Template::help_tour_stops_generator($end_stop_tour);
1146
-            }
1147
-        }
1148
-        if ( ! empty($tours)) {
1149
-            $this->_help_tour['tours'] = $tours;
1150
-        }
1151
-        //thats it!  Now that the $_help_tours property is set (or not) the scripts and html should be taken care of automatically.
1152
-    }
1153
-
1154
-
1155
-
1156
-    /**
1157
-     * This simply sets up any qtips that have been defined in the page config
1158
-     *
1159
-     * @access protected
1160
-     * @return void
1161
-     */
1162
-    protected function _add_qtips()
1163
-    {
1164
-        if (isset($this->_route_config['qtips'])) {
1165
-            $qtips = (array)$this->_route_config['qtips'];
1166
-            //load qtip loader
1167
-            $path = array(
1168
-                    $this->_get_dir() . '/qtips/',
1169
-                    EE_ADMIN_PAGES . basename($this->_get_dir()) . '/qtips/',
1170
-            );
1171
-            EEH_Qtip_Loader::instance()->register($qtips, $path);
1172
-        }
1173
-    }
1174
-
1175
-
1176
-
1177
-    /**
1178
-     * _set_nav_tabs
1179
-     * This sets up the nav tabs from the page_routes array.  This method can be overwritten by child classes if you wish to add additional tabs or modify accordingly.
1180
-     *
1181
-     * @access protected
1182
-     * @return void
1183
-     */
1184
-    protected function _set_nav_tabs()
1185
-    {
1186
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1187
-        $i = 0;
1188
-        foreach ($this->_page_config as $slug => $config) {
1189
-            if ( ! is_array($config) || (is_array($config) && (isset($config['nav']) && ! $config['nav']) || ! isset($config['nav']))) {
1190
-                continue;
1191
-            } //no nav tab for this config
1192
-            //check for persistent flag
1193
-            if (isset($config['nav']['persistent']) && ! $config['nav']['persistent'] && $slug !== $this->_req_action) {
1194
-                continue;
1195
-            } //nav tab is only to appear when route requested.
1196
-            if ( ! $this->check_user_access($slug, true)) {
1197
-                continue;
1198
-            } //no nav tab becasue current user does not have access.
1199
-            $css_class = isset($config['css_class']) ? $config['css_class'] . ' ' : '';
1200
-            $this->_nav_tabs[$slug] = array(
1201
-                    'url'       => isset($config['nav']['url']) ? $config['nav']['url'] : self::add_query_args_and_nonce(array('action' => $slug), $this->_admin_base_url),
1202
-                    'link_text' => isset($config['nav']['label']) ? $config['nav']['label'] : ucwords(str_replace('_', ' ', $slug)),
1203
-                    'css_class' => $this->_req_action == $slug ? $css_class . 'nav-tab-active' : $css_class,
1204
-                    'order'     => isset($config['nav']['order']) ? $config['nav']['order'] : $i,
1205
-            );
1206
-            $i++;
1207
-        }
1208
-        //if $this->_nav_tabs is empty then lets set the default
1209
-        if (empty($this->_nav_tabs)) {
1210
-            $this->_nav_tabs[$this->default_nav_tab_name] = array(
1211
-                    'url'       => $this->admin_base_url,
1212
-                    'link_text' => ucwords(str_replace('_', ' ', $this->default_nav_tab_name)),
1213
-                    'css_class' => 'nav-tab-active',
1214
-                    'order'     => 10,
1215
-            );
1216
-        }
1217
-        //now let's sort the tabs according to order
1218
-        usort($this->_nav_tabs, array($this, '_sort_nav_tabs'));
1219
-    }
1220
-
1221
-
1222
-
1223
-    /**
1224
-     * _set_current_labels
1225
-     * This method modifies the _labels property with any optional specific labels indicated in the _page_routes property array
1226
-     *
1227
-     * @access private
1228
-     * @return void
1229
-     */
1230
-    private function _set_current_labels()
1231
-    {
1232
-        if (is_array($this->_route_config) && isset($this->_route_config['labels'])) {
1233
-            foreach ($this->_route_config['labels'] as $label => $text) {
1234
-                if (is_array($text)) {
1235
-                    foreach ($text as $sublabel => $subtext) {
1236
-                        $this->_labels[$label][$sublabel] = $subtext;
1237
-                    }
1238
-                } else {
1239
-                    $this->_labels[$label] = $text;
1240
-                }
1241
-            }
1242
-        }
1243
-    }
1244
-
1245
-
1246
-
1247
-    /**
1248
-     *        verifies user access for this admin page
1249
-     *
1250
-     * @param string $route_to_check if present then the capability for the route matching this string is checked.
1251
-     * @param bool   $verify_only    Default is FALSE which means if user check fails then wp_die().  Otherwise just return false if verify fail.
1252
-     * @return        BOOL|wp_die()
1253
-     */
1254
-    public function check_user_access($route_to_check = '', $verify_only = false)
1255
-    {
1256
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1257
-        $route_to_check = empty($route_to_check) ? $this->_req_action : $route_to_check;
1258
-        $capability = ! empty($route_to_check) && isset($this->_page_routes[$route_to_check]) && is_array($this->_page_routes[$route_to_check]) && ! empty($this->_page_routes[$route_to_check]['capability'])
1259
-                ? $this->_page_routes[$route_to_check]['capability'] : null;
1260
-        if (empty($capability) && empty($route_to_check)) {
1261
-            $capability = is_array($this->_route) && empty($this->_route['capability']) ? 'manage_options' : $this->_route['capability'];
1262
-        } else {
1263
-            $capability = empty($capability) ? 'manage_options' : $capability;
1264
-        }
1265
-        $id = is_array($this->_route) && ! empty($this->_route['obj_id']) ? $this->_route['obj_id'] : 0;
1266
-        if (( ! function_exists('is_admin') || ! EE_Registry::instance()->CAP->current_user_can($capability, $this->page_slug . '_' . $route_to_check, $id)) && ! defined('DOING_AJAX')) {
1267
-            if ($verify_only) {
1268
-                return false;
1269
-            } else {
1270
-                if ( is_user_logged_in() ) {
1271
-                    wp_die(__('You do not have access to this route.', 'event_espresso'));
1272
-                } else {
1273
-                    return false;
1274
-                }
1275
-            }
1276
-        }
1277
-        return true;
1278
-    }
1279
-
1280
-
1281
-
1282
-    /**
1283
-     * admin_init_global
1284
-     * This runs all the code that we want executed within the WP admin_init hook.
1285
-     * This method executes for ALL EE Admin pages.
1286
-     *
1287
-     * @access public
1288
-     * @return void
1289
-     */
1290
-    public function admin_init_global()
1291
-    {
1292
-    }
1293
-
1294
-
1295
-
1296
-    /**
1297
-     * wp_loaded_global
1298
-     * This runs all the code that we want executed within the WP wp_loaded hook.  This method is optional for an EE_Admin page and will execute on every EE Admin Page load
1299
-     *
1300
-     * @access public
1301
-     * @return void
1302
-     */
1303
-    public function wp_loaded()
1304
-    {
1305
-    }
1306
-
1307
-
1308
-
1309
-    /**
1310
-     * admin_notices
1311
-     * Anything triggered by the 'admin_notices' WP hook should be put in here.  This particular method will apply on ALL EE_Admin pages.
1312
-     *
1313
-     * @access public
1314
-     * @return void
1315
-     */
1316
-    public function admin_notices_global()
1317
-    {
1318
-        $this->_display_no_javascript_warning();
1319
-        $this->_display_espresso_notices();
1320
-    }
1321
-
1322
-
1323
-
1324
-    public function network_admin_notices_global()
1325
-    {
1326
-        $this->_display_no_javascript_warning();
1327
-        $this->_display_espresso_notices();
1328
-    }
1329
-
1330
-
1331
-
1332
-    /**
1333
-     * admin_footer_scripts_global
1334
-     * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method will apply on ALL EE_Admin pages.
1335
-     *
1336
-     * @access public
1337
-     * @return void
1338
-     */
1339
-    public function admin_footer_scripts_global()
1340
-    {
1341
-        $this->_add_admin_page_ajax_loading_img();
1342
-        $this->_add_admin_page_overlay();
1343
-        //if metaboxes are present we need to add the nonce field
1344
-        if ((isset($this->_route_config['metaboxes']) || (isset($this->_route_config['has_metaboxes']) && $this->_route_config['has_metaboxes']) || isset($this->_route_config['list_table']))) {
1345
-            wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
1346
-            wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
1347
-        }
1348
-    }
1349
-
1350
-
1351
-
1352
-    /**
1353
-     * admin_footer_global
1354
-     * Anything triggered by the wp 'admin_footer' wp hook should be put in here. This particluar method will apply on ALL EE_Admin Pages.
1355
-     *
1356
-     * @access  public
1357
-     * @return  void
1358
-     */
1359
-    public function admin_footer_global()
1360
-    {
1361
-        //dialog container for dialog helper
1362
-        $d_cont = '<div class="ee-admin-dialog-container auto-hide hidden">' . "\n";
1363
-        $d_cont .= '<div class="ee-notices"></div>';
1364
-        $d_cont .= '<div class="ee-admin-dialog-container-inner-content"></div>';
1365
-        $d_cont .= '</div>';
1366
-        echo $d_cont;
1367
-        //help tour stuff?
1368
-        if (isset($this->_help_tour[$this->_req_action])) {
1369
-            echo implode('<br />', $this->_help_tour[$this->_req_action]);
1370
-        }
1371
-        //current set timezone for timezone js
1372
-        echo '<span id="current_timezone" class="hidden">' . EEH_DTT_Helper::get_timezone() . '</span>';
1373
-    }
1374
-
1375
-
1376
-
1377
-    /**
1378
-     * This function sees if there is a method for help popup content existing for the given route.  If there is then we'll use the retrieved array to output the content using the template.
1379
-     * For child classes:
1380
-     * If you want to have help popups then in your templates or your content you set "triggers" for the content using the "_set_help_trigger('help_trigger_id')" where "help_trigger_id" is what you will use later in your custom method for
1381
-     * the help popup content on that page. Then in your Child_Admin_Page class you need to define a help popup method for the content in the format "_help_popup_content_{route_name}()"  So if you are setting help content for the
1382
-     * 'edit_event' route you should have a method named "_help_popup_content_edit_route". In your defined "help_popup_content_..." method.  You must prepare and return an array in the following format array(
1383
-     *    'help_trigger_id' => array(
1384
-     *        'title' => __('localized title for popup', 'event_espresso'),
1385
-     *        'content' => __('localized content for popup', 'event_espresso')
1386
-     *    )
1387
-     * );
1388
-     * Then the EE_Admin_Parent will take care of making sure that is setup properly on the correct route.
1389
-     *
1390
-     * @access protected
1391
-     * @return string content
1392
-     */
1393
-    protected function _set_help_popup_content($help_array = array(), $display = false)
1394
-    {
1395
-        $content = '';
1396
-        $help_array = empty($help_array) ? $this->_get_help_content() : $help_array;
1397
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_help_popup.template.php';
1398
-        //loop through the array and setup content
1399
-        foreach ($help_array as $trigger => $help) {
1400
-            //make sure the array is setup properly
1401
-            if ( ! isset($help['title']) || ! isset($help['content'])) {
1402
-                throw new EE_Error(__('Does not look like the popup content array has been setup correctly.  Might want to double check that.  Read the comments for the _get_help_popup_content method found in "EE_Admin_Page" class',
1403
-                        'event_espresso'));
1404
-            }
1405
-            //we're good so let'd setup the template vars and then assign parsed template content to our content.
1406
-            $template_args = array(
1407
-                    'help_popup_id'      => $trigger,
1408
-                    'help_popup_title'   => $help['title'],
1409
-                    'help_popup_content' => $help['content'],
1410
-            );
1411
-            $content .= EEH_Template::display_template($template_path, $template_args, true);
1412
-        }
1413
-        if ($display) {
1414
-            echo $content;
1415
-        } else {
1416
-            return $content;
1417
-        }
1418
-    }
1419
-
1420
-
1421
-
1422
-    /**
1423
-     * All this does is retrive the help content array if set by the EE_Admin_Page child
1424
-     *
1425
-     * @access private
1426
-     * @return array properly formatted array for help popup content
1427
-     */
1428
-    private function _get_help_content()
1429
-    {
1430
-        //what is the method we're looking for?
1431
-        $method_name = '_help_popup_content_' . $this->_req_action;
1432
-        //if method doesn't exist let's get out.
1433
-        if ( ! method_exists($this, $method_name)) {
1434
-            return array();
1435
-        }
1436
-        //k we're good to go let's retrieve the help array
1437
-        $help_array = call_user_func(array($this, $method_name));
1438
-        //make sure we've got an array!
1439
-        if ( ! is_array($help_array)) {
1440
-            throw new EE_Error(__('Something went wrong with help popup content generation. Expecting an array and well, this ain\'t no array bub.', 'event_espresso'));
1441
-        }
1442
-        return $help_array;
1443
-    }
1444
-
1445
-
1446
-
1447
-    /**
1448
-     * EE Admin Pages can use this to set a properly formatted trigger for a help popup.
1449
-     * By default the trigger html is printed.  Otherwise it can be returned if the $display flag is set "false"
1450
-     * See comments made on the _set_help_content method for understanding other parts to the help popup tool.
1451
-     *
1452
-     * @access protected
1453
-     * @param string  $trigger_id reference for retrieving the trigger content for the popup
1454
-     * @param boolean $display    if false then we return the trigger string
1455
-     * @param array   $dimensions an array of dimensions for the box (array(h,w))
1456
-     * @return string
1457
-     */
1458
-    protected function _set_help_trigger($trigger_id, $display = true, $dimensions = array('400', '640'))
1459
-    {
1460
-        if (defined('DOING_AJAX')) {
1461
-            return;
1462
-        }
1463
-        //let's check and see if there is any content set for this popup.  If there isn't then we'll include a default title and content so that developers know something needs to be corrected
1464
-        $help_array = $this->_get_help_content();
1465
-        $help_content = '';
1466
-        if (empty($help_array) || ! isset($help_array[$trigger_id])) {
1467
-            $help_array[$trigger_id] = array(
1468
-                    'title'   => __('Missing Content', 'event_espresso'),
1469
-                    'content' => __('A trigger has been set that doesn\'t have any corresponding content. Make sure you have set the help content. (see the "_set_help_popup_content" method in the EE_Admin_Page for instructions.)',
1470
-                            'event_espresso'),
1471
-            );
1472
-            $help_content = $this->_set_help_popup_content($help_array, false);
1473
-        }
1474
-        //let's setup the trigger
1475
-        $content = '<a class="ee-dialog" href="?height=' . $dimensions[0] . '&width=' . $dimensions[1] . '&inlineId=' . $trigger_id . '" target="_blank"><span class="question ee-help-popup-question"></span></a>';
1476
-        $content = $content . $help_content;
1477
-        if ($display) {
1478
-            echo $content;
1479
-        } else {
1480
-            return $content;
1481
-        }
1482
-    }
1483
-
1484
-
1485
-
1486
-    /**
1487
-     * _add_global_screen_options
1488
-     * Add any extra wp_screen_options within this method using built-in WP functions/methods for doing so.
1489
-     * This particular method will add_screen_options on ALL EE_Admin Pages
1490
-     *
1491
-     * @link   http://chrismarslender.com/wp-tutorials/wordpress-screen-options-tutorial/
1492
-     *         see also WP_Screen object documents...
1493
-     * @link   http://codex.wordpress.org/Class_Reference/WP_Screen
1494
-     * @abstract
1495
-     * @access private
1496
-     * @return void
1497
-     */
1498
-    private function _add_global_screen_options()
1499
-    {
1500
-    }
1501
-
1502
-
1503
-
1504
-    /**
1505
-     * _add_global_feature_pointers
1506
-     * This method is used for implementing any "feature pointers" (using built-in WP styling js).
1507
-     * This particular method will implement feature pointers for ALL EE_Admin pages.
1508
-     * Note: this is just a placeholder for now.  Implementation will come down the road
1509
-     *
1510
-     * @see    WP_Internal_Pointers class in wp-admin/includes/template.php for example (its a final class so can't be extended) also see:
1511
-     * @link   http://eamann.com/tech/wordpress-portland/
1512
-     * @abstract
1513
-     * @access protected
1514
-     * @return void
1515
-     */
1516
-    private function _add_global_feature_pointers()
1517
-    {
1518
-    }
1519
-
1520
-
1521
-
1522
-    /**
1523
-     * load_global_scripts_styles
1524
-     * The scripts and styles enqueued in here will be loaded on every EE Admin page
1525
-     *
1526
-     * @return void
1527
-     */
1528
-    public function load_global_scripts_styles()
1529
-    {
1530
-        /** STYLES **/
1531
-        // add debugging styles
1532
-        if (WP_DEBUG) {
1533
-            add_action('admin_head', array($this, 'add_xdebug_style'));
1534
-        }
1535
-        //register all styles
1536
-        wp_register_style('espresso-ui-theme', EE_GLOBAL_ASSETS_URL . 'css/espresso-ui-theme/jquery-ui-1.10.3.custom.min.css', array(), EVENT_ESPRESSO_VERSION);
1537
-        wp_register_style('ee-admin-css', EE_ADMIN_URL . 'assets/ee-admin-page.css', array(), EVENT_ESPRESSO_VERSION);
1538
-        //helpers styles
1539
-        wp_register_style('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.css', array(), EVENT_ESPRESSO_VERSION);
1540
-        //enqueue global styles
1541
-        wp_enqueue_style('ee-admin-css');
1542
-        /** SCRIPTS **/
1543
-        //register all scripts
1544
-        wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1545
-        wp_register_script('ee-dialog', EE_ADMIN_URL . 'assets/ee-dialog-helper.js', array('jquery', 'jquery-ui-draggable'), EVENT_ESPRESSO_VERSION, true);
1546
-        wp_register_script('ee_admin_js', EE_ADMIN_URL . 'assets/ee-admin-page.js', array('espresso_core', 'ee-parse-uri', 'ee-dialog'), EVENT_ESPRESSO_VERSION, true);
1547
-        wp_register_script('jquery-ui-timepicker-addon', EE_GLOBAL_ASSETS_URL . 'scripts/jquery-ui-timepicker-addon.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), EVENT_ESPRESSO_VERSION, true);
1548
-        // register jQuery Validate - see /includes/functions/wp_hooks.php
1549
-        add_filter('FHEE_load_jquery_validate', '__return_true');
1550
-        add_filter('FHEE_load_joyride', '__return_true');
1551
-        //script for sorting tables
1552
-        wp_register_script('espresso_ajax_table_sorting', EE_ADMIN_URL . "assets/espresso_ajax_table_sorting.js", array('ee_admin_js', 'jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
1553
-        //script for parsing uri's
1554
-        wp_register_script('ee-parse-uri', EE_GLOBAL_ASSETS_URL . 'scripts/parseuri.js', array(), EVENT_ESPRESSO_VERSION, true);
1555
-        //and parsing associative serialized form elements
1556
-        wp_register_script('ee-serialize-full-array', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.serializefullarray.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1557
-        //helpers scripts
1558
-        wp_register_script('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1559
-        wp_register_script('ee-moment-core', EE_THIRD_PARTY_URL . 'moment/moment-with-locales.min.js', array(), EVENT_ESPRESSO_VERSION, true);
1560
-        wp_register_script('ee-moment', EE_THIRD_PARTY_URL . 'moment/moment-timezone-with-data.min.js', array('ee-moment-core'), EVENT_ESPRESSO_VERSION, true);
1561
-        wp_register_script('ee-datepicker', EE_ADMIN_URL . 'assets/ee-datepicker.js', array('jquery-ui-timepicker-addon', 'ee-moment'), EVENT_ESPRESSO_VERSION, true);
1562
-        //google charts
1563
-        wp_register_script('google-charts', 'https://www.gstatic.com/charts/loader.js', array(), EVENT_ESPRESSO_VERSION, false);
1564
-        //enqueue global scripts
1565
-        //taking care of metaboxes
1566
-        if ((isset($this->_route_config['metaboxes']) || isset($this->_route_config['has_metaboxes'])) && empty($this->_cpt_route)) {
1567
-            wp_enqueue_script('dashboard');
1568
-        }
1569
-        //enqueue thickbox for ee help popups.  default is to enqueue unless its explicitly set to false since we're assuming all EE pages will have popups
1570
-        if ( ! isset($this->_route_config['has_help_popups']) || (isset($this->_route_config['has_help_popups']) && $this->_route_config['has_help_popups'])) {
1571
-            wp_enqueue_script('ee_admin_js');
1572
-            wp_enqueue_style('ee-admin-css');
1573
-        }
1574
-        //localize script for ajax lazy loading
1575
-        $lazy_loader_container_ids = apply_filters('FHEE__EE_Admin_Page_Core__load_global_scripts_styles__loader_containers', array('espresso_news_post_box_content'));
1576
-        wp_localize_script('ee_admin_js', 'eeLazyLoadingContainers', $lazy_loader_container_ids);
1577
-        /**
1578
-         * help tour stuff
1579
-         */
1580
-        if ( ! empty($this->_help_tour)) {
1581
-            //register the js for kicking things off
1582
-            wp_enqueue_script('ee-help-tour', EE_ADMIN_URL . 'assets/ee-help-tour.js', array('jquery-joyride'), EVENT_ESPRESSO_VERSION, true);
1583
-            //setup tours for the js tour object
1584
-            foreach ($this->_help_tour['tours'] as $tour) {
1585
-                $tours[] = array(
1586
-                        'id'      => $tour->get_slug(),
1587
-                        'options' => $tour->get_options(),
1588
-                );
1589
-            }
1590
-            wp_localize_script('ee-help-tour', 'EE_HELP_TOUR', array('tours' => $tours));
1591
-            //admin_footer_global will take care of making sure our help_tour skeleton gets printed via the info stored in $this->_help_tour
1592
-        }
1593
-    }
1594
-
1595
-
1596
-
1597
-    /**
1598
-     *        admin_footer_scripts_eei18n_js_strings
1599
-     *
1600
-     * @access        public
1601
-     * @return        void
1602
-     */
1603
-    public function admin_footer_scripts_eei18n_js_strings()
1604
-    {
1605
-        EE_Registry::$i18n_js_strings['ajax_url'] = WP_AJAX_URL;
1606
-        EE_Registry::$i18n_js_strings['confirm_delete'] = __('Are you absolutely sure you want to delete this item?\nThis action will delete ALL DATA associated with this item!!!\nThis can NOT be undone!!!', 'event_espresso');
1607
-        EE_Registry::$i18n_js_strings['January'] = __('January', 'event_espresso');
1608
-        EE_Registry::$i18n_js_strings['February'] = __('February', 'event_espresso');
1609
-        EE_Registry::$i18n_js_strings['March'] = __('March', 'event_espresso');
1610
-        EE_Registry::$i18n_js_strings['April'] = __('April', 'event_espresso');
1611
-        EE_Registry::$i18n_js_strings['May'] = __('May', 'event_espresso');
1612
-        EE_Registry::$i18n_js_strings['June'] = __('June', 'event_espresso');
1613
-        EE_Registry::$i18n_js_strings['July'] = __('July', 'event_espresso');
1614
-        EE_Registry::$i18n_js_strings['August'] = __('August', 'event_espresso');
1615
-        EE_Registry::$i18n_js_strings['September'] = __('September', 'event_espresso');
1616
-        EE_Registry::$i18n_js_strings['October'] = __('October', 'event_espresso');
1617
-        EE_Registry::$i18n_js_strings['November'] = __('November', 'event_espresso');
1618
-        EE_Registry::$i18n_js_strings['December'] = __('December', 'event_espresso');
1619
-        EE_Registry::$i18n_js_strings['Jan'] = __('Jan', 'event_espresso');
1620
-        EE_Registry::$i18n_js_strings['Feb'] = __('Feb', 'event_espresso');
1621
-        EE_Registry::$i18n_js_strings['Mar'] = __('Mar', 'event_espresso');
1622
-        EE_Registry::$i18n_js_strings['Apr'] = __('Apr', 'event_espresso');
1623
-        EE_Registry::$i18n_js_strings['May'] = __('May', 'event_espresso');
1624
-        EE_Registry::$i18n_js_strings['Jun'] = __('Jun', 'event_espresso');
1625
-        EE_Registry::$i18n_js_strings['Jul'] = __('Jul', 'event_espresso');
1626
-        EE_Registry::$i18n_js_strings['Aug'] = __('Aug', 'event_espresso');
1627
-        EE_Registry::$i18n_js_strings['Sep'] = __('Sep', 'event_espresso');
1628
-        EE_Registry::$i18n_js_strings['Oct'] = __('Oct', 'event_espresso');
1629
-        EE_Registry::$i18n_js_strings['Nov'] = __('Nov', 'event_espresso');
1630
-        EE_Registry::$i18n_js_strings['Dec'] = __('Dec', 'event_espresso');
1631
-        EE_Registry::$i18n_js_strings['Sunday'] = __('Sunday', 'event_espresso');
1632
-        EE_Registry::$i18n_js_strings['Monday'] = __('Monday', 'event_espresso');
1633
-        EE_Registry::$i18n_js_strings['Tuesday'] = __('Tuesday', 'event_espresso');
1634
-        EE_Registry::$i18n_js_strings['Wednesday'] = __('Wednesday', 'event_espresso');
1635
-        EE_Registry::$i18n_js_strings['Thursday'] = __('Thursday', 'event_espresso');
1636
-        EE_Registry::$i18n_js_strings['Friday'] = __('Friday', 'event_espresso');
1637
-        EE_Registry::$i18n_js_strings['Saturday'] = __('Saturday', 'event_espresso');
1638
-        EE_Registry::$i18n_js_strings['Sun'] = __('Sun', 'event_espresso');
1639
-        EE_Registry::$i18n_js_strings['Mon'] = __('Mon', 'event_espresso');
1640
-        EE_Registry::$i18n_js_strings['Tue'] = __('Tue', 'event_espresso');
1641
-        EE_Registry::$i18n_js_strings['Wed'] = __('Wed', 'event_espresso');
1642
-        EE_Registry::$i18n_js_strings['Thu'] = __('Thu', 'event_espresso');
1643
-        EE_Registry::$i18n_js_strings['Fri'] = __('Fri', 'event_espresso');
1644
-        EE_Registry::$i18n_js_strings['Sat'] = __('Sat', 'event_espresso');
1645
-        //setting on espresso_core instead of ee_admin_js because espresso_core is enqueued by the maintenance
1646
-        //admin page when in maintenance mode and ee_admin_js is not loaded then.  This works everywhere else because
1647
-        //espresso_core is listed as a dependency of ee_admin_js.
1648
-        wp_localize_script('espresso_core', 'eei18n', EE_Registry::$i18n_js_strings);
1649
-    }
1650
-
1651
-
1652
-
1653
-    /**
1654
-     *        load enhanced xdebug styles for ppl with failing eyesight
1655
-     *
1656
-     * @access        public
1657
-     * @return        void
1658
-     */
1659
-    public function add_xdebug_style()
1660
-    {
1661
-        echo '<style>.xdebug-error { font-size:1.5em; }</style>';
1662
-    }
1663
-
1664
-
1665
-    /************************/
1666
-    /** LIST TABLE METHODS **/
1667
-    /************************/
1668
-    /**
1669
-     * this sets up the list table if the current view requires it.
1670
-     *
1671
-     * @access protected
1672
-     * @return void
1673
-     */
1674
-    protected function _set_list_table()
1675
-    {
1676
-        //first is this a list_table view?
1677
-        if ( ! isset($this->_route_config['list_table'])) {
1678
-            return;
1679
-        } //not a list_table view so get out.
1680
-        //list table functions are per view specific (because some admin pages might have more than one listtable!)
1681
-        if (call_user_func(array($this, '_set_list_table_views_' . $this->_req_action)) === false) {
1682
-            //user error msg
1683
-            $error_msg = __('An error occurred. The requested list table views could not be found.', 'event_espresso');
1684
-            //developer error msg
1685
-            $error_msg .= '||' . sprintf(__('List table views for "%s" route could not be setup. Check that you have the corresponding method, "%s" set up for defining list_table_views for this route.', 'event_espresso'),
1686
-                            $this->_req_action, '_set_list_table_views_' . $this->_req_action);
1687
-            throw new EE_Error($error_msg);
1688
-        }
1689
-        //let's provide the ability to filter the views per PAGE AND ROUTE, per PAGE, and globally
1690
-        $this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug . '_' . $this->_req_action, $this->_views);
1691
-        $this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug, $this->_views);
1692
-        $this->_views = apply_filters('FHEE_list_table_views', $this->_views);
1693
-        $this->_set_list_table_view();
1694
-        $this->_set_list_table_object();
1695
-    }
1696
-
1697
-
1698
-
1699
-    /**
1700
-     *        set current view for List Table
1701
-     *
1702
-     * @access public
1703
-     * @return array
1704
-     */
1705
-    protected function _set_list_table_view()
1706
-    {
1707
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1708
-        // looking at active items or dumpster diving ?
1709
-        if ( ! isset($this->_req_data['status']) || ! array_key_exists($this->_req_data['status'], $this->_views)) {
1710
-            $this->_view = isset($this->_views['in_use']) ? 'in_use' : 'all';
1711
-        } else {
1712
-            $this->_view = sanitize_key($this->_req_data['status']);
1713
-        }
1714
-    }
1715
-
1716
-
1717
-
1718
-    /**
1719
-     * _set_list_table_object
1720
-     * WP_List_Table objects need to be loaded fairly early so automatic stuff WP does is taken care of.
1721
-     *
1722
-     * @throws \EE_Error
1723
-     */
1724
-    protected function _set_list_table_object()
1725
-    {
1726
-        if (isset($this->_route_config['list_table'])) {
1727
-            if ( ! class_exists($this->_route_config['list_table'])) {
1728
-                throw new EE_Error(
1729
-                        sprintf(
1730
-                                __(
1731
-                                        'The %s class defined for the list table does not exist.  Please check the spelling of the class ref in the $_page_config property on %s.',
1732
-                                        'event_espresso'
1733
-                                ),
1734
-                                $this->_route_config['list_table'],
1735
-                                get_class($this)
1736
-                        )
1737
-                );
1738
-            }
1739
-            $list_table = $this->_route_config['list_table'];
1740
-            $this->_list_table_object = new $list_table($this);
1741
-        }
1742
-    }
1743
-
1744
-
1745
-
1746
-    /**
1747
-     * get_list_table_view_RLs - get it? View RL ?? VU-RL???  URL ??
1748
-     *
1749
-     * @param array $extra_query_args                     Optional. An array of extra query args to add to the generated
1750
-     *                                                    urls.  The array should be indexed by the view it is being
1751
-     *                                                    added to.
1752
-     * @return array
1753
-     */
1754
-    public function get_list_table_view_RLs($extra_query_args = array())
1755
-    {
1756
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1757
-        if (empty($this->_views)) {
1758
-            $this->_views = array();
1759
-        }
1760
-        // cycle thru views
1761
-        foreach ($this->_views as $key => $view) {
1762
-            $query_args = array();
1763
-            // check for current view
1764
-            $this->_views[$key]['class'] = $this->_view == $view['slug'] ? 'current' : '';
1765
-            $query_args['action'] = $this->_req_action;
1766
-            $query_args[$this->_req_action . '_nonce'] = wp_create_nonce($query_args['action'] . '_nonce');
1767
-            $query_args['status'] = $view['slug'];
1768
-            //merge any other arguments sent in.
1769
-            if (isset($extra_query_args[$view['slug']])) {
1770
-                $query_args = array_merge($query_args, $extra_query_args[$view['slug']]);
1771
-            }
1772
-            $this->_views[$key]['url'] = EE_Admin_Page::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1773
-        }
1774
-        return $this->_views;
1775
-    }
1776
-
1777
-
1778
-
1779
-    /**
1780
-     * _entries_per_page_dropdown
1781
-     * generates a drop down box for selecting the number of visiable rows in an admin page list table
1782
-     *
1783
-     * @todo   : Note: ideally this should be added to the screen options dropdown as that would be consistent with how WP does it.
1784
-     * @access protected
1785
-     * @param int $max_entries total number of rows in the table
1786
-     * @return string
1787
-     */
1788
-    protected function _entries_per_page_dropdown($max_entries = false)
1789
-    {
1790
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1791
-        $values = array(10, 25, 50, 100);
1792
-        $per_page = ( ! empty($this->_req_data['per_page'])) ? absint($this->_req_data['per_page']) : 10;
1793
-        if ($max_entries) {
1794
-            $values[] = $max_entries;
1795
-            sort($values);
1796
-        }
1797
-        $entries_per_page_dropdown = '
143
+	// yes / no array for admin form fields
144
+	protected $_yes_no_values = array();
145
+
146
+	//some default things shared by all child classes
147
+	protected $_default_espresso_metaboxes;
148
+
149
+	/**
150
+	 *    EE_Registry Object
151
+	 *
152
+	 * @var    EE_Registry
153
+	 * @access    protected
154
+	 */
155
+	protected $EE = null;
156
+
157
+
158
+
159
+	/**
160
+	 * This is just a property that flags whether the given route is a caffeinated route or not.
161
+	 *
162
+	 * @var boolean
163
+	 */
164
+	protected $_is_caf = false;
165
+
166
+
167
+
168
+	/**
169
+	 * @Constructor
170
+	 * @param bool $routing indicate whether we want to just load the object and handle routing or just load the object.
171
+	 * @access public
172
+	 */
173
+	public function __construct($routing = true)
174
+	{
175
+		if (strpos($this->_get_dir(), 'caffeinated') !== false) {
176
+			$this->_is_caf = true;
177
+		}
178
+		$this->_yes_no_values = array(
179
+				array('id' => true, 'text' => __('Yes', 'event_espresso')),
180
+				array('id' => false, 'text' => __('No', 'event_espresso')),
181
+		);
182
+		//set the _req_data property.
183
+		$this->_req_data = array_merge($_GET, $_POST);
184
+		//routing enabled?
185
+		$this->_routing = $routing;
186
+		//set initial page props (child method)
187
+		$this->_init_page_props();
188
+		//set global defaults
189
+		$this->_set_defaults();
190
+		//set early because incoming requests could be ajax related and we need to register those hooks.
191
+		$this->_global_ajax_hooks();
192
+		$this->_ajax_hooks();
193
+		//other_page_hooks have to be early too.
194
+		$this->_do_other_page_hooks();
195
+		//This just allows us to have extending classes do something specific
196
+		// before the parent constructor runs _page_setup().
197
+		if (method_exists($this, '_before_page_setup')) {
198
+			$this->_before_page_setup();
199
+		}
200
+		//set up page dependencies
201
+		$this->_page_setup();
202
+	}
203
+
204
+
205
+
206
+	/**
207
+	 * _init_page_props
208
+	 * Child classes use to set at least the following properties:
209
+	 * $page_slug.
210
+	 * $page_label.
211
+	 *
212
+	 * @abstract
213
+	 * @access protected
214
+	 * @return void
215
+	 */
216
+	abstract protected function _init_page_props();
217
+
218
+
219
+
220
+	/**
221
+	 * _ajax_hooks
222
+	 * child classes put all their add_action('wp_ajax_{name_of_hook}') hooks in here.
223
+	 * Note: within the ajax callback methods.
224
+	 *
225
+	 * @abstract
226
+	 * @access protected
227
+	 * @return void
228
+	 */
229
+	abstract protected function _ajax_hooks();
230
+
231
+
232
+
233
+	/**
234
+	 * _define_page_props
235
+	 * child classes define page properties in here.  Must include at least:
236
+	 * $_admin_base_url = base_url for all admin pages
237
+	 * $_admin_page_title = default admin_page_title for admin pages
238
+	 * $_labels = array of default labels for various automatically generated elements:
239
+	 *    array(
240
+	 *        'buttons' => array(
241
+	 *            'add' => __('label for add new button'),
242
+	 *            'edit' => __('label for edit button'),
243
+	 *            'delete' => __('label for delete button')
244
+	 *            )
245
+	 *        )
246
+	 *
247
+	 * @abstract
248
+	 * @access protected
249
+	 * @return void
250
+	 */
251
+	abstract protected function _define_page_props();
252
+
253
+
254
+
255
+	/**
256
+	 * _set_page_routes
257
+	 * child classes use this to define the page routes for all subpages handled by the class.  Page routes are assigned to a action => method pairs in an array and to the $_page_routes property.  Each page route must also have a 'default'
258
+	 * route. Here's the format
259
+	 * $this->_page_routes = array(
260
+	 *        'default' => array(
261
+	 *            'func' => '_default_method_handling_route',
262
+	 *            'args' => array('array','of','args'),
263
+	 *            'noheader' => true, //add this in if this page route is processed before any headers are loaded (i.e. ajax request, backend processing)
264
+	 *            'headers_sent_route'=>'headers_route_reference', //add this if noheader=>true, and you want to load a headers route after.  The string you enter here should match the defined route reference for a headers sent route.
265
+	 *            'capability' => 'route_capability', //indicate a string for minimum capability required to access this route.
266
+	 *            'obj_id' => 10 // if this route has an object id, then this can include it (used for capability checks).
267
+	 *        ),
268
+	 *        'insert_item' => '_method_for_handling_insert_item' //this can be used if all we need to have is a handling method.
269
+	 *        )
270
+	 * )
271
+	 *
272
+	 * @abstract
273
+	 * @access protected
274
+	 * @return void
275
+	 */
276
+	abstract protected function _set_page_routes();
277
+
278
+
279
+
280
+	/**
281
+	 * _set_page_config
282
+	 * child classes use this to define the _page_config array for all subpages handled by the class. Each key in the array corresponds to the page_route for the loaded page.
283
+	 * Format:
284
+	 * $this->_page_config = array(
285
+	 *        'default' => array(
286
+	 *            'labels' => array(
287
+	 *                'buttons' => array(
288
+	 *                    'add' => __('label for adding item'),
289
+	 *                    'edit' => __('label for editing item'),
290
+	 *                    'delete' => __('label for deleting item')
291
+	 *                ),
292
+	 *                'publishbox' => __('Localized Title for Publish metabox', 'event_espresso')
293
+	 *            ), //optional an array of custom labels for various automatically generated elements to use on the page. If this isn't present then the defaults will be used as set for the $this->_labels in _define_page_props() method
294
+	 *            'nav' => array(
295
+	 *                'label' => __('Label for Tab', 'event_espresso').
296
+	 *                'url' => 'http://someurl', //automatically generated UNLESS you define
297
+	 *                'css_class' => 'css-class', //automatically generated UNLESS you define
298
+	 *                'order' => 10, //required to indicate tab position.
299
+	 *                'persistent' => false //if you want the nav tab to ONLY display when the specific route is displayed then add this parameter.
300
+	 *            'list_table' => 'name_of_list_table' //string for list table class to be loaded for this admin_page.
301
+	 *            'metaboxes' => array('metabox1', 'metabox2'), //if present this key indicates we want to load metaboxes set for eventespresso admin pages.
302
+	 *            'has_metaboxes' => true, //this boolean flag can simply be used to indicate if the route will have metaboxes.  Typically this is used if the 'metaboxes' index is not used because metaboxes are added later.  We just use
303
+	 *            this flag to make sure the necessary js gets enqueued on page load.
304
+	 *            'has_help_popups' => false //defaults(true) //this boolean flag can simply be used to indicate if the given route has help popups setup and if it does then we need to make sure thickbox is enqueued.
305
+	 *            'columns' => array(4, 2), //this key triggers the setup of a page that uses columns (metaboxes).  The array indicates the max number of columns (4) and the default number of columns on page load (2).  There is an option
306
+	 *            in the "screen_options" dropdown that is setup so users can pick what columns they want to display.
307
+	 *            'help_tabs' => array( //this is used for adding help tabs to a page
308
+	 *                'tab_id' => array(
309
+	 *                    'title' => 'tab_title',
310
+	 *                    'filename' => 'name_of_file_containing_content', //this is the primary method for setting help tab content.  The fallback if it isn't present is to try a the callback.  Filename should match a file in the admin
311
+	 *                    folder's "help_tabs" dir (ie.. events/help_tabs/name_of_file_containing_content.help_tab.php)
312
+	 *                    'callback' => 'callback_method_for_content', //if 'filename' isn't present then system will attempt to use the callback which should match the name of a method in the class
313
+	 *                    ),
314
+	 *                'tab2_id' => array(
315
+	 *                    'title' => 'tab2 title',
316
+	 *                    'filename' => 'file_name_2'
317
+	 *                    'callback' => 'callback_method_for_content',
318
+	 *                 ),
319
+	 *            'help_sidebar' => 'callback_for_sidebar_content', //this is used for setting up the sidebar in the help tab area on an admin page. @link http://make.wordpress.org/core/2011/12/06/help-and-screen-api-changes-in-3-3/
320
+	 *            'help_tour' => array(
321
+	 *                'name_of_help_tour_class', //all help tours shoudl be a child class of EE_Help_Tour and located in a folder for this admin page named "help_tours", a file name matching the key given here
322
+	 *                (name_of_help_tour_class.class.php), and class matching key given here (name_of_help_tour_class)
323
+	 *            ),
324
+	 *            'require_nonce' => TRUE //this is used if you want to set a route to NOT require a nonce (default is true if it isn't present).  To remove the requirement for a nonce check when this route is visited just set
325
+	 *            'require_nonce' to FALSE
326
+	 *            )
327
+	 * )
328
+	 *
329
+	 * @abstract
330
+	 * @access protected
331
+	 * @return void
332
+	 */
333
+	abstract protected function _set_page_config();
334
+
335
+
336
+
337
+
338
+
339
+	/** end sample help_tour methods **/
340
+	/**
341
+	 * _add_screen_options
342
+	 * Child classes can add any extra wp_screen_options within this method using built-in WP functions/methods for doing so.
343
+	 * Note child classes can also define _add_screen_options_($this->_current_view) to limit screen options to a particular view.
344
+	 *
345
+	 * @link   http://chrismarslender.com/wp-tutorials/wordpress-screen-options-tutorial/
346
+	 *         see also WP_Screen object documents...
347
+	 * @link   http://codex.wordpress.org/Class_Reference/WP_Screen
348
+	 * @abstract
349
+	 * @access protected
350
+	 * @return void
351
+	 */
352
+	abstract protected function _add_screen_options();
353
+
354
+
355
+
356
+	/**
357
+	 * _add_feature_pointers
358
+	 * Child classes should use this method for implementing any "feature pointers" (using built-in WP styling js).
359
+	 * Note child classes can also define _add_feature_pointers_($this->_current_view) to limit screen options to a particular view.
360
+	 * Note: this is just a placeholder for now.  Implementation will come down the road
361
+	 * See: WP_Internal_Pointers class in wp-admin/includes/template.php for example (its a final class so can't be extended) also see:
362
+	 *
363
+	 * @link   http://eamann.com/tech/wordpress-portland/
364
+	 * @abstract
365
+	 * @access protected
366
+	 * @return void
367
+	 */
368
+	abstract protected function _add_feature_pointers();
369
+
370
+
371
+
372
+	/**
373
+	 * load_scripts_styles
374
+	 * child classes put their wp_enqueue_script and wp_enqueue_style hooks in here for anything they need loaded for their pages/subpages.  Note this is for all pages/subpages of the system.  You can also load only specific scripts/styles
375
+	 * per view by putting them in a dynamic function in this format (load_scripts_styles_{$this->_current_view}) which matches your page route (action request arg)
376
+	 *
377
+	 * @abstract
378
+	 * @access public
379
+	 * @return void
380
+	 */
381
+	abstract public function load_scripts_styles();
382
+
383
+
384
+
385
+	/**
386
+	 * admin_init
387
+	 * Anything that should be set/executed at 'admin_init' WP hook runtime should be put in here.  This will apply to all pages/views loaded by child class.
388
+	 *
389
+	 * @abstract
390
+	 * @access public
391
+	 * @return void
392
+	 */
393
+	abstract public function admin_init();
394
+
395
+
396
+
397
+	/**
398
+	 * admin_notices
399
+	 * Anything triggered by the 'admin_notices' WP hook should be put in here.  This particular method will apply to all pages/views loaded by child class.
400
+	 *
401
+	 * @abstract
402
+	 * @access public
403
+	 * @return void
404
+	 */
405
+	abstract public function admin_notices();
406
+
407
+
408
+
409
+	/**
410
+	 * admin_footer_scripts
411
+	 * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method will apply to all pages/views loaded by child class.
412
+	 *
413
+	 * @access public
414
+	 * @return void
415
+	 */
416
+	abstract public function admin_footer_scripts();
417
+
418
+
419
+
420
+	/**
421
+	 * admin_footer
422
+	 * anything triggered by the 'admin_footer' WP action hook should be added to here. This particular method will apply to all pages/views loaded by child class.
423
+	 *
424
+	 * @access  public
425
+	 * @return void
426
+	 */
427
+	public function admin_footer()
428
+	{
429
+	}
430
+
431
+
432
+
433
+	/**
434
+	 * _global_ajax_hooks
435
+	 * all global add_action('wp_ajax_{name_of_hook}') hooks in here.
436
+	 * Note: within the ajax callback methods.
437
+	 *
438
+	 * @abstract
439
+	 * @access protected
440
+	 * @return void
441
+	 */
442
+	protected function _global_ajax_hooks()
443
+	{
444
+		//for lazy loading of metabox content
445
+		add_action('wp_ajax_espresso-ajax-content', array($this, 'ajax_metabox_content'), 10);
446
+	}
447
+
448
+
449
+
450
+	public function ajax_metabox_content()
451
+	{
452
+		$contentid = isset($this->_req_data['contentid']) ? $this->_req_data['contentid'] : '';
453
+		$url = isset($this->_req_data['contenturl']) ? $this->_req_data['contenturl'] : '';
454
+		self::cached_rss_display($contentid, $url);
455
+		wp_die();
456
+	}
457
+
458
+
459
+
460
+	/**
461
+	 * _page_setup
462
+	 * Makes sure any things that need to be loaded early get handled.  We also escape early here if the page requested doesn't match the object.
463
+	 *
464
+	 * @final
465
+	 * @access protected
466
+	 * @return void
467
+	 */
468
+	final protected function _page_setup()
469
+	{
470
+		//requires?
471
+		//admin_init stuff - global - we're setting this REALLY early so if EE_Admin pages have to hook into other WP pages they can.  But keep in mind, not everything is available from the EE_Admin Page object at this point.
472
+		add_action('admin_init', array($this, 'admin_init_global'), 5);
473
+		//next verify if we need to load anything...
474
+		$this->_current_page = ! empty($_GET['page']) ? sanitize_key($_GET['page']) : '';
475
+		$this->page_folder = strtolower(str_replace('_Admin_Page', '', str_replace('Extend_', '', get_class($this))));
476
+		global $ee_menu_slugs;
477
+		$ee_menu_slugs = (array)$ee_menu_slugs;
478
+		if (( ! $this->_current_page || ! isset($ee_menu_slugs[$this->_current_page])) && ! defined('DOING_AJAX')) {
479
+			return;
480
+		}
481
+		// becuz WP List tables have two duplicate select inputs for choosing bulk actions, we need to copy the action from the second to the first
482
+		if (isset($this->_req_data['action2']) && $this->_req_data['action'] == -1) {
483
+			$this->_req_data['action'] = ! empty($this->_req_data['action2']) && $this->_req_data['action2'] != -1 ? $this->_req_data['action2'] : $this->_req_data['action'];
484
+		}
485
+		// then set blank or -1 action values to 'default'
486
+		$this->_req_action = isset($this->_req_data['action']) && ! empty($this->_req_data['action']) && $this->_req_data['action'] != -1 ? sanitize_key($this->_req_data['action']) : 'default';
487
+		//if action is 'default' after the above BUT we have  'route' var set, then let's use the route as the action.  This covers cases where we're coming in from a list table that isn't on the default route.
488
+		$this->_req_action = $this->_req_action === 'default' && isset($this->_req_data['route']) ? $this->_req_data['route'] : $this->_req_action;
489
+		//however if we are doing_ajax and we've got a 'route' set then that's what the req_action will be
490
+		$this->_req_action = defined('DOING_AJAX') && isset($this->_req_data['route']) ? $this->_req_data['route'] : $this->_req_action;
491
+		$this->_current_view = $this->_req_action;
492
+		$this->_req_nonce = $this->_req_action . '_nonce';
493
+		$this->_define_page_props();
494
+		$this->_current_page_view_url = add_query_arg(array('page' => $this->_current_page, 'action' => $this->_current_view), $this->_admin_base_url);
495
+		//default things
496
+		$this->_default_espresso_metaboxes = array('_espresso_news_post_box', '_espresso_links_post_box', '_espresso_ratings_request', '_espresso_sponsors_post_box');
497
+		//set page configs
498
+		$this->_set_page_routes();
499
+		$this->_set_page_config();
500
+		//let's include any referrer data in our default_query_args for this route for "stickiness".
501
+		if (isset($this->_req_data['wp_referer'])) {
502
+			$this->_default_route_query_args['wp_referer'] = $this->_req_data['wp_referer'];
503
+		}
504
+		//for caffeinated and other extended functionality.  If there is a _extend_page_config method then let's run that to modify the all the various page configuration arrays
505
+		if (method_exists($this, '_extend_page_config')) {
506
+			$this->_extend_page_config();
507
+		}
508
+		//for CPT and other extended functionality. If there is an _extend_page_config_for_cpt then let's run that to modify all the various page configuration arrays.
509
+		if (method_exists($this, '_extend_page_config_for_cpt')) {
510
+			$this->_extend_page_config_for_cpt();
511
+		}
512
+		//filter routes and page_config so addons can add their stuff. Filtering done per class
513
+		$this->_page_routes = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_routes', $this->_page_routes, $this);
514
+		$this->_page_config = apply_filters('FHEE__' . get_class($this) . '__page_setup__page_config', $this->_page_config, $this);
515
+		//if AHEE__EE_Admin_Page__route_admin_request_$this->_current_view method is present then we call it hooked into the AHEE__EE_Admin_Page__route_admin_request action
516
+		if (method_exists($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view)) {
517
+			add_action('AHEE__EE_Admin_Page__route_admin_request', array($this, 'AHEE__EE_Admin_Page__route_admin_request_' . $this->_current_view), 10, 2);
518
+		}
519
+		//next route only if routing enabled
520
+		if ($this->_routing && ! defined('DOING_AJAX')) {
521
+			$this->_verify_routes();
522
+			//next let's just check user_access and kill if no access
523
+			$this->check_user_access();
524
+			if ($this->_is_UI_request) {
525
+				//admin_init stuff - global, all views for this page class, specific view
526
+				add_action('admin_init', array($this, 'admin_init'), 10);
527
+				if (method_exists($this, 'admin_init_' . $this->_current_view)) {
528
+					add_action('admin_init', array($this, 'admin_init_' . $this->_current_view), 15);
529
+				}
530
+			} else {
531
+				//hijack regular WP loading and route admin request immediately
532
+				@ini_set('memory_limit', apply_filters('admin_memory_limit', WP_MAX_MEMORY_LIMIT));
533
+				$this->route_admin_request();
534
+			}
535
+		}
536
+	}
537
+
538
+
539
+
540
+	/**
541
+	 * Provides a way for related child admin pages to load stuff on the loaded admin page.
542
+	 *
543
+	 * @access private
544
+	 * @return void
545
+	 */
546
+	private function _do_other_page_hooks()
547
+	{
548
+		$registered_pages = apply_filters('FHEE_do_other_page_hooks_' . $this->page_slug, array());
549
+		foreach ($registered_pages as $page) {
550
+			//now let's setup the file name and class that should be present
551
+			$classname = str_replace('.class.php', '', $page);
552
+			//autoloaders should take care of loading file
553
+			if ( ! class_exists($classname)) {
554
+				$error_msg[] = sprintf( esc_html__('Something went wrong with loading the %s admin hooks page.', 'event_espresso'), $page);
555
+				$error_msg[] = $error_msg[0]
556
+							   . "\r\n"
557
+							   . sprintf( esc_html__('There is no class in place for the %1$s admin hooks page.%2$sMake sure you have %3$s defined. If this is a non-EE-core admin page then you also must have an autoloader in place for your class',
558
+								'event_espresso'), $page, '<br />', '<strong>' . $classname . '</strong>');
559
+				throw new EE_Error(implode('||', $error_msg));
560
+			}
561
+			$a = new ReflectionClass($classname);
562
+			//notice we are passing the instance of this class to the hook object.
563
+			$hookobj[] = $a->newInstance($this);
564
+		}
565
+	}
566
+
567
+
568
+
569
+	public function load_page_dependencies()
570
+	{
571
+		try {
572
+			$this->_load_page_dependencies();
573
+		} catch (EE_Error $e) {
574
+			$e->get_error();
575
+		}
576
+	}
577
+
578
+
579
+
580
+	/**
581
+	 * load_page_dependencies
582
+	 * loads things specific to this page class when its loaded.  Really helps with efficiency.
583
+	 *
584
+	 * @access public
585
+	 * @return void
586
+	 */
587
+	protected function _load_page_dependencies()
588
+	{
589
+		//let's set the current_screen and screen options to override what WP set
590
+		$this->_current_screen = get_current_screen();
591
+		//load admin_notices - global, page class, and view specific
592
+		add_action('admin_notices', array($this, 'admin_notices_global'), 5);
593
+		add_action('admin_notices', array($this, 'admin_notices'), 10);
594
+		if (method_exists($this, 'admin_notices_' . $this->_current_view)) {
595
+			add_action('admin_notices', array($this, 'admin_notices_' . $this->_current_view), 15);
596
+		}
597
+		//load network admin_notices - global, page class, and view specific
598
+		add_action('network_admin_notices', array($this, 'network_admin_notices_global'), 5);
599
+		if (method_exists($this, 'network_admin_notices_' . $this->_current_view)) {
600
+			add_action('network_admin_notices', array($this, 'network_admin_notices_' . $this->_current_view));
601
+		}
602
+		//this will save any per_page screen options if they are present
603
+		$this->_set_per_page_screen_options();
604
+		//setup list table properties
605
+		$this->_set_list_table();
606
+		// child classes can "register" a metabox to be automatically handled via the _page_config array property.  However in some cases the metaboxes will need to be added within a route handling callback.
607
+		$this->_add_registered_meta_boxes();
608
+		$this->_add_screen_columns();
609
+		//add screen options - global, page child class, and view specific
610
+		$this->_add_global_screen_options();
611
+		$this->_add_screen_options();
612
+		if (method_exists($this, '_add_screen_options_' . $this->_current_view)) {
613
+			call_user_func(array($this, '_add_screen_options_' . $this->_current_view));
614
+		}
615
+		//add help tab(s) and tours- set via page_config and qtips.
616
+		$this->_add_help_tour();
617
+		$this->_add_help_tabs();
618
+		$this->_add_qtips();
619
+		//add feature_pointers - global, page child class, and view specific
620
+		$this->_add_feature_pointers();
621
+		$this->_add_global_feature_pointers();
622
+		if (method_exists($this, '_add_feature_pointer_' . $this->_current_view)) {
623
+			call_user_func(array($this, '_add_feature_pointer_' . $this->_current_view));
624
+		}
625
+		//enqueue scripts/styles - global, page class, and view specific
626
+		add_action('admin_enqueue_scripts', array($this, 'load_global_scripts_styles'), 5);
627
+		add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles'), 10);
628
+		if (method_exists($this, 'load_scripts_styles_' . $this->_current_view)) {
629
+			add_action('admin_enqueue_scripts', array($this, 'load_scripts_styles_' . $this->_current_view), 15);
630
+		}
631
+		add_action('admin_enqueue_scripts', array($this, 'admin_footer_scripts_eei18n_js_strings'), 100);
632
+		//admin_print_footer_scripts - global, page child class, and view specific.  NOTE, despite the name, whenever possible, scripts should NOT be loaded using this.  In most cases that's doing_it_wrong().  But adding hidden container elements etc. is a good use case. Notice the late priority we're giving these
633
+		add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_global'), 99);
634
+		add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts'), 100);
635
+		if (method_exists($this, 'admin_footer_scripts_' . $this->_current_view)) {
636
+			add_action('admin_print_footer_scripts', array($this, 'admin_footer_scripts_' . $this->_current_view), 101);
637
+		}
638
+		//admin footer scripts
639
+		add_action('admin_footer', array($this, 'admin_footer_global'), 99);
640
+		add_action('admin_footer', array($this, 'admin_footer'), 100);
641
+		if (method_exists($this, 'admin_footer_' . $this->_current_view)) {
642
+			add_action('admin_footer', array($this, 'admin_footer_' . $this->_current_view), 101);
643
+		}
644
+		do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load', $this->page_slug);
645
+		//targeted hook
646
+		do_action('FHEE__EE_Admin_Page___load_page_dependencies__after_load__' . $this->page_slug . '__' . $this->_req_action);
647
+	}
648
+
649
+
650
+
651
+	/**
652
+	 * _set_defaults
653
+	 * This sets some global defaults for class properties.
654
+	 */
655
+	private function _set_defaults()
656
+	{
657
+		$this->_current_screen = $this->_admin_page_title = $this->_req_action = $this->_req_nonce = $this->_event = $this->_template_path = $this->_column_template_path = null;
658
+		$this->_nav_tabs = $this_views = $this->_page_routes = $this->_page_config = $this->_default_route_query_args = array();
659
+		$this->default_nav_tab_name = 'overview';
660
+		//init template args
661
+		$this->_template_args = array(
662
+				'admin_page_header'  => '',
663
+				'admin_page_content' => '',
664
+				'post_body_content'  => '',
665
+				'before_list_table'  => '',
666
+				'after_list_table'   => '',
667
+		);
668
+	}
669
+
670
+
671
+
672
+	/**
673
+	 * route_admin_request
674
+	 *
675
+	 * @see    _route_admin_request()
676
+	 * @access public
677
+	 * @return void|exception error
678
+	 */
679
+	public function route_admin_request()
680
+	{
681
+		try {
682
+			$this->_route_admin_request();
683
+		} catch (EE_Error $e) {
684
+			$e->get_error();
685
+		}
686
+	}
687
+
688
+
689
+
690
+	public function set_wp_page_slug($wp_page_slug)
691
+	{
692
+		$this->_wp_page_slug = $wp_page_slug;
693
+		//if in network admin then we need to append "-network" to the page slug. Why? Because that's how WP rolls...
694
+		if (is_network_admin()) {
695
+			$this->_wp_page_slug .= '-network';
696
+		}
697
+	}
698
+
699
+
700
+
701
+	/**
702
+	 * _verify_routes
703
+	 * All this method does is verify the incoming request and make sure that routes exist for it.  We do this early so we know if we need to drop out.
704
+	 *
705
+	 * @access protected
706
+	 * @return void
707
+	 */
708
+	protected function _verify_routes()
709
+	{
710
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
711
+		if ( ! $this->_current_page && ! defined('DOING_AJAX')) {
712
+			return false;
713
+		}
714
+		$this->_route = false;
715
+		$func = false;
716
+		$args = array();
717
+		// check that the page_routes array is not empty
718
+		if (empty($this->_page_routes)) {
719
+			// user error msg
720
+			$error_msg = sprintf(__('No page routes have been set for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
721
+			// developer error msg
722
+			$error_msg .= '||' . $error_msg . __(' Make sure the "set_page_routes()" method exists, and is setting the "_page_routes" array properly.', 'event_espresso');
723
+			throw new EE_Error($error_msg);
724
+		}
725
+		// and that the requested page route exists
726
+		if (array_key_exists($this->_req_action, $this->_page_routes)) {
727
+			$this->_route = $this->_page_routes[$this->_req_action];
728
+			$this->_route_config = isset($this->_page_config[$this->_req_action]) ? $this->_page_config[$this->_req_action] : array();
729
+		} else {
730
+			// user error msg
731
+			$error_msg = sprintf(__('The requested page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
732
+			// developer error msg
733
+			$error_msg .= '||' . $error_msg . sprintf(__(' Create a key in the "_page_routes" array named "%s" and set its value to the appropriate method.', 'event_espresso'), $this->_req_action);
734
+			throw new EE_Error($error_msg);
735
+		}
736
+		// and that a default route exists
737
+		if ( ! array_key_exists('default', $this->_page_routes)) {
738
+			// user error msg
739
+			$error_msg = sprintf(__('A default page route has not been set for the % admin page.', 'event_espresso'), $this->_admin_page_title);
740
+			// developer error msg
741
+			$error_msg .= '||' . $error_msg . __(' Create a key in the "_page_routes" array named "default" and set its value to your default page method.', 'event_espresso');
742
+			throw new EE_Error($error_msg);
743
+		}
744
+		//first lets' catch if the UI request has EVER been set.
745
+		if ($this->_is_UI_request === null) {
746
+			//lets set if this is a UI request or not.
747
+			$this->_is_UI_request = ( ! isset($this->_req_data['noheader']) || $this->_req_data['noheader'] !== true) ? true : false;
748
+			//wait a minute... we might have a noheader in the route array
749
+			$this->_is_UI_request = is_array($this->_route) && isset($this->_route['noheader']) && $this->_route['noheader'] ? false : $this->_is_UI_request;
750
+		}
751
+		$this->_set_current_labels();
752
+	}
753
+
754
+
755
+
756
+	/**
757
+	 * this method simply verifies a given route and makes sure its an actual route available for the loaded page
758
+	 *
759
+	 * @param  string $route the route name we're verifying
760
+	 * @return mixed  (bool|Exception)      we'll throw an exception if this isn't a valid route.
761
+	 */
762
+	protected function _verify_route($route)
763
+	{
764
+		if (array_key_exists($this->_req_action, $this->_page_routes)) {
765
+			return true;
766
+		} else {
767
+			// user error msg
768
+			$error_msg = sprintf(__('The given page route does not exist for the %s admin page.', 'event_espresso'), $this->_admin_page_title);
769
+			// developer error msg
770
+			$error_msg .= '||' . $error_msg . sprintf(__(' Check the route you are using in your method (%s) and make sure it matches a route set in your "_page_routes" array property', 'event_espresso'), $route);
771
+			throw new EE_Error($error_msg);
772
+		}
773
+	}
774
+
775
+
776
+
777
+	/**
778
+	 * perform nonce verification
779
+	 * This method has be encapsulated here so that any ajax requests that bypass normal routes can verify their nonces using this method (and save retyping!)
780
+	 *
781
+	 * @param  string $nonce     The nonce sent
782
+	 * @param  string $nonce_ref The nonce reference string (name0)
783
+	 * @return mixed (bool|die)
784
+	 */
785
+	protected function _verify_nonce($nonce, $nonce_ref)
786
+	{
787
+		// verify nonce against expected value
788
+		if ( ! wp_verify_nonce($nonce, $nonce_ref)) {
789
+			// these are not the droids you are looking for !!!
790
+			$msg = sprintf(__('%sNonce Fail.%s', 'event_espresso'), '<a href="http://www.youtube.com/watch?v=56_S0WeTkzs">', '</a>');
791
+			if (WP_DEBUG) {
792
+				$msg .= "\n  " . sprintf(__('In order to dynamically generate nonces for your actions, use the %s::add_query_args_and_nonce() method. May the Nonce be with you!', 'event_espresso'), __CLASS__);
793
+			}
794
+			if ( ! defined('DOING_AJAX')) {
795
+				wp_die($msg);
796
+			} else {
797
+				EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
798
+				$this->_return_json();
799
+			}
800
+		}
801
+	}
802
+
803
+
804
+
805
+	/**
806
+	 * _route_admin_request()
807
+	 * Meat and potatoes of the class.  Basically, this dude checks out what's being requested and sees if theres are
808
+	 * some doodads to work the magic and handle the flingjangy. Translation:  Checks if the requested action is listed
809
+	 * in the page routes and then will try to load the corresponding method.
810
+	 *
811
+	 * @access protected
812
+	 * @return void
813
+	 * @throws \EE_Error
814
+	 */
815
+	protected function _route_admin_request()
816
+	{
817
+		if ( ! $this->_is_UI_request) {
818
+			$this->_verify_routes();
819
+		}
820
+		$nonce_check = isset($this->_route_config['require_nonce'])
821
+			? $this->_route_config['require_nonce']
822
+			: true;
823
+		if ($this->_req_action !== 'default' && $nonce_check) {
824
+			// set nonce from post data
825
+			$nonce = isset($this->_req_data[$this->_req_nonce])
826
+				? sanitize_text_field($this->_req_data[$this->_req_nonce])
827
+				: '';
828
+			$this->_verify_nonce($nonce, $this->_req_nonce);
829
+		}
830
+		//set the nav_tabs array but ONLY if this is  UI_request
831
+		if ($this->_is_UI_request) {
832
+			$this->_set_nav_tabs();
833
+		}
834
+		// grab callback function
835
+		$func = is_array($this->_route) ? $this->_route['func'] : $this->_route;
836
+		// check if callback has args
837
+		$args = is_array($this->_route) && isset($this->_route['args']) ? $this->_route['args'] : array();
838
+		$error_msg = '';
839
+		// action right before calling route
840
+		// (hook is something like 'AHEE__Registrations_Admin_Page__route_admin_request')
841
+		if ( ! did_action('AHEE__EE_Admin_Page__route_admin_request')) {
842
+			do_action('AHEE__EE_Admin_Page__route_admin_request', $this->_current_view, $this);
843
+		}
844
+		// right before calling the route, let's remove _wp_http_referer from the
845
+		// $_SERVER[REQUEST_URI] global (its now in _req_data for route processing).
846
+		$_SERVER['REQUEST_URI'] = remove_query_arg('_wp_http_referer', wp_unslash($_SERVER['REQUEST_URI']));
847
+		if ( ! empty($func)) {
848
+			if (is_array($func)) {
849
+				list($class, $method) = $func;
850
+			} else if (strpos($func, '::') !== false) {
851
+				list($class, $method) = explode('::', $func);
852
+			} else {
853
+				$class = $this;
854
+				$method = $func;
855
+			}
856
+			if ( ! (is_object($class) && $class === $this)) {
857
+				// send along this admin page object for access by addons.
858
+				$args['admin_page_object'] = $this;
859
+			}
860
+
861
+			if (
862
+				//is it a method on a class that doesn't work?
863
+				(
864
+					(
865
+						method_exists($class, $method)
866
+						&& call_user_func_array(array($class, $method), $args) === false
867
+					)
868
+					&& (
869
+						//is it a standalone function that doesn't work?
870
+						function_exists($method)
871
+						&& call_user_func_array($func, array_merge(array('admin_page_object' => $this), $args)) === false
872
+					)
873
+				)
874
+				|| (
875
+					//is it neither a class method NOR a standalone function?
876
+					! method_exists($class, $method)
877
+					&& ! function_exists($method)
878
+				)
879
+			) {
880
+				// user error msg
881
+				$error_msg = __('An error occurred. The  requested page route could not be found.', 'event_espresso');
882
+				// developer error msg
883
+				$error_msg .= '||';
884
+				$error_msg .= sprintf(
885
+					__(
886
+						'Page route "%s" could not be called. Check that the spelling for method names and actions in the "_page_routes" array are all correct.',
887
+						'event_espresso'
888
+					),
889
+					$method
890
+				);
891
+			}
892
+			if ( ! empty($error_msg)) {
893
+				throw new EE_Error($error_msg);
894
+			}
895
+		}
896
+		//if we've routed and this route has a no headers route AND a sent_headers_route, then we need to reset the routing properties to the new route.
897
+		//now if UI request is FALSE and noheader is true AND we have a headers_sent_route in the route array then let's set UI_request to true because the no header route has a second func after headers have been sent.
898
+		if ($this->_is_UI_request === false
899
+			&& is_array($this->_route)
900
+			&& ! empty($this->_route['headers_sent_route'])
901
+		) {
902
+			$this->_reset_routing_properties($this->_route['headers_sent_route']);
903
+		}
904
+	}
905
+
906
+
907
+
908
+	/**
909
+	 * This method just allows the resetting of page properties in the case where a no headers
910
+	 * route redirects to a headers route in its route config.
911
+	 *
912
+	 * @since   4.3.0
913
+	 * @param  string $new_route New (non header) route to redirect to.
914
+	 * @return   void
915
+	 */
916
+	protected function _reset_routing_properties($new_route)
917
+	{
918
+		$this->_is_UI_request = true;
919
+		//now we set the current route to whatever the headers_sent_route is set at
920
+		$this->_req_data['action'] = $new_route;
921
+		//rerun page setup
922
+		$this->_page_setup();
923
+	}
924
+
925
+
926
+
927
+	/**
928
+	 * _add_query_arg
929
+	 * adds nonce to array of arguments then calls WP add_query_arg function
930
+	 *(internally just uses EEH_URL's function with the same name)
931
+	 *
932
+	 * @access public
933
+	 * @param array  $args
934
+	 * @param string $url
935
+	 * @param bool   $sticky                  if true, then the existing Request params will be appended to the generated
936
+	 *                                        url in an associative array indexed by the key 'wp_referer';
937
+	 *                                        Example usage:
938
+	 *                                        If the current page is:
939
+	 *                                        http://mydomain.com/wp-admin/admin.php?page=espresso_registrations
940
+	 *                                        &action=default&event_id=20&month_range=March%202015
941
+	 *                                        &_wpnonce=5467821
942
+	 *                                        and you call:
943
+	 *                                        EE_Admin_Page::add_query_args_and_nonce(
944
+	 *                                        array(
945
+	 *                                        'action' => 'resend_something',
946
+	 *                                        'page=>espresso_registrations'
947
+	 *                                        ),
948
+	 *                                        $some_url,
949
+	 *                                        true
950
+	 *                                        );
951
+	 *                                        It will produce a url in this structure:
952
+	 *                                        http://{$some_url}/?page=espresso_registrations&action=resend_something
953
+	 *                                        &wp_referer[action]=default&wp_referer[event_id]=20&wpreferer[
954
+	 *                                        month_range]=March%202015
955
+	 * @param   bool $exclude_nonce           If true, the the nonce will be excluded from the generated nonce.
956
+	 * @return string
957
+	 */
958
+	public static function add_query_args_and_nonce($args = array(), $url = false, $sticky = false, $exclude_nonce = false)
959
+	{
960
+		//if there is a _wp_http_referer include the values from the request but only if sticky = true
961
+		if ($sticky) {
962
+			$request = $_REQUEST;
963
+			unset($request['_wp_http_referer']);
964
+			unset($request['wp_referer']);
965
+			foreach ($request as $key => $value) {
966
+				//do not add nonces
967
+				if (strpos($key, 'nonce') !== false) {
968
+					continue;
969
+				}
970
+				$args['wp_referer[' . $key . ']'] = $value;
971
+			}
972
+		}
973
+		return EEH_URL::add_query_args_and_nonce($args, $url, $exclude_nonce);
974
+	}
975
+
976
+
977
+
978
+	/**
979
+	 * This returns a generated link that will load the related help tab.
980
+	 *
981
+	 * @param  string $help_tab_id the id for the connected help tab
982
+	 * @param  string $icon_style  (optional) include css class for the style you want to use for the help icon.
983
+	 * @param  string $help_text   (optional) send help text you want to use for the link if default not to be used
984
+	 * @uses EEH_Template::get_help_tab_link()
985
+	 * @return string              generated link
986
+	 */
987
+	protected function _get_help_tab_link($help_tab_id, $icon_style = false, $help_text = false)
988
+	{
989
+		return EEH_Template::get_help_tab_link($help_tab_id, $this->page_slug, $this->_req_action, $icon_style, $help_text);
990
+	}
991
+
992
+
993
+
994
+	/**
995
+	 * _add_help_tabs
996
+	 * Note child classes define their help tabs within the page_config array.
997
+	 *
998
+	 * @link   http://codex.wordpress.org/Function_Reference/add_help_tab
999
+	 * @access protected
1000
+	 * @return void
1001
+	 */
1002
+	protected function _add_help_tabs()
1003
+	{
1004
+		$tour_buttons = '';
1005
+		if (isset($this->_page_config[$this->_req_action])) {
1006
+			$config = $this->_page_config[$this->_req_action];
1007
+			//is there a help tour for the current route?  if there is let's setup the tour buttons
1008
+			if (isset($this->_help_tour[$this->_req_action])) {
1009
+				$tb = array();
1010
+				$tour_buttons = '<div class="ee-abs-container"><div class="ee-help-tour-restart-buttons">';
1011
+				foreach ($this->_help_tour['tours'] as $tour) {
1012
+					//if this is the end tour then we don't need to setup a button
1013
+					if ($tour instanceof EE_Help_Tour_final_stop) {
1014
+						continue;
1015
+					}
1016
+					$tb[] = '<button id="trigger-tour-' . $tour->get_slug() . '" class="button-primary trigger-ee-help-tour">' . $tour->get_label() . '</button>';
1017
+				}
1018
+				$tour_buttons .= implode('<br />', $tb);
1019
+				$tour_buttons .= '</div></div>';
1020
+			}
1021
+			// let's see if there is a help_sidebar set for the current route and we'll set that up for usage as well.
1022
+			if (is_array($config) && isset($config['help_sidebar'])) {
1023
+				//check that the callback given is valid
1024
+				if ( ! method_exists($this, $config['help_sidebar'])) {
1025
+					throw new EE_Error(sprintf(__('The _page_config array has a callback set for the "help_sidebar" option.  However the callback given (%s) is not a valid callback.  Doublecheck the spelling and make sure this method exists for the class %s',
1026
+							'event_espresso'), $config['help_sidebar'], get_class($this)));
1027
+				}
1028
+				$content = apply_filters('FHEE__' . get_class($this) . '__add_help_tabs__help_sidebar', call_user_func(array($this, $config['help_sidebar'])));
1029
+				$content .= $tour_buttons; //add help tour buttons.
1030
+				//do we have any help tours setup?  Cause if we do we want to add the buttons
1031
+				$this->_current_screen->set_help_sidebar($content);
1032
+			}
1033
+			//if we DON'T have config help sidebar and there ARE toure buttons then we'll just add the tour buttons to the sidebar.
1034
+			if ( ! isset($config['help_sidebar']) && ! empty($tour_buttons)) {
1035
+				$this->_current_screen->set_help_sidebar($tour_buttons);
1036
+			}
1037
+			//handle if no help_tabs are set so the sidebar will still show for the help tour buttons
1038
+			if ( ! isset($config['help_tabs']) && ! empty($tour_buttons)) {
1039
+				$_ht['id'] = $this->page_slug;
1040
+				$_ht['title'] = __('Help Tours', 'event_espresso');
1041
+				$_ht['content'] = '<p>' . __('The buttons to the right allow you to start/restart any help tours available for this page', 'event_espresso') . '</p>';
1042
+				$this->_current_screen->add_help_tab($_ht);
1043
+			}/**/
1044
+			if ( ! isset($config['help_tabs'])) {
1045
+				return;
1046
+			} //no help tabs for this route
1047
+			foreach ((array)$config['help_tabs'] as $tab_id => $cfg) {
1048
+				//we're here so there ARE help tabs!
1049
+				//make sure we've got what we need
1050
+				if ( ! isset($cfg['title'])) {
1051
+					throw new EE_Error(__('The _page_config array is not set up properly for help tabs.  It is missing a title', 'event_espresso'));
1052
+				}
1053
+				if ( ! isset($cfg['filename']) && ! isset($cfg['callback']) && ! isset($cfg['content'])) {
1054
+					throw new EE_Error(__('The _page_config array is not setup properly for help tabs. It is missing a either a filename reference, or a callback reference or a content reference so there is no way to know the content for the help tab',
1055
+							'event_espresso'));
1056
+				}
1057
+				//first priority goes to content.
1058
+				if ( ! empty($cfg['content'])) {
1059
+					$content = ! empty($cfg['content']) ? $cfg['content'] : null;
1060
+					//second priority goes to filename
1061
+				} else if ( ! empty($cfg['filename'])) {
1062
+					$file_path = $this->_get_dir() . '/help_tabs/' . $cfg['filename'] . '.help_tab.php';
1063
+					//it's possible that the file is located on decaf route (and above sets up for caf route, if this is the case then lets check decaf route too)
1064
+					$file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tabs/' . $cfg['filename'] . '.help_tab.php' : $file_path;
1065
+					//if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1066
+					if ( ! is_readable($file_path) && ! isset($cfg['callback'])) {
1067
+						EE_Error::add_error(sprintf(__('The filename given for the help tab %s is not a valid file and there is no other configuration for the tab content.  Please check that the string you set for the help tab on this route (%s) is the correct spelling.  The file should be in %s',
1068
+								'event_espresso'), $tab_id, key($config), $file_path), __FILE__, __FUNCTION__, __LINE__);
1069
+						return;
1070
+					}
1071
+					$template_args['admin_page_obj'] = $this;
1072
+					$content = EEH_Template::display_template($file_path, $template_args, true);
1073
+				} else {
1074
+					$content = '';
1075
+				}
1076
+				//check if callback is valid
1077
+				if (empty($content) && ( ! isset($cfg['callback']) || ! method_exists($this, $cfg['callback']))) {
1078
+					EE_Error::add_error(sprintf(__('The callback given for a %s help tab on this page does not content OR a corresponding method for generating the content.  Check the spelling or make sure the method is present.',
1079
+							'event_espresso'), $cfg['title']), __FILE__, __FUNCTION__, __LINE__);
1080
+					return;
1081
+				}
1082
+				//setup config array for help tab method
1083
+				$id = $this->page_slug . '-' . $this->_req_action . '-' . $tab_id;
1084
+				$_ht = array(
1085
+						'id'       => $id,
1086
+						'title'    => $cfg['title'],
1087
+						'callback' => isset($cfg['callback']) && empty($content) ? array($this, $cfg['callback']) : null,
1088
+						'content'  => $content,
1089
+				);
1090
+				$this->_current_screen->add_help_tab($_ht);
1091
+			}
1092
+		}
1093
+	}
1094
+
1095
+
1096
+
1097
+	/**
1098
+	 * This basically checks loaded $_page_config property to see if there are any help_tours defined.  "help_tours" is an array with properties for setting up usage of the joyride plugin
1099
+	 *
1100
+	 * @link   http://zurb.com/playground/jquery-joyride-feature-tour-plugin
1101
+	 * @see    instructions regarding the format and construction of the "help_tour" array element is found in the _set_page_config() comments
1102
+	 * @access protected
1103
+	 * @return void
1104
+	 */
1105
+	protected function _add_help_tour()
1106
+	{
1107
+		$tours = array();
1108
+		$this->_help_tour = array();
1109
+		//exit early if help tours are turned off globally
1110
+		if ( ! EE_Registry::instance()->CFG->admin->help_tour_activation || (defined('EE_DISABLE_HELP_TOURS') && EE_DISABLE_HELP_TOURS)) {
1111
+			return;
1112
+		}
1113
+		//loop through _page_config to find any help_tour defined
1114
+		foreach ($this->_page_config as $route => $config) {
1115
+			//we're only going to set things up for this route
1116
+			if ($route !== $this->_req_action) {
1117
+				continue;
1118
+			}
1119
+			if (isset($config['help_tour'])) {
1120
+				foreach ($config['help_tour'] as $tour) {
1121
+					$file_path = $this->_get_dir() . '/help_tours/' . $tour . '.class.php';
1122
+					//let's see if we can get that file... if not its possible this is a decaf route not set in caffienated so lets try and get the caffeinated equivalent
1123
+					$file_path = ! is_readable($file_path) ? EE_ADMIN_PAGES . basename($this->_get_dir()) . '/help_tours/' . $tour . '.class.php' : $file_path;
1124
+					//if file is STILL not readable then let's do a EE_Error so its more graceful than a fatal error.
1125
+					if ( ! is_readable($file_path)) {
1126
+						EE_Error::add_error(sprintf(__('The file path given for the help tour (%s) is not a valid path.  Please check that the string you set for the help tour on this route (%s) is the correct spelling', 'event_espresso'),
1127
+								$file_path, $tour), __FILE__, __FUNCTION__, __LINE__);
1128
+						return;
1129
+					}
1130
+					require_once $file_path;
1131
+					if ( ! class_exists($tour)) {
1132
+						$error_msg[] = sprintf(__('Something went wrong with loading the %s Help Tour Class.', 'event_espresso'), $tour);
1133
+						$error_msg[] = $error_msg[0] . "\r\n" . sprintf(__('There is no class in place for the %s help tour.%s Make sure you have <strong>%s</strong> defined in the "help_tour" array for the %s route of the % admin page.',
1134
+										'event_espresso'), $tour, '<br />', $tour, $this->_req_action, get_class($this));
1135
+						throw new EE_Error(implode('||', $error_msg));
1136
+					}
1137
+					$a = new ReflectionClass($tour);
1138
+					$tour_obj = $a->newInstance($this->_is_caf);
1139
+					$tours[] = $tour_obj;
1140
+					$this->_help_tour[$route][] = EEH_Template::help_tour_stops_generator($tour_obj);
1141
+				}
1142
+				//let's inject the end tour stop element common to all pages... this will only get seen once per machine.
1143
+				$end_stop_tour = new EE_Help_Tour_final_stop($this->_is_caf);
1144
+				$tours[] = $end_stop_tour;
1145
+				$this->_help_tour[$route][] = EEH_Template::help_tour_stops_generator($end_stop_tour);
1146
+			}
1147
+		}
1148
+		if ( ! empty($tours)) {
1149
+			$this->_help_tour['tours'] = $tours;
1150
+		}
1151
+		//thats it!  Now that the $_help_tours property is set (or not) the scripts and html should be taken care of automatically.
1152
+	}
1153
+
1154
+
1155
+
1156
+	/**
1157
+	 * This simply sets up any qtips that have been defined in the page config
1158
+	 *
1159
+	 * @access protected
1160
+	 * @return void
1161
+	 */
1162
+	protected function _add_qtips()
1163
+	{
1164
+		if (isset($this->_route_config['qtips'])) {
1165
+			$qtips = (array)$this->_route_config['qtips'];
1166
+			//load qtip loader
1167
+			$path = array(
1168
+					$this->_get_dir() . '/qtips/',
1169
+					EE_ADMIN_PAGES . basename($this->_get_dir()) . '/qtips/',
1170
+			);
1171
+			EEH_Qtip_Loader::instance()->register($qtips, $path);
1172
+		}
1173
+	}
1174
+
1175
+
1176
+
1177
+	/**
1178
+	 * _set_nav_tabs
1179
+	 * This sets up the nav tabs from the page_routes array.  This method can be overwritten by child classes if you wish to add additional tabs or modify accordingly.
1180
+	 *
1181
+	 * @access protected
1182
+	 * @return void
1183
+	 */
1184
+	protected function _set_nav_tabs()
1185
+	{
1186
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1187
+		$i = 0;
1188
+		foreach ($this->_page_config as $slug => $config) {
1189
+			if ( ! is_array($config) || (is_array($config) && (isset($config['nav']) && ! $config['nav']) || ! isset($config['nav']))) {
1190
+				continue;
1191
+			} //no nav tab for this config
1192
+			//check for persistent flag
1193
+			if (isset($config['nav']['persistent']) && ! $config['nav']['persistent'] && $slug !== $this->_req_action) {
1194
+				continue;
1195
+			} //nav tab is only to appear when route requested.
1196
+			if ( ! $this->check_user_access($slug, true)) {
1197
+				continue;
1198
+			} //no nav tab becasue current user does not have access.
1199
+			$css_class = isset($config['css_class']) ? $config['css_class'] . ' ' : '';
1200
+			$this->_nav_tabs[$slug] = array(
1201
+					'url'       => isset($config['nav']['url']) ? $config['nav']['url'] : self::add_query_args_and_nonce(array('action' => $slug), $this->_admin_base_url),
1202
+					'link_text' => isset($config['nav']['label']) ? $config['nav']['label'] : ucwords(str_replace('_', ' ', $slug)),
1203
+					'css_class' => $this->_req_action == $slug ? $css_class . 'nav-tab-active' : $css_class,
1204
+					'order'     => isset($config['nav']['order']) ? $config['nav']['order'] : $i,
1205
+			);
1206
+			$i++;
1207
+		}
1208
+		//if $this->_nav_tabs is empty then lets set the default
1209
+		if (empty($this->_nav_tabs)) {
1210
+			$this->_nav_tabs[$this->default_nav_tab_name] = array(
1211
+					'url'       => $this->admin_base_url,
1212
+					'link_text' => ucwords(str_replace('_', ' ', $this->default_nav_tab_name)),
1213
+					'css_class' => 'nav-tab-active',
1214
+					'order'     => 10,
1215
+			);
1216
+		}
1217
+		//now let's sort the tabs according to order
1218
+		usort($this->_nav_tabs, array($this, '_sort_nav_tabs'));
1219
+	}
1220
+
1221
+
1222
+
1223
+	/**
1224
+	 * _set_current_labels
1225
+	 * This method modifies the _labels property with any optional specific labels indicated in the _page_routes property array
1226
+	 *
1227
+	 * @access private
1228
+	 * @return void
1229
+	 */
1230
+	private function _set_current_labels()
1231
+	{
1232
+		if (is_array($this->_route_config) && isset($this->_route_config['labels'])) {
1233
+			foreach ($this->_route_config['labels'] as $label => $text) {
1234
+				if (is_array($text)) {
1235
+					foreach ($text as $sublabel => $subtext) {
1236
+						$this->_labels[$label][$sublabel] = $subtext;
1237
+					}
1238
+				} else {
1239
+					$this->_labels[$label] = $text;
1240
+				}
1241
+			}
1242
+		}
1243
+	}
1244
+
1245
+
1246
+
1247
+	/**
1248
+	 *        verifies user access for this admin page
1249
+	 *
1250
+	 * @param string $route_to_check if present then the capability for the route matching this string is checked.
1251
+	 * @param bool   $verify_only    Default is FALSE which means if user check fails then wp_die().  Otherwise just return false if verify fail.
1252
+	 * @return        BOOL|wp_die()
1253
+	 */
1254
+	public function check_user_access($route_to_check = '', $verify_only = false)
1255
+	{
1256
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1257
+		$route_to_check = empty($route_to_check) ? $this->_req_action : $route_to_check;
1258
+		$capability = ! empty($route_to_check) && isset($this->_page_routes[$route_to_check]) && is_array($this->_page_routes[$route_to_check]) && ! empty($this->_page_routes[$route_to_check]['capability'])
1259
+				? $this->_page_routes[$route_to_check]['capability'] : null;
1260
+		if (empty($capability) && empty($route_to_check)) {
1261
+			$capability = is_array($this->_route) && empty($this->_route['capability']) ? 'manage_options' : $this->_route['capability'];
1262
+		} else {
1263
+			$capability = empty($capability) ? 'manage_options' : $capability;
1264
+		}
1265
+		$id = is_array($this->_route) && ! empty($this->_route['obj_id']) ? $this->_route['obj_id'] : 0;
1266
+		if (( ! function_exists('is_admin') || ! EE_Registry::instance()->CAP->current_user_can($capability, $this->page_slug . '_' . $route_to_check, $id)) && ! defined('DOING_AJAX')) {
1267
+			if ($verify_only) {
1268
+				return false;
1269
+			} else {
1270
+				if ( is_user_logged_in() ) {
1271
+					wp_die(__('You do not have access to this route.', 'event_espresso'));
1272
+				} else {
1273
+					return false;
1274
+				}
1275
+			}
1276
+		}
1277
+		return true;
1278
+	}
1279
+
1280
+
1281
+
1282
+	/**
1283
+	 * admin_init_global
1284
+	 * This runs all the code that we want executed within the WP admin_init hook.
1285
+	 * This method executes for ALL EE Admin pages.
1286
+	 *
1287
+	 * @access public
1288
+	 * @return void
1289
+	 */
1290
+	public function admin_init_global()
1291
+	{
1292
+	}
1293
+
1294
+
1295
+
1296
+	/**
1297
+	 * wp_loaded_global
1298
+	 * This runs all the code that we want executed within the WP wp_loaded hook.  This method is optional for an EE_Admin page and will execute on every EE Admin Page load
1299
+	 *
1300
+	 * @access public
1301
+	 * @return void
1302
+	 */
1303
+	public function wp_loaded()
1304
+	{
1305
+	}
1306
+
1307
+
1308
+
1309
+	/**
1310
+	 * admin_notices
1311
+	 * Anything triggered by the 'admin_notices' WP hook should be put in here.  This particular method will apply on ALL EE_Admin pages.
1312
+	 *
1313
+	 * @access public
1314
+	 * @return void
1315
+	 */
1316
+	public function admin_notices_global()
1317
+	{
1318
+		$this->_display_no_javascript_warning();
1319
+		$this->_display_espresso_notices();
1320
+	}
1321
+
1322
+
1323
+
1324
+	public function network_admin_notices_global()
1325
+	{
1326
+		$this->_display_no_javascript_warning();
1327
+		$this->_display_espresso_notices();
1328
+	}
1329
+
1330
+
1331
+
1332
+	/**
1333
+	 * admin_footer_scripts_global
1334
+	 * Anything triggered by the 'admin_print_footer_scripts' WP hook should be put in here. This particular method will apply on ALL EE_Admin pages.
1335
+	 *
1336
+	 * @access public
1337
+	 * @return void
1338
+	 */
1339
+	public function admin_footer_scripts_global()
1340
+	{
1341
+		$this->_add_admin_page_ajax_loading_img();
1342
+		$this->_add_admin_page_overlay();
1343
+		//if metaboxes are present we need to add the nonce field
1344
+		if ((isset($this->_route_config['metaboxes']) || (isset($this->_route_config['has_metaboxes']) && $this->_route_config['has_metaboxes']) || isset($this->_route_config['list_table']))) {
1345
+			wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
1346
+			wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
1347
+		}
1348
+	}
1349
+
1350
+
1351
+
1352
+	/**
1353
+	 * admin_footer_global
1354
+	 * Anything triggered by the wp 'admin_footer' wp hook should be put in here. This particluar method will apply on ALL EE_Admin Pages.
1355
+	 *
1356
+	 * @access  public
1357
+	 * @return  void
1358
+	 */
1359
+	public function admin_footer_global()
1360
+	{
1361
+		//dialog container for dialog helper
1362
+		$d_cont = '<div class="ee-admin-dialog-container auto-hide hidden">' . "\n";
1363
+		$d_cont .= '<div class="ee-notices"></div>';
1364
+		$d_cont .= '<div class="ee-admin-dialog-container-inner-content"></div>';
1365
+		$d_cont .= '</div>';
1366
+		echo $d_cont;
1367
+		//help tour stuff?
1368
+		if (isset($this->_help_tour[$this->_req_action])) {
1369
+			echo implode('<br />', $this->_help_tour[$this->_req_action]);
1370
+		}
1371
+		//current set timezone for timezone js
1372
+		echo '<span id="current_timezone" class="hidden">' . EEH_DTT_Helper::get_timezone() . '</span>';
1373
+	}
1374
+
1375
+
1376
+
1377
+	/**
1378
+	 * This function sees if there is a method for help popup content existing for the given route.  If there is then we'll use the retrieved array to output the content using the template.
1379
+	 * For child classes:
1380
+	 * If you want to have help popups then in your templates or your content you set "triggers" for the content using the "_set_help_trigger('help_trigger_id')" where "help_trigger_id" is what you will use later in your custom method for
1381
+	 * the help popup content on that page. Then in your Child_Admin_Page class you need to define a help popup method for the content in the format "_help_popup_content_{route_name}()"  So if you are setting help content for the
1382
+	 * 'edit_event' route you should have a method named "_help_popup_content_edit_route". In your defined "help_popup_content_..." method.  You must prepare and return an array in the following format array(
1383
+	 *    'help_trigger_id' => array(
1384
+	 *        'title' => __('localized title for popup', 'event_espresso'),
1385
+	 *        'content' => __('localized content for popup', 'event_espresso')
1386
+	 *    )
1387
+	 * );
1388
+	 * Then the EE_Admin_Parent will take care of making sure that is setup properly on the correct route.
1389
+	 *
1390
+	 * @access protected
1391
+	 * @return string content
1392
+	 */
1393
+	protected function _set_help_popup_content($help_array = array(), $display = false)
1394
+	{
1395
+		$content = '';
1396
+		$help_array = empty($help_array) ? $this->_get_help_content() : $help_array;
1397
+		$template_path = EE_ADMIN_TEMPLATE . 'admin_help_popup.template.php';
1398
+		//loop through the array and setup content
1399
+		foreach ($help_array as $trigger => $help) {
1400
+			//make sure the array is setup properly
1401
+			if ( ! isset($help['title']) || ! isset($help['content'])) {
1402
+				throw new EE_Error(__('Does not look like the popup content array has been setup correctly.  Might want to double check that.  Read the comments for the _get_help_popup_content method found in "EE_Admin_Page" class',
1403
+						'event_espresso'));
1404
+			}
1405
+			//we're good so let'd setup the template vars and then assign parsed template content to our content.
1406
+			$template_args = array(
1407
+					'help_popup_id'      => $trigger,
1408
+					'help_popup_title'   => $help['title'],
1409
+					'help_popup_content' => $help['content'],
1410
+			);
1411
+			$content .= EEH_Template::display_template($template_path, $template_args, true);
1412
+		}
1413
+		if ($display) {
1414
+			echo $content;
1415
+		} else {
1416
+			return $content;
1417
+		}
1418
+	}
1419
+
1420
+
1421
+
1422
+	/**
1423
+	 * All this does is retrive the help content array if set by the EE_Admin_Page child
1424
+	 *
1425
+	 * @access private
1426
+	 * @return array properly formatted array for help popup content
1427
+	 */
1428
+	private function _get_help_content()
1429
+	{
1430
+		//what is the method we're looking for?
1431
+		$method_name = '_help_popup_content_' . $this->_req_action;
1432
+		//if method doesn't exist let's get out.
1433
+		if ( ! method_exists($this, $method_name)) {
1434
+			return array();
1435
+		}
1436
+		//k we're good to go let's retrieve the help array
1437
+		$help_array = call_user_func(array($this, $method_name));
1438
+		//make sure we've got an array!
1439
+		if ( ! is_array($help_array)) {
1440
+			throw new EE_Error(__('Something went wrong with help popup content generation. Expecting an array and well, this ain\'t no array bub.', 'event_espresso'));
1441
+		}
1442
+		return $help_array;
1443
+	}
1444
+
1445
+
1446
+
1447
+	/**
1448
+	 * EE Admin Pages can use this to set a properly formatted trigger for a help popup.
1449
+	 * By default the trigger html is printed.  Otherwise it can be returned if the $display flag is set "false"
1450
+	 * See comments made on the _set_help_content method for understanding other parts to the help popup tool.
1451
+	 *
1452
+	 * @access protected
1453
+	 * @param string  $trigger_id reference for retrieving the trigger content for the popup
1454
+	 * @param boolean $display    if false then we return the trigger string
1455
+	 * @param array   $dimensions an array of dimensions for the box (array(h,w))
1456
+	 * @return string
1457
+	 */
1458
+	protected function _set_help_trigger($trigger_id, $display = true, $dimensions = array('400', '640'))
1459
+	{
1460
+		if (defined('DOING_AJAX')) {
1461
+			return;
1462
+		}
1463
+		//let's check and see if there is any content set for this popup.  If there isn't then we'll include a default title and content so that developers know something needs to be corrected
1464
+		$help_array = $this->_get_help_content();
1465
+		$help_content = '';
1466
+		if (empty($help_array) || ! isset($help_array[$trigger_id])) {
1467
+			$help_array[$trigger_id] = array(
1468
+					'title'   => __('Missing Content', 'event_espresso'),
1469
+					'content' => __('A trigger has been set that doesn\'t have any corresponding content. Make sure you have set the help content. (see the "_set_help_popup_content" method in the EE_Admin_Page for instructions.)',
1470
+							'event_espresso'),
1471
+			);
1472
+			$help_content = $this->_set_help_popup_content($help_array, false);
1473
+		}
1474
+		//let's setup the trigger
1475
+		$content = '<a class="ee-dialog" href="?height=' . $dimensions[0] . '&width=' . $dimensions[1] . '&inlineId=' . $trigger_id . '" target="_blank"><span class="question ee-help-popup-question"></span></a>';
1476
+		$content = $content . $help_content;
1477
+		if ($display) {
1478
+			echo $content;
1479
+		} else {
1480
+			return $content;
1481
+		}
1482
+	}
1483
+
1484
+
1485
+
1486
+	/**
1487
+	 * _add_global_screen_options
1488
+	 * Add any extra wp_screen_options within this method using built-in WP functions/methods for doing so.
1489
+	 * This particular method will add_screen_options on ALL EE_Admin Pages
1490
+	 *
1491
+	 * @link   http://chrismarslender.com/wp-tutorials/wordpress-screen-options-tutorial/
1492
+	 *         see also WP_Screen object documents...
1493
+	 * @link   http://codex.wordpress.org/Class_Reference/WP_Screen
1494
+	 * @abstract
1495
+	 * @access private
1496
+	 * @return void
1497
+	 */
1498
+	private function _add_global_screen_options()
1499
+	{
1500
+	}
1501
+
1502
+
1503
+
1504
+	/**
1505
+	 * _add_global_feature_pointers
1506
+	 * This method is used for implementing any "feature pointers" (using built-in WP styling js).
1507
+	 * This particular method will implement feature pointers for ALL EE_Admin pages.
1508
+	 * Note: this is just a placeholder for now.  Implementation will come down the road
1509
+	 *
1510
+	 * @see    WP_Internal_Pointers class in wp-admin/includes/template.php for example (its a final class so can't be extended) also see:
1511
+	 * @link   http://eamann.com/tech/wordpress-portland/
1512
+	 * @abstract
1513
+	 * @access protected
1514
+	 * @return void
1515
+	 */
1516
+	private function _add_global_feature_pointers()
1517
+	{
1518
+	}
1519
+
1520
+
1521
+
1522
+	/**
1523
+	 * load_global_scripts_styles
1524
+	 * The scripts and styles enqueued in here will be loaded on every EE Admin page
1525
+	 *
1526
+	 * @return void
1527
+	 */
1528
+	public function load_global_scripts_styles()
1529
+	{
1530
+		/** STYLES **/
1531
+		// add debugging styles
1532
+		if (WP_DEBUG) {
1533
+			add_action('admin_head', array($this, 'add_xdebug_style'));
1534
+		}
1535
+		//register all styles
1536
+		wp_register_style('espresso-ui-theme', EE_GLOBAL_ASSETS_URL . 'css/espresso-ui-theme/jquery-ui-1.10.3.custom.min.css', array(), EVENT_ESPRESSO_VERSION);
1537
+		wp_register_style('ee-admin-css', EE_ADMIN_URL . 'assets/ee-admin-page.css', array(), EVENT_ESPRESSO_VERSION);
1538
+		//helpers styles
1539
+		wp_register_style('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.css', array(), EVENT_ESPRESSO_VERSION);
1540
+		//enqueue global styles
1541
+		wp_enqueue_style('ee-admin-css');
1542
+		/** SCRIPTS **/
1543
+		//register all scripts
1544
+		wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1545
+		wp_register_script('ee-dialog', EE_ADMIN_URL . 'assets/ee-dialog-helper.js', array('jquery', 'jquery-ui-draggable'), EVENT_ESPRESSO_VERSION, true);
1546
+		wp_register_script('ee_admin_js', EE_ADMIN_URL . 'assets/ee-admin-page.js', array('espresso_core', 'ee-parse-uri', 'ee-dialog'), EVENT_ESPRESSO_VERSION, true);
1547
+		wp_register_script('jquery-ui-timepicker-addon', EE_GLOBAL_ASSETS_URL . 'scripts/jquery-ui-timepicker-addon.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), EVENT_ESPRESSO_VERSION, true);
1548
+		// register jQuery Validate - see /includes/functions/wp_hooks.php
1549
+		add_filter('FHEE_load_jquery_validate', '__return_true');
1550
+		add_filter('FHEE_load_joyride', '__return_true');
1551
+		//script for sorting tables
1552
+		wp_register_script('espresso_ajax_table_sorting', EE_ADMIN_URL . "assets/espresso_ajax_table_sorting.js", array('ee_admin_js', 'jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
1553
+		//script for parsing uri's
1554
+		wp_register_script('ee-parse-uri', EE_GLOBAL_ASSETS_URL . 'scripts/parseuri.js', array(), EVENT_ESPRESSO_VERSION, true);
1555
+		//and parsing associative serialized form elements
1556
+		wp_register_script('ee-serialize-full-array', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.serializefullarray.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1557
+		//helpers scripts
1558
+		wp_register_script('ee-text-links', EE_PLUGIN_DIR_URL . 'core/helpers/assets/ee_text_list_helper.js', array('jquery'), EVENT_ESPRESSO_VERSION, true);
1559
+		wp_register_script('ee-moment-core', EE_THIRD_PARTY_URL . 'moment/moment-with-locales.min.js', array(), EVENT_ESPRESSO_VERSION, true);
1560
+		wp_register_script('ee-moment', EE_THIRD_PARTY_URL . 'moment/moment-timezone-with-data.min.js', array('ee-moment-core'), EVENT_ESPRESSO_VERSION, true);
1561
+		wp_register_script('ee-datepicker', EE_ADMIN_URL . 'assets/ee-datepicker.js', array('jquery-ui-timepicker-addon', 'ee-moment'), EVENT_ESPRESSO_VERSION, true);
1562
+		//google charts
1563
+		wp_register_script('google-charts', 'https://www.gstatic.com/charts/loader.js', array(), EVENT_ESPRESSO_VERSION, false);
1564
+		//enqueue global scripts
1565
+		//taking care of metaboxes
1566
+		if ((isset($this->_route_config['metaboxes']) || isset($this->_route_config['has_metaboxes'])) && empty($this->_cpt_route)) {
1567
+			wp_enqueue_script('dashboard');
1568
+		}
1569
+		//enqueue thickbox for ee help popups.  default is to enqueue unless its explicitly set to false since we're assuming all EE pages will have popups
1570
+		if ( ! isset($this->_route_config['has_help_popups']) || (isset($this->_route_config['has_help_popups']) && $this->_route_config['has_help_popups'])) {
1571
+			wp_enqueue_script('ee_admin_js');
1572
+			wp_enqueue_style('ee-admin-css');
1573
+		}
1574
+		//localize script for ajax lazy loading
1575
+		$lazy_loader_container_ids = apply_filters('FHEE__EE_Admin_Page_Core__load_global_scripts_styles__loader_containers', array('espresso_news_post_box_content'));
1576
+		wp_localize_script('ee_admin_js', 'eeLazyLoadingContainers', $lazy_loader_container_ids);
1577
+		/**
1578
+		 * help tour stuff
1579
+		 */
1580
+		if ( ! empty($this->_help_tour)) {
1581
+			//register the js for kicking things off
1582
+			wp_enqueue_script('ee-help-tour', EE_ADMIN_URL . 'assets/ee-help-tour.js', array('jquery-joyride'), EVENT_ESPRESSO_VERSION, true);
1583
+			//setup tours for the js tour object
1584
+			foreach ($this->_help_tour['tours'] as $tour) {
1585
+				$tours[] = array(
1586
+						'id'      => $tour->get_slug(),
1587
+						'options' => $tour->get_options(),
1588
+				);
1589
+			}
1590
+			wp_localize_script('ee-help-tour', 'EE_HELP_TOUR', array('tours' => $tours));
1591
+			//admin_footer_global will take care of making sure our help_tour skeleton gets printed via the info stored in $this->_help_tour
1592
+		}
1593
+	}
1594
+
1595
+
1596
+
1597
+	/**
1598
+	 *        admin_footer_scripts_eei18n_js_strings
1599
+	 *
1600
+	 * @access        public
1601
+	 * @return        void
1602
+	 */
1603
+	public function admin_footer_scripts_eei18n_js_strings()
1604
+	{
1605
+		EE_Registry::$i18n_js_strings['ajax_url'] = WP_AJAX_URL;
1606
+		EE_Registry::$i18n_js_strings['confirm_delete'] = __('Are you absolutely sure you want to delete this item?\nThis action will delete ALL DATA associated with this item!!!\nThis can NOT be undone!!!', 'event_espresso');
1607
+		EE_Registry::$i18n_js_strings['January'] = __('January', 'event_espresso');
1608
+		EE_Registry::$i18n_js_strings['February'] = __('February', 'event_espresso');
1609
+		EE_Registry::$i18n_js_strings['March'] = __('March', 'event_espresso');
1610
+		EE_Registry::$i18n_js_strings['April'] = __('April', 'event_espresso');
1611
+		EE_Registry::$i18n_js_strings['May'] = __('May', 'event_espresso');
1612
+		EE_Registry::$i18n_js_strings['June'] = __('June', 'event_espresso');
1613
+		EE_Registry::$i18n_js_strings['July'] = __('July', 'event_espresso');
1614
+		EE_Registry::$i18n_js_strings['August'] = __('August', 'event_espresso');
1615
+		EE_Registry::$i18n_js_strings['September'] = __('September', 'event_espresso');
1616
+		EE_Registry::$i18n_js_strings['October'] = __('October', 'event_espresso');
1617
+		EE_Registry::$i18n_js_strings['November'] = __('November', 'event_espresso');
1618
+		EE_Registry::$i18n_js_strings['December'] = __('December', 'event_espresso');
1619
+		EE_Registry::$i18n_js_strings['Jan'] = __('Jan', 'event_espresso');
1620
+		EE_Registry::$i18n_js_strings['Feb'] = __('Feb', 'event_espresso');
1621
+		EE_Registry::$i18n_js_strings['Mar'] = __('Mar', 'event_espresso');
1622
+		EE_Registry::$i18n_js_strings['Apr'] = __('Apr', 'event_espresso');
1623
+		EE_Registry::$i18n_js_strings['May'] = __('May', 'event_espresso');
1624
+		EE_Registry::$i18n_js_strings['Jun'] = __('Jun', 'event_espresso');
1625
+		EE_Registry::$i18n_js_strings['Jul'] = __('Jul', 'event_espresso');
1626
+		EE_Registry::$i18n_js_strings['Aug'] = __('Aug', 'event_espresso');
1627
+		EE_Registry::$i18n_js_strings['Sep'] = __('Sep', 'event_espresso');
1628
+		EE_Registry::$i18n_js_strings['Oct'] = __('Oct', 'event_espresso');
1629
+		EE_Registry::$i18n_js_strings['Nov'] = __('Nov', 'event_espresso');
1630
+		EE_Registry::$i18n_js_strings['Dec'] = __('Dec', 'event_espresso');
1631
+		EE_Registry::$i18n_js_strings['Sunday'] = __('Sunday', 'event_espresso');
1632
+		EE_Registry::$i18n_js_strings['Monday'] = __('Monday', 'event_espresso');
1633
+		EE_Registry::$i18n_js_strings['Tuesday'] = __('Tuesday', 'event_espresso');
1634
+		EE_Registry::$i18n_js_strings['Wednesday'] = __('Wednesday', 'event_espresso');
1635
+		EE_Registry::$i18n_js_strings['Thursday'] = __('Thursday', 'event_espresso');
1636
+		EE_Registry::$i18n_js_strings['Friday'] = __('Friday', 'event_espresso');
1637
+		EE_Registry::$i18n_js_strings['Saturday'] = __('Saturday', 'event_espresso');
1638
+		EE_Registry::$i18n_js_strings['Sun'] = __('Sun', 'event_espresso');
1639
+		EE_Registry::$i18n_js_strings['Mon'] = __('Mon', 'event_espresso');
1640
+		EE_Registry::$i18n_js_strings['Tue'] = __('Tue', 'event_espresso');
1641
+		EE_Registry::$i18n_js_strings['Wed'] = __('Wed', 'event_espresso');
1642
+		EE_Registry::$i18n_js_strings['Thu'] = __('Thu', 'event_espresso');
1643
+		EE_Registry::$i18n_js_strings['Fri'] = __('Fri', 'event_espresso');
1644
+		EE_Registry::$i18n_js_strings['Sat'] = __('Sat', 'event_espresso');
1645
+		//setting on espresso_core instead of ee_admin_js because espresso_core is enqueued by the maintenance
1646
+		//admin page when in maintenance mode and ee_admin_js is not loaded then.  This works everywhere else because
1647
+		//espresso_core is listed as a dependency of ee_admin_js.
1648
+		wp_localize_script('espresso_core', 'eei18n', EE_Registry::$i18n_js_strings);
1649
+	}
1650
+
1651
+
1652
+
1653
+	/**
1654
+	 *        load enhanced xdebug styles for ppl with failing eyesight
1655
+	 *
1656
+	 * @access        public
1657
+	 * @return        void
1658
+	 */
1659
+	public function add_xdebug_style()
1660
+	{
1661
+		echo '<style>.xdebug-error { font-size:1.5em; }</style>';
1662
+	}
1663
+
1664
+
1665
+	/************************/
1666
+	/** LIST TABLE METHODS **/
1667
+	/************************/
1668
+	/**
1669
+	 * this sets up the list table if the current view requires it.
1670
+	 *
1671
+	 * @access protected
1672
+	 * @return void
1673
+	 */
1674
+	protected function _set_list_table()
1675
+	{
1676
+		//first is this a list_table view?
1677
+		if ( ! isset($this->_route_config['list_table'])) {
1678
+			return;
1679
+		} //not a list_table view so get out.
1680
+		//list table functions are per view specific (because some admin pages might have more than one listtable!)
1681
+		if (call_user_func(array($this, '_set_list_table_views_' . $this->_req_action)) === false) {
1682
+			//user error msg
1683
+			$error_msg = __('An error occurred. The requested list table views could not be found.', 'event_espresso');
1684
+			//developer error msg
1685
+			$error_msg .= '||' . sprintf(__('List table views for "%s" route could not be setup. Check that you have the corresponding method, "%s" set up for defining list_table_views for this route.', 'event_espresso'),
1686
+							$this->_req_action, '_set_list_table_views_' . $this->_req_action);
1687
+			throw new EE_Error($error_msg);
1688
+		}
1689
+		//let's provide the ability to filter the views per PAGE AND ROUTE, per PAGE, and globally
1690
+		$this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug . '_' . $this->_req_action, $this->_views);
1691
+		$this->_views = apply_filters('FHEE_list_table_views_' . $this->page_slug, $this->_views);
1692
+		$this->_views = apply_filters('FHEE_list_table_views', $this->_views);
1693
+		$this->_set_list_table_view();
1694
+		$this->_set_list_table_object();
1695
+	}
1696
+
1697
+
1698
+
1699
+	/**
1700
+	 *        set current view for List Table
1701
+	 *
1702
+	 * @access public
1703
+	 * @return array
1704
+	 */
1705
+	protected function _set_list_table_view()
1706
+	{
1707
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1708
+		// looking at active items or dumpster diving ?
1709
+		if ( ! isset($this->_req_data['status']) || ! array_key_exists($this->_req_data['status'], $this->_views)) {
1710
+			$this->_view = isset($this->_views['in_use']) ? 'in_use' : 'all';
1711
+		} else {
1712
+			$this->_view = sanitize_key($this->_req_data['status']);
1713
+		}
1714
+	}
1715
+
1716
+
1717
+
1718
+	/**
1719
+	 * _set_list_table_object
1720
+	 * WP_List_Table objects need to be loaded fairly early so automatic stuff WP does is taken care of.
1721
+	 *
1722
+	 * @throws \EE_Error
1723
+	 */
1724
+	protected function _set_list_table_object()
1725
+	{
1726
+		if (isset($this->_route_config['list_table'])) {
1727
+			if ( ! class_exists($this->_route_config['list_table'])) {
1728
+				throw new EE_Error(
1729
+						sprintf(
1730
+								__(
1731
+										'The %s class defined for the list table does not exist.  Please check the spelling of the class ref in the $_page_config property on %s.',
1732
+										'event_espresso'
1733
+								),
1734
+								$this->_route_config['list_table'],
1735
+								get_class($this)
1736
+						)
1737
+				);
1738
+			}
1739
+			$list_table = $this->_route_config['list_table'];
1740
+			$this->_list_table_object = new $list_table($this);
1741
+		}
1742
+	}
1743
+
1744
+
1745
+
1746
+	/**
1747
+	 * get_list_table_view_RLs - get it? View RL ?? VU-RL???  URL ??
1748
+	 *
1749
+	 * @param array $extra_query_args                     Optional. An array of extra query args to add to the generated
1750
+	 *                                                    urls.  The array should be indexed by the view it is being
1751
+	 *                                                    added to.
1752
+	 * @return array
1753
+	 */
1754
+	public function get_list_table_view_RLs($extra_query_args = array())
1755
+	{
1756
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1757
+		if (empty($this->_views)) {
1758
+			$this->_views = array();
1759
+		}
1760
+		// cycle thru views
1761
+		foreach ($this->_views as $key => $view) {
1762
+			$query_args = array();
1763
+			// check for current view
1764
+			$this->_views[$key]['class'] = $this->_view == $view['slug'] ? 'current' : '';
1765
+			$query_args['action'] = $this->_req_action;
1766
+			$query_args[$this->_req_action . '_nonce'] = wp_create_nonce($query_args['action'] . '_nonce');
1767
+			$query_args['status'] = $view['slug'];
1768
+			//merge any other arguments sent in.
1769
+			if (isset($extra_query_args[$view['slug']])) {
1770
+				$query_args = array_merge($query_args, $extra_query_args[$view['slug']]);
1771
+			}
1772
+			$this->_views[$key]['url'] = EE_Admin_Page::add_query_args_and_nonce($query_args, $this->_admin_base_url);
1773
+		}
1774
+		return $this->_views;
1775
+	}
1776
+
1777
+
1778
+
1779
+	/**
1780
+	 * _entries_per_page_dropdown
1781
+	 * generates a drop down box for selecting the number of visiable rows in an admin page list table
1782
+	 *
1783
+	 * @todo   : Note: ideally this should be added to the screen options dropdown as that would be consistent with how WP does it.
1784
+	 * @access protected
1785
+	 * @param int $max_entries total number of rows in the table
1786
+	 * @return string
1787
+	 */
1788
+	protected function _entries_per_page_dropdown($max_entries = false)
1789
+	{
1790
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1791
+		$values = array(10, 25, 50, 100);
1792
+		$per_page = ( ! empty($this->_req_data['per_page'])) ? absint($this->_req_data['per_page']) : 10;
1793
+		if ($max_entries) {
1794
+			$values[] = $max_entries;
1795
+			sort($values);
1796
+		}
1797
+		$entries_per_page_dropdown = '
1798 1798
 			<div id="entries-per-page-dv" class="alignleft actions">
1799 1799
 				<label class="hide-if-no-js">
1800 1800
 					Show
1801 1801
 					<select id="entries-per-page-slct" name="entries-per-page-slct">';
1802
-        foreach ($values as $value) {
1803
-            if ($value < $max_entries) {
1804
-                $selected = $value == $per_page ? ' selected="' . $per_page . '"' : '';
1805
-                $entries_per_page_dropdown .= '
1802
+		foreach ($values as $value) {
1803
+			if ($value < $max_entries) {
1804
+				$selected = $value == $per_page ? ' selected="' . $per_page . '"' : '';
1805
+				$entries_per_page_dropdown .= '
1806 1806
 						<option value="' . $value . '"' . $selected . '>' . $value . '&nbsp;&nbsp;</option>';
1807
-            }
1808
-        }
1809
-        $selected = $max_entries == $per_page ? ' selected="' . $per_page . '"' : '';
1810
-        $entries_per_page_dropdown .= '
1807
+			}
1808
+		}
1809
+		$selected = $max_entries == $per_page ? ' selected="' . $per_page . '"' : '';
1810
+		$entries_per_page_dropdown .= '
1811 1811
 						<option value="' . $max_entries . '"' . $selected . '>All&nbsp;&nbsp;</option>';
1812
-        $entries_per_page_dropdown .= '
1812
+		$entries_per_page_dropdown .= '
1813 1813
 					</select>
1814 1814
 					entries
1815 1815
 				</label>
1816 1816
 				<input id="entries-per-page-btn" class="button-secondary" type="submit" value="Go" >
1817 1817
 			</div>
1818 1818
 		';
1819
-        return $entries_per_page_dropdown;
1820
-    }
1821
-
1822
-
1823
-
1824
-    /**
1825
-     *        _set_search_attributes
1826
-     *
1827
-     * @access        protected
1828
-     * @return        void
1829
-     */
1830
-    public function _set_search_attributes()
1831
-    {
1832
-        $this->_template_args['search']['btn_label'] = sprintf(__('Search %s', 'event_espresso'), empty($this->_search_btn_label) ? $this->page_label : $this->_search_btn_label);
1833
-        $this->_template_args['search']['callback'] = 'search_' . $this->page_slug;
1834
-    }
1835
-
1836
-    /*** END LIST TABLE METHODS **/
1837
-    /*****************************/
1838
-    /**
1839
-     *        _add_registered_metaboxes
1840
-     *        this loads any registered metaboxes via the 'metaboxes' index in the _page_config property array.
1841
-     *
1842
-     * @link   http://codex.wordpress.org/Function_Reference/add_meta_box
1843
-     * @access private
1844
-     * @return void
1845
-     */
1846
-    private function _add_registered_meta_boxes()
1847
-    {
1848
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1849
-        //we only add meta boxes if the page_route calls for it
1850
-        if (is_array($this->_route_config) && isset($this->_route_config['metaboxes'])
1851
-            && is_array(
1852
-                    $this->_route_config['metaboxes']
1853
-            )
1854
-        ) {
1855
-            // this simply loops through the callbacks provided
1856
-            // and checks if there is a corresponding callback registered by the child
1857
-            // if there is then we go ahead and process the metabox loader.
1858
-            foreach ($this->_route_config['metaboxes'] as $metabox_callback) {
1859
-                // first check for Closures
1860
-                if ($metabox_callback instanceof Closure) {
1861
-                    $result = $metabox_callback();
1862
-                } else if (is_array($metabox_callback) && isset($metabox_callback[0], $metabox_callback[1])) {
1863
-                    $result = call_user_func(array($metabox_callback[0], $metabox_callback[1]));
1864
-                } else {
1865
-                    $result = call_user_func(array($this, &$metabox_callback));
1866
-                }
1867
-                if ($result === false) {
1868
-                    // user error msg
1869
-                    $error_msg = __('An error occurred. The  requested metabox could not be found.', 'event_espresso');
1870
-                    // developer error msg
1871
-                    $error_msg .= '||' . sprintf(
1872
-                                    __(
1873
-                                            'The metabox with the string "%s" could not be called. Check that the spelling for method names and actions in the "_page_config[\'metaboxes\']" array are all correct.',
1874
-                                            'event_espresso'
1875
-                                    ),
1876
-                                    $metabox_callback
1877
-                            );
1878
-                    throw new EE_Error($error_msg);
1879
-                }
1880
-            }
1881
-        }
1882
-    }
1883
-
1884
-
1885
-
1886
-    /**
1887
-     * _add_screen_columns
1888
-     * This will check the _page_config array and if there is "columns" key index indicated, we'll set the template as the dynamic column template and we'll setup the column options for the page.
1889
-     *
1890
-     * @access private
1891
-     * @return void
1892
-     */
1893
-    private function _add_screen_columns()
1894
-    {
1895
-        if (
1896
-                is_array($this->_route_config)
1897
-                && isset($this->_route_config['columns'])
1898
-                && is_array($this->_route_config['columns'])
1899
-                && count($this->_route_config['columns']) === 2
1900
-        ) {
1901
-            add_screen_option('layout_columns', array('max' => (int)$this->_route_config['columns'][0], 'default' => (int)$this->_route_config['columns'][1]));
1902
-            $this->_template_args['num_columns'] = $this->_route_config['columns'][0];
1903
-            $screen_id = $this->_current_screen->id;
1904
-            $screen_columns = (int)get_user_option("screen_layout_$screen_id");
1905
-            $total_columns = ! empty($screen_columns) ? $screen_columns : $this->_route_config['columns'][1];
1906
-            $this->_template_args['current_screen_widget_class'] = 'columns-' . $total_columns;
1907
-            $this->_template_args['current_page'] = $this->_wp_page_slug;
1908
-            $this->_template_args['screen'] = $this->_current_screen;
1909
-            $this->_column_template_path = EE_ADMIN_TEMPLATE . 'admin_details_metabox_column_wrapper.template.php';
1910
-            //finally if we don't have has_metaboxes set in the route config let's make sure it IS set other wise the necessary hidden fields for this won't be loaded.
1911
-            $this->_route_config['has_metaboxes'] = true;
1912
-        }
1913
-    }
1914
-
1915
-
1916
-
1917
-    /**********************************/
1918
-    /** GLOBALLY AVAILABLE METABOXES **/
1919
-    /**
1920
-     * In this section we put any globally available EE metaboxes for all EE Admin pages.  They are called by simply referencing the callback in the _page_config array property.  This way you can be very specific about what pages these get
1921
-     * loaded on.
1922
-     */
1923
-    private function _espresso_news_post_box()
1924
-    {
1925
-        $news_box_title = apply_filters('FHEE__EE_Admin_Page___espresso_news_post_box__news_box_title', __('New @ Event Espresso', 'event_espresso'));
1926
-        add_meta_box('espresso_news_post_box', $news_box_title, array(
1927
-                $this,
1928
-                'espresso_news_post_box',
1929
-        ), $this->_wp_page_slug, 'side');
1930
-    }
1931
-
1932
-
1933
-
1934
-    /**
1935
-     * Code for setting up espresso ratings request metabox.
1936
-     */
1937
-    protected function _espresso_ratings_request()
1938
-    {
1939
-        if ( ! apply_filters('FHEE_show_ratings_request_meta_box', true)) {
1940
-            return '';
1941
-        }
1942
-        $ratings_box_title = apply_filters('FHEE__EE_Admin_Page___espresso_news_post_box__news_box_title', __('Keep Event Espresso Decaf Free', 'event_espresso'));
1943
-        add_meta_box('espresso_ratings_request', $ratings_box_title, array(
1944
-                $this,
1945
-                'espresso_ratings_request',
1946
-        ), $this->_wp_page_slug, 'side');
1947
-    }
1948
-
1949
-
1950
-
1951
-    /**
1952
-     * Code for setting up espresso ratings request metabox content.
1953
-     */
1954
-    public function espresso_ratings_request()
1955
-    {
1956
-        $template_path = EE_ADMIN_TEMPLATE . 'espresso_ratings_request_content.template.php';
1957
-        EEH_Template::display_template($template_path, array());
1958
-    }
1959
-
1960
-
1961
-
1962
-    public static function cached_rss_display($rss_id, $url)
1963
-    {
1964
-        $loading = '<p class="widget-loading hide-if-no-js">' . __('Loading&#8230;') . '</p><p class="hide-if-js">' . __('This widget requires JavaScript.') . '</p>';
1965
-        $doing_ajax = (defined('DOING_AJAX') && DOING_AJAX);
1966
-        $pre = '<div class="espresso-rss-display">' . "\n\t";
1967
-        $pre .= '<span id="' . $rss_id . '_url" class="hidden">' . $url . '</span>';
1968
-        $post = '</div>' . "\n";
1969
-        $cache_key = 'ee_rss_' . md5($rss_id);
1970
-        if (false != ($output = get_transient($cache_key))) {
1971
-            echo $pre . $output . $post;
1972
-            return true;
1973
-        }
1974
-        if ( ! $doing_ajax) {
1975
-            echo $pre . $loading . $post;
1976
-            return false;
1977
-        }
1978
-        ob_start();
1979
-        wp_widget_rss_output($url, array('show_date' => 0, 'items' => 5));
1980
-        set_transient($cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS);
1981
-        return true;
1982
-    }
1983
-
1984
-
1985
-
1986
-    public function espresso_news_post_box()
1987
-    {
1988
-        ?>
1819
+		return $entries_per_page_dropdown;
1820
+	}
1821
+
1822
+
1823
+
1824
+	/**
1825
+	 *        _set_search_attributes
1826
+	 *
1827
+	 * @access        protected
1828
+	 * @return        void
1829
+	 */
1830
+	public function _set_search_attributes()
1831
+	{
1832
+		$this->_template_args['search']['btn_label'] = sprintf(__('Search %s', 'event_espresso'), empty($this->_search_btn_label) ? $this->page_label : $this->_search_btn_label);
1833
+		$this->_template_args['search']['callback'] = 'search_' . $this->page_slug;
1834
+	}
1835
+
1836
+	/*** END LIST TABLE METHODS **/
1837
+	/*****************************/
1838
+	/**
1839
+	 *        _add_registered_metaboxes
1840
+	 *        this loads any registered metaboxes via the 'metaboxes' index in the _page_config property array.
1841
+	 *
1842
+	 * @link   http://codex.wordpress.org/Function_Reference/add_meta_box
1843
+	 * @access private
1844
+	 * @return void
1845
+	 */
1846
+	private function _add_registered_meta_boxes()
1847
+	{
1848
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1849
+		//we only add meta boxes if the page_route calls for it
1850
+		if (is_array($this->_route_config) && isset($this->_route_config['metaboxes'])
1851
+			&& is_array(
1852
+					$this->_route_config['metaboxes']
1853
+			)
1854
+		) {
1855
+			// this simply loops through the callbacks provided
1856
+			// and checks if there is a corresponding callback registered by the child
1857
+			// if there is then we go ahead and process the metabox loader.
1858
+			foreach ($this->_route_config['metaboxes'] as $metabox_callback) {
1859
+				// first check for Closures
1860
+				if ($metabox_callback instanceof Closure) {
1861
+					$result = $metabox_callback();
1862
+				} else if (is_array($metabox_callback) && isset($metabox_callback[0], $metabox_callback[1])) {
1863
+					$result = call_user_func(array($metabox_callback[0], $metabox_callback[1]));
1864
+				} else {
1865
+					$result = call_user_func(array($this, &$metabox_callback));
1866
+				}
1867
+				if ($result === false) {
1868
+					// user error msg
1869
+					$error_msg = __('An error occurred. The  requested metabox could not be found.', 'event_espresso');
1870
+					// developer error msg
1871
+					$error_msg .= '||' . sprintf(
1872
+									__(
1873
+											'The metabox with the string "%s" could not be called. Check that the spelling for method names and actions in the "_page_config[\'metaboxes\']" array are all correct.',
1874
+											'event_espresso'
1875
+									),
1876
+									$metabox_callback
1877
+							);
1878
+					throw new EE_Error($error_msg);
1879
+				}
1880
+			}
1881
+		}
1882
+	}
1883
+
1884
+
1885
+
1886
+	/**
1887
+	 * _add_screen_columns
1888
+	 * This will check the _page_config array and if there is "columns" key index indicated, we'll set the template as the dynamic column template and we'll setup the column options for the page.
1889
+	 *
1890
+	 * @access private
1891
+	 * @return void
1892
+	 */
1893
+	private function _add_screen_columns()
1894
+	{
1895
+		if (
1896
+				is_array($this->_route_config)
1897
+				&& isset($this->_route_config['columns'])
1898
+				&& is_array($this->_route_config['columns'])
1899
+				&& count($this->_route_config['columns']) === 2
1900
+		) {
1901
+			add_screen_option('layout_columns', array('max' => (int)$this->_route_config['columns'][0], 'default' => (int)$this->_route_config['columns'][1]));
1902
+			$this->_template_args['num_columns'] = $this->_route_config['columns'][0];
1903
+			$screen_id = $this->_current_screen->id;
1904
+			$screen_columns = (int)get_user_option("screen_layout_$screen_id");
1905
+			$total_columns = ! empty($screen_columns) ? $screen_columns : $this->_route_config['columns'][1];
1906
+			$this->_template_args['current_screen_widget_class'] = 'columns-' . $total_columns;
1907
+			$this->_template_args['current_page'] = $this->_wp_page_slug;
1908
+			$this->_template_args['screen'] = $this->_current_screen;
1909
+			$this->_column_template_path = EE_ADMIN_TEMPLATE . 'admin_details_metabox_column_wrapper.template.php';
1910
+			//finally if we don't have has_metaboxes set in the route config let's make sure it IS set other wise the necessary hidden fields for this won't be loaded.
1911
+			$this->_route_config['has_metaboxes'] = true;
1912
+		}
1913
+	}
1914
+
1915
+
1916
+
1917
+	/**********************************/
1918
+	/** GLOBALLY AVAILABLE METABOXES **/
1919
+	/**
1920
+	 * In this section we put any globally available EE metaboxes for all EE Admin pages.  They are called by simply referencing the callback in the _page_config array property.  This way you can be very specific about what pages these get
1921
+	 * loaded on.
1922
+	 */
1923
+	private function _espresso_news_post_box()
1924
+	{
1925
+		$news_box_title = apply_filters('FHEE__EE_Admin_Page___espresso_news_post_box__news_box_title', __('New @ Event Espresso', 'event_espresso'));
1926
+		add_meta_box('espresso_news_post_box', $news_box_title, array(
1927
+				$this,
1928
+				'espresso_news_post_box',
1929
+		), $this->_wp_page_slug, 'side');
1930
+	}
1931
+
1932
+
1933
+
1934
+	/**
1935
+	 * Code for setting up espresso ratings request metabox.
1936
+	 */
1937
+	protected function _espresso_ratings_request()
1938
+	{
1939
+		if ( ! apply_filters('FHEE_show_ratings_request_meta_box', true)) {
1940
+			return '';
1941
+		}
1942
+		$ratings_box_title = apply_filters('FHEE__EE_Admin_Page___espresso_news_post_box__news_box_title', __('Keep Event Espresso Decaf Free', 'event_espresso'));
1943
+		add_meta_box('espresso_ratings_request', $ratings_box_title, array(
1944
+				$this,
1945
+				'espresso_ratings_request',
1946
+		), $this->_wp_page_slug, 'side');
1947
+	}
1948
+
1949
+
1950
+
1951
+	/**
1952
+	 * Code for setting up espresso ratings request metabox content.
1953
+	 */
1954
+	public function espresso_ratings_request()
1955
+	{
1956
+		$template_path = EE_ADMIN_TEMPLATE . 'espresso_ratings_request_content.template.php';
1957
+		EEH_Template::display_template($template_path, array());
1958
+	}
1959
+
1960
+
1961
+
1962
+	public static function cached_rss_display($rss_id, $url)
1963
+	{
1964
+		$loading = '<p class="widget-loading hide-if-no-js">' . __('Loading&#8230;') . '</p><p class="hide-if-js">' . __('This widget requires JavaScript.') . '</p>';
1965
+		$doing_ajax = (defined('DOING_AJAX') && DOING_AJAX);
1966
+		$pre = '<div class="espresso-rss-display">' . "\n\t";
1967
+		$pre .= '<span id="' . $rss_id . '_url" class="hidden">' . $url . '</span>';
1968
+		$post = '</div>' . "\n";
1969
+		$cache_key = 'ee_rss_' . md5($rss_id);
1970
+		if (false != ($output = get_transient($cache_key))) {
1971
+			echo $pre . $output . $post;
1972
+			return true;
1973
+		}
1974
+		if ( ! $doing_ajax) {
1975
+			echo $pre . $loading . $post;
1976
+			return false;
1977
+		}
1978
+		ob_start();
1979
+		wp_widget_rss_output($url, array('show_date' => 0, 'items' => 5));
1980
+		set_transient($cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS);
1981
+		return true;
1982
+	}
1983
+
1984
+
1985
+
1986
+	public function espresso_news_post_box()
1987
+	{
1988
+		?>
1989 1989
         <div class="padding">
1990 1990
             <div id="espresso_news_post_box_content" class="infolinks">
1991 1991
                 <?php
1992
-                // Get RSS Feed(s)
1993
-                $feed_url = apply_filters('FHEE__EE_Admin_Page__espresso_news_post_box__feed_url', 'http://eventespresso.com/feed/');
1994
-                $url = urlencode($feed_url);
1995
-                self::cached_rss_display('espresso_news_post_box_content', $url);
1996
-                ?>
1992
+				// Get RSS Feed(s)
1993
+				$feed_url = apply_filters('FHEE__EE_Admin_Page__espresso_news_post_box__feed_url', 'http://eventespresso.com/feed/');
1994
+				$url = urlencode($feed_url);
1995
+				self::cached_rss_display('espresso_news_post_box_content', $url);
1996
+				?>
1997 1997
             </div>
1998 1998
             <?php do_action('AHEE__EE_Admin_Page__espresso_news_post_box__after_content'); ?>
1999 1999
         </div>
2000 2000
         <?php
2001
-    }
2002
-
2003
-
2004
-
2005
-    private function _espresso_links_post_box()
2006
-    {
2007
-        //Hiding until we actually have content to put in here...
2008
-        //add_meta_box('espresso_links_post_box', __('Helpful Plugin Links', 'event_espresso'), array( $this, 'espresso_links_post_box'), $this->_wp_page_slug, 'side');
2009
-    }
2010
-
2011
-
2012
-
2013
-    public function espresso_links_post_box()
2014
-    {
2015
-        //Hiding until we actually have content to put in here...
2016
-        //$templatepath = EE_ADMIN_TEMPLATE . 'admin_general_metabox_contents_espresso_links.template.php';
2017
-        //EEH_Template::display_template( $templatepath );
2018
-    }
2019
-
2020
-
2021
-
2022
-    protected function _espresso_sponsors_post_box()
2023
-    {
2024
-        $show_sponsors = apply_filters('FHEE_show_sponsors_meta_box', true);
2025
-        if ($show_sponsors) {
2026
-            add_meta_box('espresso_sponsors_post_box', __('Event Espresso Highlights', 'event_espresso'), array($this, 'espresso_sponsors_post_box'), $this->_wp_page_slug, 'side');
2027
-        }
2028
-    }
2029
-
2030
-
2031
-
2032
-    public function espresso_sponsors_post_box()
2033
-    {
2034
-        $templatepath = EE_ADMIN_TEMPLATE . 'admin_general_metabox_contents_espresso_sponsors.template.php';
2035
-        EEH_Template::display_template($templatepath);
2036
-    }
2037
-
2038
-
2039
-
2040
-    private function _publish_post_box()
2041
-    {
2042
-        $meta_box_ref = 'espresso_' . $this->page_slug . '_editor_overview';
2043
-        //if there is a array('label' => array('publishbox' => 'some title') ) present in the _page_config array then we'll use that for the metabox label.  Otherwise we'll just use publish (publishbox itself could be an array of labels indexed by routes)
2044
-        if ( ! empty($this->_labels['publishbox'])) {
2045
-            $box_label = is_array($this->_labels['publishbox']) ? $this->_labels['publishbox'][$this->_req_action] : $this->_labels['publishbox'];
2046
-        } else {
2047
-            $box_label = __('Publish', 'event_espresso');
2048
-        }
2049
-        $box_label = apply_filters('FHEE__EE_Admin_Page___publish_post_box__box_label', $box_label, $this->_req_action, $this);
2050
-        add_meta_box($meta_box_ref, $box_label, array($this, 'editor_overview'), $this->_current_screen->id, 'side', 'high');
2051
-    }
2052
-
2053
-
2054
-
2055
-    public function editor_overview()
2056
-    {
2057
-        //if we have extra content set let's add it in if not make sure its empty
2058
-        $this->_template_args['publish_box_extra_content'] = isset($this->_template_args['publish_box_extra_content']) ? $this->_template_args['publish_box_extra_content'] : '';
2059
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_details_publish_metabox.template.php';
2060
-        echo EEH_Template::display_template($template_path, $this->_template_args, true);
2061
-    }
2062
-
2063
-
2064
-    /** end of globally available metaboxes section **/
2065
-    /*************************************************/
2066
-    /**
2067
-     * Public wrapper for the protected method.  Allows plugins/addons to externally call the
2068
-     * protected method.
2069
-     *
2070
-     * @see   $this->_set_publish_post_box_vars for param details
2071
-     * @since 4.6.0
2072
-     */
2073
-    public function set_publish_post_box_vars($name = null, $id = false, $delete = false, $save_close_redirect_URL = null, $both_btns = true)
2074
-    {
2075
-        $this->_set_publish_post_box_vars($name, $id, $delete, $save_close_redirect_URL, $both_btns);
2076
-    }
2077
-
2078
-
2079
-
2080
-    /**
2081
-     * Sets the _template_args arguments used by the _publish_post_box shortcut
2082
-     * Note: currently there is no validation for this.  However if you want the delete button, the
2083
-     * save, and save and close buttons to work properly, then you will want to include a
2084
-     * values for the name and id arguments.
2085
-     *
2086
-     * @todo  Add in validation for name/id arguments.
2087
-     * @param    string  $name                    key used for the action ID (i.e. event_id)
2088
-     * @param    int     $id                      id attached to the item published
2089
-     * @param    string  $delete                  page route callback for the delete action
2090
-     * @param    string  $save_close_redirect_URL custom URL to redirect to after Save & Close has been completed
2091
-     * @param    boolean $both_btns               whether to display BOTH the "Save & Close" and "Save" buttons or just the Save button
2092
-     * @throws \EE_Error
2093
-     */
2094
-    protected function _set_publish_post_box_vars(
2095
-            $name = '',
2096
-            $id = 0,
2097
-            $delete = '',
2098
-            $save_close_redirect_URL = '',
2099
-            $both_btns = true
2100
-    ) {
2101
-        // if Save & Close, use a custom redirect URL or default to the main page?
2102
-        $save_close_redirect_URL = ! empty($save_close_redirect_URL) ? $save_close_redirect_URL : $this->_admin_base_url;
2103
-        // create the Save & Close and Save buttons
2104
-        $this->_set_save_buttons($both_btns, array(), array(), $save_close_redirect_URL);
2105
-        //if we have extra content set let's add it in if not make sure its empty
2106
-        $this->_template_args['publish_box_extra_content'] = isset($this->_template_args['publish_box_extra_content']) ? $this->_template_args['publish_box_extra_content'] : '';
2107
-        if ($delete && ! empty($id)) {
2108
-            //make sure we have a default if just true is sent.
2109
-            $delete = ! empty($delete) ? $delete : 'delete';
2110
-            $delete_link_args = array($name => $id);
2111
-            $delete = $this->get_action_link_or_button(
2112
-                    $delete,
2113
-                    $delete,
2114
-                    $delete_link_args,
2115
-                    'submitdelete deletion',
2116
-                    '',
2117
-                    false
2118
-            );
2119
-        }
2120
-        $this->_template_args['publish_delete_link'] = ! empty($id) ? $delete : '';
2121
-        if ( ! empty($name) && ! empty($id)) {
2122
-            $hidden_field_arr[$name] = array(
2123
-                    'type'  => 'hidden',
2124
-                    'value' => $id,
2125
-            );
2126
-            $hf = $this->_generate_admin_form_fields($hidden_field_arr, 'array');
2127
-        } else {
2128
-            $hf = '';
2129
-        }
2130
-        // add hidden field
2131
-        $this->_template_args['publish_hidden_fields'] = ! empty($hf) ? $hf[$name]['field'] : $hf;
2132
-    }
2133
-
2134
-
2135
-
2136
-    /**
2137
-     *        displays an error message to ppl who have javascript disabled
2138
-     *
2139
-     * @access        private
2140
-     * @return        string
2141
-     */
2142
-    private function _display_no_javascript_warning()
2143
-    {
2144
-        ?>
2001
+	}
2002
+
2003
+
2004
+
2005
+	private function _espresso_links_post_box()
2006
+	{
2007
+		//Hiding until we actually have content to put in here...
2008
+		//add_meta_box('espresso_links_post_box', __('Helpful Plugin Links', 'event_espresso'), array( $this, 'espresso_links_post_box'), $this->_wp_page_slug, 'side');
2009
+	}
2010
+
2011
+
2012
+
2013
+	public function espresso_links_post_box()
2014
+	{
2015
+		//Hiding until we actually have content to put in here...
2016
+		//$templatepath = EE_ADMIN_TEMPLATE . 'admin_general_metabox_contents_espresso_links.template.php';
2017
+		//EEH_Template::display_template( $templatepath );
2018
+	}
2019
+
2020
+
2021
+
2022
+	protected function _espresso_sponsors_post_box()
2023
+	{
2024
+		$show_sponsors = apply_filters('FHEE_show_sponsors_meta_box', true);
2025
+		if ($show_sponsors) {
2026
+			add_meta_box('espresso_sponsors_post_box', __('Event Espresso Highlights', 'event_espresso'), array($this, 'espresso_sponsors_post_box'), $this->_wp_page_slug, 'side');
2027
+		}
2028
+	}
2029
+
2030
+
2031
+
2032
+	public function espresso_sponsors_post_box()
2033
+	{
2034
+		$templatepath = EE_ADMIN_TEMPLATE . 'admin_general_metabox_contents_espresso_sponsors.template.php';
2035
+		EEH_Template::display_template($templatepath);
2036
+	}
2037
+
2038
+
2039
+
2040
+	private function _publish_post_box()
2041
+	{
2042
+		$meta_box_ref = 'espresso_' . $this->page_slug . '_editor_overview';
2043
+		//if there is a array('label' => array('publishbox' => 'some title') ) present in the _page_config array then we'll use that for the metabox label.  Otherwise we'll just use publish (publishbox itself could be an array of labels indexed by routes)
2044
+		if ( ! empty($this->_labels['publishbox'])) {
2045
+			$box_label = is_array($this->_labels['publishbox']) ? $this->_labels['publishbox'][$this->_req_action] : $this->_labels['publishbox'];
2046
+		} else {
2047
+			$box_label = __('Publish', 'event_espresso');
2048
+		}
2049
+		$box_label = apply_filters('FHEE__EE_Admin_Page___publish_post_box__box_label', $box_label, $this->_req_action, $this);
2050
+		add_meta_box($meta_box_ref, $box_label, array($this, 'editor_overview'), $this->_current_screen->id, 'side', 'high');
2051
+	}
2052
+
2053
+
2054
+
2055
+	public function editor_overview()
2056
+	{
2057
+		//if we have extra content set let's add it in if not make sure its empty
2058
+		$this->_template_args['publish_box_extra_content'] = isset($this->_template_args['publish_box_extra_content']) ? $this->_template_args['publish_box_extra_content'] : '';
2059
+		$template_path = EE_ADMIN_TEMPLATE . 'admin_details_publish_metabox.template.php';
2060
+		echo EEH_Template::display_template($template_path, $this->_template_args, true);
2061
+	}
2062
+
2063
+
2064
+	/** end of globally available metaboxes section **/
2065
+	/*************************************************/
2066
+	/**
2067
+	 * Public wrapper for the protected method.  Allows plugins/addons to externally call the
2068
+	 * protected method.
2069
+	 *
2070
+	 * @see   $this->_set_publish_post_box_vars for param details
2071
+	 * @since 4.6.0
2072
+	 */
2073
+	public function set_publish_post_box_vars($name = null, $id = false, $delete = false, $save_close_redirect_URL = null, $both_btns = true)
2074
+	{
2075
+		$this->_set_publish_post_box_vars($name, $id, $delete, $save_close_redirect_URL, $both_btns);
2076
+	}
2077
+
2078
+
2079
+
2080
+	/**
2081
+	 * Sets the _template_args arguments used by the _publish_post_box shortcut
2082
+	 * Note: currently there is no validation for this.  However if you want the delete button, the
2083
+	 * save, and save and close buttons to work properly, then you will want to include a
2084
+	 * values for the name and id arguments.
2085
+	 *
2086
+	 * @todo  Add in validation for name/id arguments.
2087
+	 * @param    string  $name                    key used for the action ID (i.e. event_id)
2088
+	 * @param    int     $id                      id attached to the item published
2089
+	 * @param    string  $delete                  page route callback for the delete action
2090
+	 * @param    string  $save_close_redirect_URL custom URL to redirect to after Save & Close has been completed
2091
+	 * @param    boolean $both_btns               whether to display BOTH the "Save & Close" and "Save" buttons or just the Save button
2092
+	 * @throws \EE_Error
2093
+	 */
2094
+	protected function _set_publish_post_box_vars(
2095
+			$name = '',
2096
+			$id = 0,
2097
+			$delete = '',
2098
+			$save_close_redirect_URL = '',
2099
+			$both_btns = true
2100
+	) {
2101
+		// if Save & Close, use a custom redirect URL or default to the main page?
2102
+		$save_close_redirect_URL = ! empty($save_close_redirect_URL) ? $save_close_redirect_URL : $this->_admin_base_url;
2103
+		// create the Save & Close and Save buttons
2104
+		$this->_set_save_buttons($both_btns, array(), array(), $save_close_redirect_URL);
2105
+		//if we have extra content set let's add it in if not make sure its empty
2106
+		$this->_template_args['publish_box_extra_content'] = isset($this->_template_args['publish_box_extra_content']) ? $this->_template_args['publish_box_extra_content'] : '';
2107
+		if ($delete && ! empty($id)) {
2108
+			//make sure we have a default if just true is sent.
2109
+			$delete = ! empty($delete) ? $delete : 'delete';
2110
+			$delete_link_args = array($name => $id);
2111
+			$delete = $this->get_action_link_or_button(
2112
+					$delete,
2113
+					$delete,
2114
+					$delete_link_args,
2115
+					'submitdelete deletion',
2116
+					'',
2117
+					false
2118
+			);
2119
+		}
2120
+		$this->_template_args['publish_delete_link'] = ! empty($id) ? $delete : '';
2121
+		if ( ! empty($name) && ! empty($id)) {
2122
+			$hidden_field_arr[$name] = array(
2123
+					'type'  => 'hidden',
2124
+					'value' => $id,
2125
+			);
2126
+			$hf = $this->_generate_admin_form_fields($hidden_field_arr, 'array');
2127
+		} else {
2128
+			$hf = '';
2129
+		}
2130
+		// add hidden field
2131
+		$this->_template_args['publish_hidden_fields'] = ! empty($hf) ? $hf[$name]['field'] : $hf;
2132
+	}
2133
+
2134
+
2135
+
2136
+	/**
2137
+	 *        displays an error message to ppl who have javascript disabled
2138
+	 *
2139
+	 * @access        private
2140
+	 * @return        string
2141
+	 */
2142
+	private function _display_no_javascript_warning()
2143
+	{
2144
+		?>
2145 2145
         <noscript>
2146 2146
             <div id="no-js-message" class="error">
2147 2147
                 <p style="font-size:1.3em;">
@@ -2151,1267 +2151,1267 @@  discard block
 block discarded – undo
2151 2151
             </div>
2152 2152
         </noscript>
2153 2153
         <?php
2154
-    }
2154
+	}
2155 2155
 
2156 2156
 
2157 2157
 
2158
-    /**
2159
-     *        displays espresso success and/or error notices
2160
-     *
2161
-     * @access        private
2162
-     * @return        string
2163
-     */
2164
-    private function _display_espresso_notices()
2165
-    {
2166
-        $notices = $this->_get_transient(true);
2167
-        echo stripslashes($notices);
2168
-    }
2158
+	/**
2159
+	 *        displays espresso success and/or error notices
2160
+	 *
2161
+	 * @access        private
2162
+	 * @return        string
2163
+	 */
2164
+	private function _display_espresso_notices()
2165
+	{
2166
+		$notices = $this->_get_transient(true);
2167
+		echo stripslashes($notices);
2168
+	}
2169 2169
 
2170 2170
 
2171 2171
 
2172
-    /**
2173
-     *        spinny things pacify the masses
2174
-     *
2175
-     * @access private
2176
-     * @return string
2177
-     */
2178
-    protected function _add_admin_page_ajax_loading_img()
2179
-    {
2180
-        ?>
2172
+	/**
2173
+	 *        spinny things pacify the masses
2174
+	 *
2175
+	 * @access private
2176
+	 * @return string
2177
+	 */
2178
+	protected function _add_admin_page_ajax_loading_img()
2179
+	{
2180
+		?>
2181 2181
         <div id="espresso-ajax-loading" class="ajax-loading-grey">
2182 2182
             <span class="ee-spinner ee-spin"></span><span class="hidden"><?php esc_html_e('loading...', 'event_espresso'); ?></span>
2183 2183
         </div>
2184 2184
         <?php
2185
-    }
2185
+	}
2186 2186
 
2187 2187
 
2188 2188
 
2189
-    /**
2190
-     *        add admin page overlay for modal boxes
2191
-     *
2192
-     * @access private
2193
-     * @return string
2194
-     */
2195
-    protected function _add_admin_page_overlay()
2196
-    {
2197
-        ?>
2189
+	/**
2190
+	 *        add admin page overlay for modal boxes
2191
+	 *
2192
+	 * @access private
2193
+	 * @return string
2194
+	 */
2195
+	protected function _add_admin_page_overlay()
2196
+	{
2197
+		?>
2198 2198
         <div id="espresso-admin-page-overlay-dv" class=""></div>
2199 2199
         <?php
2200
-    }
2201
-
2202
-
2203
-
2204
-    /**
2205
-     * facade for add_meta_box
2206
-     *
2207
-     * @param string  $action        where the metabox get's displayed
2208
-     * @param string  $title         Title of Metabox (output in metabox header)
2209
-     * @param string  $callback      If not empty and $create_fun is set to false then we'll use a custom callback instead of the one created in here.
2210
-     * @param array   $callback_args an array of args supplied for the metabox
2211
-     * @param string  $column        what metabox column
2212
-     * @param string  $priority      give this metabox a priority (using accepted priorities for wp meta boxes)
2213
-     * @param boolean $create_func   default is true.  Basically we can say we don't WANT to have the runtime function created but just set our own callback for wp's add_meta_box.
2214
-     */
2215
-    public function _add_admin_page_meta_box($action, $title, $callback, $callback_args, $column = 'normal', $priority = 'high', $create_func = true)
2216
-    {
2217
-        do_action('AHEE_log', __FILE__, __FUNCTION__, $callback);
2218
-        //if we have empty callback args and we want to automatically create the metabox callback then we need to make sure the callback args are generated.
2219
-        if (empty($callback_args) && $create_func) {
2220
-            $callback_args = array(
2221
-                    'template_path' => $this->_template_path,
2222
-                    'template_args' => $this->_template_args,
2223
-            );
2224
-        }
2225
-        //if $create_func is true (default) then we automatically create the function for displaying the actual meta box.  If false then we take the $callback reference passed through and use it instead (so callers can define their own callback function/method if they wish)
2226
-        $call_back_func = $create_func ? create_function('$post, $metabox',
2227
-                'do_action( "AHEE_log", __FILE__, __FUNCTION__, ""); echo EEH_Template::display_template( $metabox["args"]["template_path"], $metabox["args"]["template_args"], TRUE );') : $callback;
2228
-        add_meta_box(str_replace('_', '-', $action) . '-mbox', $title, $call_back_func, $this->_wp_page_slug, $column, $priority, $callback_args);
2229
-    }
2230
-
2231
-
2232
-
2233
-    /**
2234
-     * generates HTML wrapper for and admin details page that contains metaboxes in columns
2235
-     *
2236
-     * @return [type] [description]
2237
-     */
2238
-    public function display_admin_page_with_metabox_columns()
2239
-    {
2240
-        $this->_template_args['post_body_content'] = $this->_template_args['admin_page_content'];
2241
-        $this->_template_args['admin_page_content'] = EEH_Template::display_template($this->_column_template_path, $this->_template_args, true);
2242
-        //the final wrapper
2243
-        $this->admin_page_wrapper();
2244
-    }
2245
-
2246
-
2247
-
2248
-    /**
2249
-     *        generates  HTML wrapper for an admin details page
2250
-     *
2251
-     * @access public
2252
-     * @return void
2253
-     */
2254
-    public function display_admin_page_with_sidebar()
2255
-    {
2256
-        $this->_display_admin_page(true);
2257
-    }
2258
-
2259
-
2260
-
2261
-    /**
2262
-     *        generates  HTML wrapper for an admin details page (except no sidebar)
2263
-     *
2264
-     * @access public
2265
-     * @return void
2266
-     */
2267
-    public function display_admin_page_with_no_sidebar()
2268
-    {
2269
-        $this->_display_admin_page();
2270
-    }
2271
-
2272
-
2273
-
2274
-    /**
2275
-     * generates HTML wrapper for an EE about admin page (no sidebar)
2276
-     *
2277
-     * @access public
2278
-     * @return void
2279
-     */
2280
-    public function display_about_admin_page()
2281
-    {
2282
-        $this->_display_admin_page(false, true);
2283
-    }
2284
-
2285
-
2286
-
2287
-    /**
2288
-     * display_admin_page
2289
-     * contains the code for actually displaying an admin page
2290
-     *
2291
-     * @access private
2292
-     * @param  boolean $sidebar true with sidebar, false without
2293
-     * @param  boolean $about   use the about admin wrapper instead of the default.
2294
-     * @return void
2295
-     */
2296
-    private function _display_admin_page($sidebar = false, $about = false)
2297
-    {
2298
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2299
-        //custom remove metaboxes hook to add or remove any metaboxes to/from Admin pages.
2300
-        do_action('AHEE__EE_Admin_Page___display_admin_page__modify_metaboxes');
2301
-        // set current wp page slug - looks like: event-espresso_page_event_categories
2302
-        // keep in mind "event-espresso" COULD be something else if the top level menu label has been translated.
2303
-        $this->_template_args['current_page'] = $this->_wp_page_slug;
2304
-        $this->_template_args['admin_page_wrapper_div_id'] = $this->_cpt_route
2305
-                ? 'poststuff'
2306
-                : 'espresso-default-admin';
2307
-        $template_path = $sidebar
2308
-                ? EE_ADMIN_TEMPLATE . 'admin_details_wrapper.template.php'
2309
-                : EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar.template.php';
2310
-        if (defined('DOING_AJAX') && DOING_AJAX) {
2311
-            $template_path = EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar_ajax.template.php';
2312
-        }
2313
-        $template_path = ! empty($this->_column_template_path) ? $this->_column_template_path : $template_path;
2314
-        $this->_template_args['post_body_content'] = isset($this->_template_args['admin_page_content']) ? $this->_template_args['admin_page_content'] : '';
2315
-        $this->_template_args['before_admin_page_content'] = isset($this->_template_args['before_admin_page_content']) ? $this->_template_args['before_admin_page_content'] : '';
2316
-        $this->_template_args['after_admin_page_content'] = isset($this->_template_args['after_admin_page_content']) ? $this->_template_args['after_admin_page_content'] : '';
2317
-        $this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, true);
2318
-        // the final template wrapper
2319
-        $this->admin_page_wrapper($about);
2320
-    }
2321
-
2322
-
2323
-
2324
-    /**
2325
-     * This is used to display caf preview pages.
2326
-     *
2327
-     * @since 4.3.2
2328
-     * @param string $utm_campaign_source what is the key used for google analytics link
2329
-     * @param bool   $display_sidebar     whether to use the sidebar template or the full template for the page.  TRUE = SHOW sidebar, FALSE = no sidebar. Default no sidebar.
2330
-     * @return void
2331
-     * @throws \EE_Error
2332
-     */
2333
-    public function display_admin_caf_preview_page($utm_campaign_source = '', $display_sidebar = true)
2334
-    {
2335
-        //let's generate a default preview action button if there isn't one already present.
2336
-        $this->_labels['buttons']['buy_now'] = __('Upgrade Now', 'event_espresso');
2337
-        $buy_now_url = add_query_arg(
2338
-                array(
2339
-                        'ee_ver'       => 'ee4',
2340
-                        'utm_source'   => 'ee4_plugin_admin',
2341
-                        'utm_medium'   => 'link',
2342
-                        'utm_campaign' => $utm_campaign_source,
2343
-                        'utm_content'  => 'buy_now_button',
2344
-                ),
2345
-                'http://eventespresso.com/pricing/'
2346
-        );
2347
-        $this->_template_args['preview_action_button'] = ! isset($this->_template_args['preview_action_button'])
2348
-                ? $this->get_action_link_or_button(
2349
-                        '',
2350
-                        'buy_now',
2351
-                        array(),
2352
-                        'button-primary button-large',
2353
-                        $buy_now_url,
2354
-                        true
2355
-                )
2356
-                : $this->_template_args['preview_action_button'];
2357
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_caf_full_page_preview.template.php';
2358
-        $this->_template_args['admin_page_content'] = EEH_Template::display_template(
2359
-                $template_path,
2360
-                $this->_template_args,
2361
-                true
2362
-        );
2363
-        $this->_display_admin_page($display_sidebar);
2364
-    }
2365
-
2366
-
2367
-
2368
-    /**
2369
-     * display_admin_list_table_page_with_sidebar
2370
-     * generates HTML wrapper for an admin_page with list_table
2371
-     *
2372
-     * @access public
2373
-     * @return void
2374
-     */
2375
-    public function display_admin_list_table_page_with_sidebar()
2376
-    {
2377
-        $this->_display_admin_list_table_page(true);
2378
-    }
2379
-
2380
-
2381
-
2382
-    /**
2383
-     * display_admin_list_table_page_with_no_sidebar
2384
-     * generates HTML wrapper for an admin_page with list_table (but with no sidebar)
2385
-     *
2386
-     * @access public
2387
-     * @return void
2388
-     */
2389
-    public function display_admin_list_table_page_with_no_sidebar()
2390
-    {
2391
-        $this->_display_admin_list_table_page();
2392
-    }
2393
-
2394
-
2395
-
2396
-    /**
2397
-     * generates html wrapper for an admin_list_table page
2398
-     *
2399
-     * @access private
2400
-     * @param boolean $sidebar whether to display with sidebar or not.
2401
-     * @return void
2402
-     */
2403
-    private function _display_admin_list_table_page($sidebar = false)
2404
-    {
2405
-        //setup search attributes
2406
-        $this->_set_search_attributes();
2407
-        $this->_template_args['current_page'] = $this->_wp_page_slug;
2408
-        $template_path = EE_ADMIN_TEMPLATE . 'admin_list_wrapper.template.php';
2409
-        $this->_template_args['table_url'] = defined('DOING_AJAX')
2410
-                ? add_query_arg(array('noheader' => 'true', 'route' => $this->_req_action), $this->_admin_base_url)
2411
-                : add_query_arg(array('route' => $this->_req_action), $this->_admin_base_url);
2412
-        $this->_template_args['list_table'] = $this->_list_table_object;
2413
-        $this->_template_args['current_route'] = $this->_req_action;
2414
-        $this->_template_args['list_table_class'] = get_class($this->_list_table_object);
2415
-        $ajax_sorting_callback = $this->_list_table_object->get_ajax_sorting_callback();
2416
-        if ( ! empty($ajax_sorting_callback)) {
2417
-            $sortable_list_table_form_fields = wp_nonce_field(
2418
-                    $ajax_sorting_callback . '_nonce',
2419
-                    $ajax_sorting_callback . '_nonce',
2420
-                    false,
2421
-                    false
2422
-            );
2423
-            //			$reorder_action = 'espresso_' . $ajax_sorting_callback . '_nonce';
2424
-            //			$sortable_list_table_form_fields = wp_nonce_field( $reorder_action, 'ajax_table_sort_nonce', FALSE, FALSE );
2425
-            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_page" name="ajax_table_sort_page" value="' . $this->page_slug . '" />';
2426
-            $sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_action" name="ajax_table_sort_action" value="' . $ajax_sorting_callback . '" />';
2427
-        } else {
2428
-            $sortable_list_table_form_fields = '';
2429
-        }
2430
-        $this->_template_args['sortable_list_table_form_fields'] = $sortable_list_table_form_fields;
2431
-        $hidden_form_fields = isset($this->_template_args['list_table_hidden_fields']) ? $this->_template_args['list_table_hidden_fields'] : '';
2432
-        $nonce_ref = $this->_req_action . '_nonce';
2433
-        $hidden_form_fields .= '<input type="hidden" name="' . $nonce_ref . '" value="' . wp_create_nonce($nonce_ref) . '">';
2434
-        $this->_template_args['list_table_hidden_fields'] = $hidden_form_fields;
2435
-        //display message about search results?
2436
-        $this->_template_args['before_list_table'] .= ! empty($this->_req_data['s'])
2437
-                ? '<p class="ee-search-results">' . sprintf(
2438
-                        esc_html__('Displaying search results for the search string: %1$s', 'event_espresso'),
2439
-                        trim($this->_req_data['s'], '%')
2440
-                ) . '</p>'
2441
-                : '';
2442
-        // filter before_list_table template arg
2443
-        $this->_template_args['before_list_table'] = apply_filters(
2444
-            'FHEE__EE_Admin_Page___display_admin_list_table_page__before_list_table__template_arg',
2445
-            $this->_template_args['before_list_table'],
2446
-            $this->page_slug,
2447
-            $this->_req_data,
2448
-            $this->_req_action
2449
-        );
2450
-        // convert to array and filter again
2451
-        // arrays are easier to inject new items in a specific location,
2452
-        // but would not be backwards compatible, so we have to add a new filter
2453
-        $this->_template_args['before_list_table'] = implode(
2454
-            " \n",
2455
-            (array) apply_filters(
2456
-                'FHEE__EE_Admin_Page___display_admin_list_table_page__before_list_table__template_args_array',
2457
-                (array) $this->_template_args['before_list_table'],
2458
-                $this->page_slug,
2459
-                $this->_req_data,
2460
-                $this->_req_action
2461
-            )
2462
-        );
2463
-        // filter after_list_table template arg
2464
-        $this->_template_args['after_list_table'] = apply_filters(
2465
-            'FHEE__EE_Admin_Page___display_admin_list_table_page__after_list_table__template_arg',
2466
-            $this->_template_args['after_list_table'],
2467
-            $this->page_slug,
2468
-            $this->_req_data,
2469
-            $this->_req_action
2470
-        );
2471
-        // convert to array and filter again
2472
-        // arrays are easier to inject new items in a specific location,
2473
-        // but would not be backwards compatible, so we have to add a new filter
2474
-        $this->_template_args['after_list_table'] = implode(
2475
-            " \n",
2476
-            (array) apply_filters(
2477
-                'FHEE__EE_Admin_Page___display_admin_list_table_page__after_list_table__template_args_array',
2478
-                (array) $this->_template_args['after_list_table'],
2479
-                $this->page_slug,
2480
-                $this->_req_data,
2481
-                $this->_req_action
2482
-            )
2483
-        );
2484
-        $this->_template_args['admin_page_content'] = EEH_Template::display_template(
2485
-                $template_path,
2486
-                $this->_template_args,
2487
-                true
2488
-        );
2489
-        // the final template wrapper
2490
-        if ($sidebar) {
2491
-            $this->display_admin_page_with_sidebar();
2492
-        } else {
2493
-            $this->display_admin_page_with_no_sidebar();
2494
-        }
2495
-    }
2496
-
2497
-
2498
-
2499
-    /**
2500
-     * This just prepares a legend using the given items and the admin_details_legend.template.php file and returns the html string for the legend.
2501
-     * $items are expected in an array in the following format:
2502
-     * $legend_items = array(
2503
-     *        'item_id' => array(
2504
-     *            'icon' => 'http://url_to_icon_being_described.png',
2505
-     *            'desc' => __('localized description of item');
2506
-     *        )
2507
-     * );
2508
-     *
2509
-     * @param  array $items see above for format of array
2510
-     * @return string        html string of legend
2511
-     */
2512
-    protected function _display_legend($items)
2513
-    {
2514
-        $this->_template_args['items'] = apply_filters('FHEE__EE_Admin_Page___display_legend__items', (array)$items, $this);
2515
-        $legend_template = EE_ADMIN_TEMPLATE . 'admin_details_legend.template.php';
2516
-        return EEH_Template::display_template($legend_template, $this->_template_args, true);
2517
-    }
2518
-
2519
-
2520
-
2521
-    /**
2522
-     * this is used whenever we're DOING_AJAX to return a formatted json array that our calling javascript can expect
2523
-     *
2524
-     * @param bool $sticky_notices Used to indicate whether you want to ensure notices are added to a transient instead of displayed.
2525
-     *                             The returned json object is created from an array in the following format:
2526
-     *                             array(
2527
-     *                             'error' => FALSE, //(default FALSE), contains any errors and/or exceptions (exceptions return json early),
2528
-     *                             'success' => FALSE, //(default FALSE) - contains any special success message.
2529
-     *                             'notices' => '', // - contains any EE_Error formatted notices
2530
-     *                             'content' => 'string can be html', //this is a string of formatted content (can be html)
2531
-     *                             'data' => array() //this can be any key/value pairs that a method returns for later json parsing by the js. We're also going to include the template args with every package (so js can pick out any
2532
-     *                             specific template args that might be included in here)
2533
-     *                             )
2534
-     *                             The json object is populated by whatever is set in the $_template_args property.
2535
-     * @return void
2536
-     */
2537
-    protected function _return_json($sticky_notices = false)
2538
-    {
2539
-        //make sure any EE_Error notices have been handled.
2540
-        $this->_process_notices(array(), true, $sticky_notices);
2541
-        $data = isset($this->_template_args['data']) ? $this->_template_args['data'] : array();
2542
-        unset($this->_template_args['data']);
2543
-        $json = array(
2544
-                'error'     => isset($this->_template_args['error']) ? $this->_template_args['error'] : false,
2545
-                'success'   => isset($this->_template_args['success']) ? $this->_template_args['success'] : false,
2546
-                'errors'    => isset($this->_template_args['errors']) ? $this->_template_args['errors'] : false,
2547
-                'attention' => isset($this->_template_args['attention']) ? $this->_template_args['attention'] : false,
2548
-                'notices'   => EE_Error::get_notices(),
2549
-                'content'   => isset($this->_template_args['admin_page_content']) ? $this->_template_args['admin_page_content'] : '',
2550
-                'data'      => array_merge($data, array('template_args' => $this->_template_args)),
2551
-                'isEEajax'  => true //special flag so any ajax.Success methods in js can identify this return package as a EEajax package.
2552
-        );
2553
-        // make sure there are no php errors or headers_sent.  Then we can set correct json header.
2554
-        if (null === error_get_last() || ! headers_sent()) {
2555
-            header('Content-Type: application/json; charset=UTF-8');
2556
-        }
2557
-        echo wp_json_encode($json);
2558
-
2559
-        exit();
2560
-    }
2561
-
2562
-
2563
-
2564
-    /**
2565
-     * Simply a wrapper for the protected method so we can call this outside the class (ONLY when doing ajax)
2566
-     *
2567
-     * @return void
2568
-     * @throws EE_Error
2569
-     */
2570
-    public function return_json()
2571
-    {
2572
-        if (defined('DOING_AJAX') && DOING_AJAX) {
2573
-            $this->_return_json();
2574
-        } else {
2575
-            throw new EE_Error(sprintf(__('The public %s method can only be called when DOING_AJAX = TRUE', 'event_espresso'), __FUNCTION__));
2576
-        }
2577
-    }
2578
-
2579
-
2580
-
2581
-    /**
2582
-     * This provides a way for child hook classes to send along themselves by reference so methods/properties within them can be accessed by EE_Admin_child pages. This is assigned to the $_hook_obj property.
2583
-     *
2584
-     * @param EE_Admin_Hooks $hook_obj This will be the object for the EE_Admin_Hooks child
2585
-     * @access   public
2586
-     */
2587
-    public function set_hook_object(EE_Admin_Hooks $hook_obj)
2588
-    {
2589
-        $this->_hook_obj = $hook_obj;
2590
-    }
2591
-
2592
-
2593
-
2594
-    /**
2595
-     *        generates  HTML wrapper with Tabbed nav for an admin page
2596
-     *
2597
-     * @access public
2598
-     * @param  boolean $about whether to use the special about page wrapper or default.
2599
-     * @return void
2600
-     */
2601
-    public function admin_page_wrapper($about = false)
2602
-    {
2603
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2604
-        $this->_nav_tabs = $this->_get_main_nav_tabs();
2605
-        $this->_template_args['nav_tabs'] = $this->_nav_tabs;
2606
-        $this->_template_args['admin_page_title'] = $this->_admin_page_title;
2607
-        $this->_template_args['before_admin_page_content'] = apply_filters('FHEE_before_admin_page_content' . $this->_current_page . $this->_current_view,
2608
-                isset($this->_template_args['before_admin_page_content']) ? $this->_template_args['before_admin_page_content'] : '');
2609
-        $this->_template_args['after_admin_page_content'] = apply_filters('FHEE_after_admin_page_content' . $this->_current_page . $this->_current_view,
2610
-                isset($this->_template_args['after_admin_page_content']) ? $this->_template_args['after_admin_page_content'] : '');
2611
-        $this->_template_args['after_admin_page_content'] .= $this->_set_help_popup_content();
2612
-        // load settings page wrapper template
2613
-        $template_path = ! defined('DOING_AJAX') ? EE_ADMIN_TEMPLATE . 'admin_wrapper.template.php' : EE_ADMIN_TEMPLATE . 'admin_wrapper_ajax.template.php';
2614
-        //about page?
2615
-        $template_path = $about ? EE_ADMIN_TEMPLATE . 'about_admin_wrapper.template.php' : $template_path;
2616
-        if (defined('DOING_AJAX')) {
2617
-            $this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, true);
2618
-            $this->_return_json();
2619
-        } else {
2620
-            EEH_Template::display_template($template_path, $this->_template_args);
2621
-        }
2622
-    }
2623
-
2624
-
2625
-
2626
-    /**
2627
-     * This returns the admin_nav tabs html using the configuration in the _nav_tabs property
2628
-     *
2629
-     * @return string html
2630
-     */
2631
-    protected function _get_main_nav_tabs()
2632
-    {
2633
-        //let's generate the html using the EEH_Tabbed_Content helper.  We do this here so that it's possible for child classes to add in nav tabs dynamically at the last minute (rather than setting in the page_routes array)
2634
-        return EEH_Tabbed_Content::display_admin_nav_tabs($this->_nav_tabs);
2635
-    }
2636
-
2637
-
2638
-
2639
-    /**
2640
-     *        sort nav tabs
2641
-     *
2642
-     * @access public
2643
-     * @param $a
2644
-     * @param $b
2645
-     * @return int
2646
-     */
2647
-    private function _sort_nav_tabs($a, $b)
2648
-    {
2649
-        if ($a['order'] == $b['order']) {
2650
-            return 0;
2651
-        }
2652
-        return ($a['order'] < $b['order']) ? -1 : 1;
2653
-    }
2654
-
2655
-
2656
-
2657
-    /**
2658
-     *    generates HTML for the forms used on admin pages
2659
-     *
2660
-     * @access protected
2661
-     * @param    array $input_vars - array of input field details
2662
-     * @param string   $generator  (options are 'string' or 'array', basically use this to indicate which generator to use)
2663
-     * @return string
2664
-     * @uses   EEH_Form_Fields::get_form_fields (/helper/EEH_Form_Fields.helper.php)
2665
-     * @uses   EEH_Form_Fields::get_form_fields_array (/helper/EEH_Form_Fields.helper.php)
2666
-     */
2667
-    protected function _generate_admin_form_fields($input_vars = array(), $generator = 'string', $id = false)
2668
-    {
2669
-        $content = $generator == 'string' ? EEH_Form_Fields::get_form_fields($input_vars, $id) : EEH_Form_Fields::get_form_fields_array($input_vars);
2670
-        return $content;
2671
-    }
2672
-
2673
-
2674
-
2675
-    /**
2676
-     * generates the "Save" and "Save & Close" buttons for edit forms
2677
-     *
2678
-     * @access protected
2679
-     * @param bool             $both     if true then both buttons will be generated.  If false then just the "Save & Close" button.
2680
-     * @param array            $text     if included, generator will use the given text for the buttons ( array([0] => 'Save', [1] => 'save & close')
2681
-     * @param array            $actions  if included allows us to set the actions that each button will carry out (i.e. via the "name" value in the button).  We can also use this to just dump default actions by submitting some other value.
2682
-     * @param bool|string|null $referrer if false then we just do the default action on save and close.  Other wise it will use the $referrer string. IF null, then we don't do ANYTHING on save and close (normal form handling).
2683
-     */
2684
-    protected function _set_save_buttons($both = true, $text = array(), $actions = array(), $referrer = null)
2685
-    {
2686
-        //make sure $text and $actions are in an array
2687
-        $text = (array)$text;
2688
-        $actions = (array)$actions;
2689
-        $referrer_url = empty($referrer) ? '' : $referrer;
2690
-        $referrer_url = ! $referrer ? '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $_SERVER['REQUEST_URI'] . '" />'
2691
-                : '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $referrer . '" />';
2692
-        $button_text = ! empty($text) ? $text : array(__('Save', 'event_espresso'), __('Save and Close', 'event_espresso'));
2693
-        $default_names = array('save', 'save_and_close');
2694
-        //add in a hidden index for the current page (so save and close redirects properly)
2695
-        $this->_template_args['save_buttons'] = $referrer_url;
2696
-        foreach ($button_text as $key => $button) {
2697
-            $ref = $default_names[$key];
2698
-            $id = $this->_current_view . '_' . $ref;
2699
-            $name = ! empty($actions) ? $actions[$key] : $ref;
2700
-            $this->_template_args['save_buttons'] .= '<input type="submit" class="button-primary ' . $ref . '" value="' . $button . '" name="' . $name . '" id="' . $id . '" />';
2701
-            if ( ! $both) {
2702
-                break;
2703
-            }
2704
-        }
2705
-    }
2706
-
2707
-
2708
-
2709
-    /**
2710
-     * Wrapper for the protected function.  Allows plugins/addons to call this to set the form tags.
2711
-     *
2712
-     * @see   $this->_set_add_edit_form_tags() for details on params
2713
-     * @since 4.6.0
2714
-     * @param string $route
2715
-     * @param array  $additional_hidden_fields
2716
-     */
2717
-    public function set_add_edit_form_tags($route = '', $additional_hidden_fields = array())
2718
-    {
2719
-        $this->_set_add_edit_form_tags($route, $additional_hidden_fields);
2720
-    }
2721
-
2722
-
2723
-
2724
-    /**
2725
-     * set form open and close tags on add/edit pages.
2726
-     *
2727
-     * @access protected
2728
-     * @param string $route                    the route you want the form to direct to
2729
-     * @param array  $additional_hidden_fields any additional hidden fields required in the form header
2730
-     * @return void
2731
-     */
2732
-    protected function _set_add_edit_form_tags($route = '', $additional_hidden_fields = array())
2733
-    {
2734
-        if (empty($route)) {
2735
-            $user_msg = __('An error occurred. No action was set for this page\'s form.', 'event_espresso');
2736
-            $dev_msg = $user_msg . "\n" . sprintf(__('The $route argument is required for the %s->%s method.', 'event_espresso'), __FUNCTION__, __CLASS__);
2737
-            EE_Error::add_error($user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__);
2738
-        }
2739
-        // open form
2740
-        $this->_template_args['before_admin_page_content'] = '<form name="form" method="post" action="' . $this->_admin_base_url . '" id="' . $route . '_event_form" >';
2741
-        // add nonce
2742
-        $nonce = wp_nonce_field($route . '_nonce', $route . '_nonce', false, false);
2743
-        //		$nonce = wp_nonce_field( $route . '_nonce', '_wpnonce', FALSE, FALSE );
2744
-        $this->_template_args['before_admin_page_content'] .= "\n\t" . $nonce;
2745
-        // add REQUIRED form action
2746
-        $hidden_fields = array(
2747
-                'action' => array('type' => 'hidden', 'value' => $route),
2748
-        );
2749
-        // merge arrays
2750
-        $hidden_fields = is_array($additional_hidden_fields) ? array_merge($hidden_fields, $additional_hidden_fields) : $hidden_fields;
2751
-        // generate form fields
2752
-        $form_fields = $this->_generate_admin_form_fields($hidden_fields, 'array');
2753
-        // add fields to form
2754
-        foreach ((array)$form_fields as $field_name => $form_field) {
2755
-            $this->_template_args['before_admin_page_content'] .= "\n\t" . $form_field['field'];
2756
-        }
2757
-        // close form
2758
-        $this->_template_args['after_admin_page_content'] = '</form>';
2759
-    }
2760
-
2761
-
2762
-
2763
-    /**
2764
-     * Public Wrapper for _redirect_after_action() method since its
2765
-     * discovered it would be useful for external code to have access.
2766
-     *
2767
-     * @see   EE_Admin_Page::_redirect_after_action() for params.
2768
-     * @since 4.5.0
2769
-     */
2770
-    public function redirect_after_action($success = false, $what = 'item', $action_desc = 'processed', $query_args = array(), $override_overwrite = false)
2771
-    {
2772
-        $this->_redirect_after_action($success, $what, $action_desc, $query_args, $override_overwrite);
2773
-    }
2774
-
2775
-
2776
-
2777
-    /**
2778
-     *    _redirect_after_action
2779
-     *
2780
-     * @param int    $success            - whether success was for two or more records, or just one, or none
2781
-     * @param string $what               - what the action was performed on
2782
-     * @param string $action_desc        - what was done ie: updated, deleted, etc
2783
-     * @param array  $query_args         - an array of query_args to be added to the URL to redirect to after the admin action is completed
2784
-     * @param BOOL   $override_overwrite by default all EE_Error::success messages are overwritten, this allows you to override this so that they show.
2785
-     * @access protected
2786
-     * @return void
2787
-     */
2788
-    protected function _redirect_after_action($success = 0, $what = 'item', $action_desc = 'processed', $query_args = array(), $override_overwrite = false)
2789
-    {
2790
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2791
-        //class name for actions/filters.
2792
-        $classname = get_class($this);
2793
-        //set redirect url. Note if there is a "page" index in the $query_args then we go with vanilla admin.php route, otherwise we go with whatever is set as the _admin_base_url
2794
-        $redirect_url = isset($query_args['page']) ? admin_url('admin.php') : $this->_admin_base_url;
2795
-        $notices = EE_Error::get_notices(false);
2796
-        // overwrite default success messages //BUT ONLY if overwrite not overridden
2797
-        if ( ! $override_overwrite || ! empty($notices['errors'])) {
2798
-            EE_Error::overwrite_success();
2799
-        }
2800
-        if ( ! empty($what) && ! empty($action_desc)) {
2801
-            // how many records affected ? more than one record ? or just one ?
2802
-            if ($success > 1 && empty($notices['errors'])) {
2803
-                // set plural msg
2804
-                EE_Error::add_success(
2805
-                        sprintf(
2806
-                                __('The "%s" have been successfully %s.', 'event_espresso'),
2807
-                                $what,
2808
-                                $action_desc
2809
-                        ),
2810
-                        __FILE__, __FUNCTION__, __LINE__
2811
-                );
2812
-            } else if ($success == 1 && empty($notices['errors'])) {
2813
-                // set singular msg
2814
-                EE_Error::add_success(
2815
-                        sprintf(
2816
-                                __('The "%s" has been successfully %s.', 'event_espresso'),
2817
-                                $what,
2818
-                                $action_desc
2819
-                        ),
2820
-                        __FILE__, __FUNCTION__, __LINE__
2821
-                );
2822
-            }
2823
-        }
2824
-        // check that $query_args isn't something crazy
2825
-        if ( ! is_array($query_args)) {
2826
-            $query_args = array();
2827
-        }
2828
-        /**
2829
-         * Allow injecting actions before the query_args are modified for possible different
2830
-         * redirections on save and close actions
2831
-         *
2832
-         * @since 4.2.0
2833
-         * @param array $query_args       The original query_args array coming into the
2834
-         *                                method.
2835
-         */
2836
-        do_action('AHEE__' . $classname . '___redirect_after_action__before_redirect_modification_' . $this->_req_action, $query_args);
2837
-        //calculate where we're going (if we have a "save and close" button pushed)
2838
-        if (isset($this->_req_data['save_and_close']) && isset($this->_req_data['save_and_close_referrer'])) {
2839
-            // even though we have the save_and_close referrer, we need to parse the url for the action in order to generate a nonce
2840
-            $parsed_url = parse_url($this->_req_data['save_and_close_referrer']);
2841
-            // regenerate query args array from referrer URL
2842
-            parse_str($parsed_url['query'], $query_args);
2843
-            // correct page and action will be in the query args now
2844
-            $redirect_url = admin_url('admin.php');
2845
-        }
2846
-        //merge any default query_args set in _default_route_query_args property
2847
-        if ( ! empty($this->_default_route_query_args) && ! $this->_is_UI_request) {
2848
-            $args_to_merge = array();
2849
-            foreach ($this->_default_route_query_args as $query_param => $query_value) {
2850
-                //is there a wp_referer array in our _default_route_query_args property?
2851
-                if ($query_param == 'wp_referer') {
2852
-                    $query_value = (array)$query_value;
2853
-                    foreach ($query_value as $reference => $value) {
2854
-                        if (strpos($reference, 'nonce') !== false) {
2855
-                            continue;
2856
-                        }
2857
-                        //finally we will override any arguments in the referer with
2858
-                        //what might be set on the _default_route_query_args array.
2859
-                        if (isset($this->_default_route_query_args[$reference])) {
2860
-                            $args_to_merge[$reference] = urlencode($this->_default_route_query_args[$reference]);
2861
-                        } else {
2862
-                            $args_to_merge[$reference] = urlencode($value);
2863
-                        }
2864
-                    }
2865
-                    continue;
2866
-                }
2867
-                $args_to_merge[$query_param] = $query_value;
2868
-            }
2869
-            //now let's merge these arguments but override with what was specifically sent in to the
2870
-            //redirect.
2871
-            $query_args = array_merge($args_to_merge, $query_args);
2872
-        }
2873
-        $this->_process_notices($query_args);
2874
-        // generate redirect url
2875
-        // if redirecting to anything other than the main page, add a nonce
2876
-        if (isset($query_args['action'])) {
2877
-            // manually generate wp_nonce and merge that with the query vars becuz the wp_nonce_url function wrecks havoc on some vars
2878
-            $query_args['_wpnonce'] = wp_create_nonce($query_args['action'] . '_nonce');
2879
-        }
2880
-        //we're adding some hooks and filters in here for processing any things just before redirects (example: an admin page has done an insert or update and we want to run something after that).
2881
-        do_action('AHEE_redirect_' . $classname . $this->_req_action, $query_args);
2882
-        $redirect_url = apply_filters('FHEE_redirect_' . $classname . $this->_req_action, self::add_query_args_and_nonce($query_args, $redirect_url), $query_args);
2883
-        // check if we're doing ajax.  If we are then lets just return the results and js can handle how it wants.
2884
-        if (defined('DOING_AJAX')) {
2885
-            $default_data = array(
2886
-                    'close'        => true,
2887
-                    'redirect_url' => $redirect_url,
2888
-                    'where'        => 'main',
2889
-                    'what'         => 'append',
2890
-            );
2891
-            $this->_template_args['success'] = $success;
2892
-            $this->_template_args['data'] = ! empty($this->_template_args['data']) ? array_merge($default_data, $this->_template_args['data']) : $default_data;
2893
-            $this->_return_json();
2894
-        }
2895
-        wp_safe_redirect($redirect_url);
2896
-        exit();
2897
-    }
2898
-
2899
-
2900
-
2901
-    /**
2902
-     * process any notices before redirecting (or returning ajax request)
2903
-     * This method sets the $this->_template_args['notices'] attribute;
2904
-     *
2905
-     * @param  array $query_args        any query args that need to be used for notice transient ('action')
2906
-     * @param bool   $skip_route_verify This is typically used when we are processing notices REALLY early and page_routes haven't been defined yet.
2907
-     * @param bool   $sticky_notices    This is used to flag that regardless of whether this is doing_ajax or not, we still save a transient for the notice.
2908
-     * @return void
2909
-     */
2910
-    protected function _process_notices($query_args = array(), $skip_route_verify = false, $sticky_notices = true)
2911
-    {
2912
-        //first let's set individual error properties if doing_ajax and the properties aren't already set.
2913
-        if (defined('DOING_AJAX') && DOING_AJAX) {
2914
-            $notices = EE_Error::get_notices(false);
2915
-            if (empty($this->_template_args['success'])) {
2916
-                $this->_template_args['success'] = isset($notices['success']) ? $notices['success'] : false;
2917
-            }
2918
-            if (empty($this->_template_args['errors'])) {
2919
-                $this->_template_args['errors'] = isset($notices['errors']) ? $notices['errors'] : false;
2920
-            }
2921
-            if (empty($this->_template_args['attention'])) {
2922
-                $this->_template_args['attention'] = isset($notices['attention']) ? $notices['attention'] : false;
2923
-            }
2924
-        }
2925
-        $this->_template_args['notices'] = EE_Error::get_notices();
2926
-        //IF this isn't ajax we need to create a transient for the notices using the route (however, overridden if $sticky_notices == true)
2927
-        if ( ! defined('DOING_AJAX') || $sticky_notices) {
2928
-            $route = isset($query_args['action']) ? $query_args['action'] : 'default';
2929
-            $this->_add_transient($route, $this->_template_args['notices'], true, $skip_route_verify);
2930
-        }
2931
-    }
2932
-
2933
-
2934
-
2935
-    /**
2936
-     * get_action_link_or_button
2937
-     * returns the button html for adding, editing, or deleting an item (depending on given type)
2938
-     *
2939
-     * @param string $action        use this to indicate which action the url is generated with.
2940
-     * @param string $type          accepted strings must be defined in the $_labels['button'] array(as the key) property.
2941
-     * @param array  $extra_request if the button requires extra params you can include them in $key=>$value pairs.
2942
-     * @param string $class         Use this to give the class for the button. Defaults to 'button-primary'
2943
-     * @param string $base_url      If this is not provided
2944
-     *                              the _admin_base_url will be used as the default for the button base_url.
2945
-     *                              Otherwise this value will be used.
2946
-     * @param bool   $exclude_nonce If true then no nonce will be in the generated button link.
2947
-     * @return string
2948
-     * @throws \EE_Error
2949
-     */
2950
-    public function get_action_link_or_button(
2951
-            $action,
2952
-            $type = 'add',
2953
-            $extra_request = array(),
2954
-            $class = 'button-primary',
2955
-            $base_url = '',
2956
-            $exclude_nonce = false
2957
-    ) {
2958
-        //first let's validate the action (if $base_url is FALSE otherwise validation will happen further along)
2959
-        if (empty($base_url) && ! isset($this->_page_routes[$action])) {
2960
-            throw new EE_Error(
2961
-                    sprintf(
2962
-                            __(
2963
-                                    'There is no page route for given action for the button.  This action was given: %s',
2964
-                                    'event_espresso'
2965
-                            ),
2966
-                            $action
2967
-                    )
2968
-            );
2969
-        }
2970
-        if ( ! isset($this->_labels['buttons'][$type])) {
2971
-            throw new EE_Error(
2972
-                    sprintf(
2973
-                            __(
2974
-                                    'There is no label for the given button type (%s). Labels are set in the <code>_page_config</code> property.',
2975
-                                    'event_espresso'
2976
-                            ),
2977
-                            $type
2978
-                    )
2979
-            );
2980
-        }
2981
-        //finally check user access for this button.
2982
-        $has_access = $this->check_user_access($action, true);
2983
-        if ( ! $has_access) {
2984
-            return '';
2985
-        }
2986
-        $_base_url = ! $base_url ? $this->_admin_base_url : $base_url;
2987
-        $query_args = array(
2988
-                'action' => $action,
2989
-        );
2990
-        //merge extra_request args but make sure our original action takes precedence and doesn't get overwritten.
2991
-        if ( ! empty($extra_request)) {
2992
-            $query_args = array_merge($extra_request, $query_args);
2993
-        }
2994
-        $url = self::add_query_args_and_nonce($query_args, $_base_url, false, $exclude_nonce);
2995
-        return EEH_Template::get_button_or_link($url, $this->_labels['buttons'][$type], $class);
2996
-    }
2997
-
2998
-
2999
-
3000
-    /**
3001
-     * _per_page_screen_option
3002
-     * Utility function for adding in a per_page_option in the screen_options_dropdown.
3003
-     *
3004
-     * @return void
3005
-     */
3006
-    protected function _per_page_screen_option()
3007
-    {
3008
-        $option = 'per_page';
3009
-        $args = array(
3010
-                'label'   => $this->_admin_page_title,
3011
-                'default' => 10,
3012
-                'option'  => $this->_current_page . '_' . $this->_current_view . '_per_page',
3013
-        );
3014
-        //ONLY add the screen option if the user has access to it.
3015
-        if ($this->check_user_access($this->_current_view, true)) {
3016
-            add_screen_option($option, $args);
3017
-        }
3018
-    }
3019
-
3020
-
3021
-
3022
-    /**
3023
-     * set_per_page_screen_option
3024
-     * All this does is make sure that WordPress saves any per_page screen options (if set) for the current page.
3025
-     * we have to do this rather than running inside the 'set-screen-options' hook because it runs earlier than admin_menu.
3026
-     *
3027
-     * @access private
3028
-     * @return void
3029
-     */
3030
-    private function _set_per_page_screen_options()
3031
-    {
3032
-        if (isset($_POST['wp_screen_options']) && is_array($_POST['wp_screen_options'])) {
3033
-            check_admin_referer('screen-options-nonce', 'screenoptionnonce');
3034
-            if ( ! $user = wp_get_current_user()) {
3035
-                return;
3036
-            }
3037
-            $option = $_POST['wp_screen_options']['option'];
3038
-            $value = $_POST['wp_screen_options']['value'];
3039
-            if ($option != sanitize_key($option)) {
3040
-                return;
3041
-            }
3042
-            $map_option = $option;
3043
-            $option = str_replace('-', '_', $option);
3044
-            switch ($map_option) {
3045
-                case $this->_current_page . '_' . $this->_current_view . '_per_page':
3046
-                    $value = (int)$value;
3047
-                    if ($value < 1 || $value > 999) {
3048
-                        return;
3049
-                    }
3050
-                    break;
3051
-                default:
3052
-                    $value = apply_filters('FHEE__EE_Admin_Page___set_per_page_screen_options__value', false, $option, $value);
3053
-                    if (false === $value) {
3054
-                        return;
3055
-                    }
3056
-                    break;
3057
-            }
3058
-            update_user_meta($user->ID, $option, $value);
3059
-            wp_safe_redirect(remove_query_arg(array('pagenum', 'apage', 'paged'), wp_get_referer()));
3060
-            exit;
3061
-        }
3062
-    }
3063
-
3064
-
3065
-
3066
-    /**
3067
-     * This just allows for setting the $_template_args property if it needs to be set outside the object
3068
-     *
3069
-     * @param array $data array that will be assigned to template args.
3070
-     */
3071
-    public function set_template_args($data)
3072
-    {
3073
-        $this->_template_args = array_merge($this->_template_args, (array)$data);
3074
-    }
3075
-
3076
-
3077
-
3078
-    /**
3079
-     * This makes available the WP transient system for temporarily moving data between routes
3080
-     *
3081
-     * @access protected
3082
-     * @param string $route             the route that should receive the transient
3083
-     * @param array  $data              the data that gets sent
3084
-     * @param bool   $notices           If this is for notices then we use this to indicate so, otherwise its just a normal route transient.
3085
-     * @param bool   $skip_route_verify Used to indicate we want to skip route verification.  This is usually ONLY used when we are adding a transient before page_routes have been defined.
3086
-     * @return void
3087
-     */
3088
-    protected function _add_transient($route, $data, $notices = false, $skip_route_verify = false)
3089
-    {
3090
-        $user_id = get_current_user_id();
3091
-        if ( ! $skip_route_verify) {
3092
-            $this->_verify_route($route);
3093
-        }
3094
-        //now let's set the string for what kind of transient we're setting
3095
-        $transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3096
-        $data = $notices ? array('notices' => $data) : $data;
3097
-        //is there already a transient for this route?  If there is then let's ADD to that transient
3098
-        $existing = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3099
-        if ($existing) {
3100
-            $data = array_merge((array)$data, (array)$existing);
3101
-        }
3102
-        if (is_multisite() && is_network_admin()) {
3103
-            set_site_transient($transient, $data, 8);
3104
-        } else {
3105
-            set_transient($transient, $data, 8);
3106
-        }
3107
-    }
3108
-
3109
-
3110
-
3111
-    /**
3112
-     * this retrieves the temporary transient that has been set for moving data between routes.
3113
-     *
3114
-     * @param bool $notices true we get notices transient. False we just return normal route transient
3115
-     * @return mixed data
3116
-     */
3117
-    protected function _get_transient($notices = false, $route = false)
3118
-    {
3119
-        $user_id = get_current_user_id();
3120
-        $route = ! $route ? $this->_req_action : $route;
3121
-        $transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3122
-        $data = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3123
-        //delete transient after retrieval (just in case it hasn't expired);
3124
-        if (is_multisite() && is_network_admin()) {
3125
-            delete_site_transient($transient);
3126
-        } else {
3127
-            delete_transient($transient);
3128
-        }
3129
-        return $notices && isset($data['notices']) ? $data['notices'] : $data;
3130
-    }
3131
-
3132
-
3133
-
3134
-    /**
3135
-     * The purpose of this method is just to run garbage collection on any EE transients that might have expired but would not be called later.
3136
-     * This will be assigned to run on a specific EE Admin page. (place the method in the default route callback on the EE_Admin page you want it run.)
3137
-     *
3138
-     * @return void
3139
-     */
3140
-    protected function _transient_garbage_collection()
3141
-    {
3142
-        global $wpdb;
3143
-        //retrieve all existing transients
3144
-        $query = "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%rte_tx_%' OR option_name LIKE '%rte_n_tx_%'";
3145
-        if ($results = $wpdb->get_results($query)) {
3146
-            foreach ($results as $result) {
3147
-                $transient = str_replace('_transient_', '', $result->option_name);
3148
-                get_transient($transient);
3149
-                if (is_multisite() && is_network_admin()) {
3150
-                    get_site_transient($transient);
3151
-                }
3152
-            }
3153
-        }
3154
-    }
3155
-
3156
-
3157
-
3158
-    /**
3159
-     * get_view
3160
-     *
3161
-     * @access public
3162
-     * @return string content of _view property
3163
-     */
3164
-    public function get_view()
3165
-    {
3166
-        return $this->_view;
3167
-    }
3168
-
3169
-
3170
-
3171
-    /**
3172
-     * getter for the protected $_views property
3173
-     *
3174
-     * @return array
3175
-     */
3176
-    public function get_views()
3177
-    {
3178
-        return $this->_views;
3179
-    }
3180
-
3181
-
3182
-
3183
-    /**
3184
-     * get_current_page
3185
-     *
3186
-     * @access public
3187
-     * @return string _current_page property value
3188
-     */
3189
-    public function get_current_page()
3190
-    {
3191
-        return $this->_current_page;
3192
-    }
3193
-
3194
-
3195
-
3196
-    /**
3197
-     * get_current_view
3198
-     *
3199
-     * @access public
3200
-     * @return string _current_view property value
3201
-     */
3202
-    public function get_current_view()
3203
-    {
3204
-        return $this->_current_view;
3205
-    }
3206
-
3207
-
3208
-
3209
-    /**
3210
-     * get_current_screen
3211
-     *
3212
-     * @access public
3213
-     * @return object The current WP_Screen object
3214
-     */
3215
-    public function get_current_screen()
3216
-    {
3217
-        return $this->_current_screen;
3218
-    }
3219
-
3220
-
3221
-
3222
-    /**
3223
-     * get_current_page_view_url
3224
-     *
3225
-     * @access public
3226
-     * @return string This returns the url for the current_page_view.
3227
-     */
3228
-    public function get_current_page_view_url()
3229
-    {
3230
-        return $this->_current_page_view_url;
3231
-    }
3232
-
3233
-
3234
-
3235
-    /**
3236
-     * just returns the _req_data property
3237
-     *
3238
-     * @return array
3239
-     */
3240
-    public function get_request_data()
3241
-    {
3242
-        return $this->_req_data;
3243
-    }
3244
-
3245
-
3246
-
3247
-    /**
3248
-     * returns the _req_data protected property
3249
-     *
3250
-     * @return string
3251
-     */
3252
-    public function get_req_action()
3253
-    {
3254
-        return $this->_req_action;
3255
-    }
3256
-
3257
-
3258
-
3259
-    /**
3260
-     * @return bool  value of $_is_caf property
3261
-     */
3262
-    public function is_caf()
3263
-    {
3264
-        return $this->_is_caf;
3265
-    }
3266
-
3267
-
3268
-
3269
-    /**
3270
-     * @return mixed
3271
-     */
3272
-    public function default_espresso_metaboxes()
3273
-    {
3274
-        return $this->_default_espresso_metaboxes;
3275
-    }
3276
-
3277
-
3278
-
3279
-    /**
3280
-     * @return mixed
3281
-     */
3282
-    public function admin_base_url()
3283
-    {
3284
-        return $this->_admin_base_url;
3285
-    }
3286
-
3287
-
3288
-
3289
-    /**
3290
-     * @return mixed
3291
-     */
3292
-    public function wp_page_slug()
3293
-    {
3294
-        return $this->_wp_page_slug;
3295
-    }
3296
-
3297
-
3298
-
3299
-    /**
3300
-     * updates  espresso configuration settings
3301
-     *
3302
-     * @access    protected
3303
-     * @param string                   $tab
3304
-     * @param EE_Config_Base|EE_Config $config
3305
-     * @param string                   $file file where error occurred
3306
-     * @param string                   $func function  where error occurred
3307
-     * @param string                   $line line no where error occurred
3308
-     * @return boolean
3309
-     */
3310
-    protected function _update_espresso_configuration($tab, $config, $file = '', $func = '', $line = '')
3311
-    {
3312
-        //remove any options that are NOT going to be saved with the config settings.
3313
-        if (isset($config->core->ee_ueip_optin)) {
3314
-            $config->core->ee_ueip_has_notified = true;
3315
-            // TODO: remove the following two lines and make sure values are migrated from 3.1
3316
-            update_option('ee_ueip_optin', $config->core->ee_ueip_optin);
3317
-            update_option('ee_ueip_has_notified', true);
3318
-        }
3319
-        // and save it (note we're also doing the network save here)
3320
-        $net_saved = is_main_site() ? EE_Network_Config::instance()->update_config(false, false) : true;
3321
-        $config_saved = EE_Config::instance()->update_espresso_config(false, false);
3322
-        if ($config_saved && $net_saved) {
3323
-            EE_Error::add_success(sprintf(__('"%s" have been successfully updated.', 'event_espresso'), $tab));
3324
-            return true;
3325
-        } else {
3326
-            EE_Error::add_error(sprintf(__('The "%s" were not updated.', 'event_espresso'), $tab), $file, $func, $line);
3327
-            return false;
3328
-        }
3329
-    }
3330
-
3331
-
3332
-
3333
-    /**
3334
-     * Returns an array to be used for EE_FOrm_Fields.helper.php's select_input as the $values argument.
3335
-     *
3336
-     * @return array
3337
-     */
3338
-    public function get_yes_no_values()
3339
-    {
3340
-        return $this->_yes_no_values;
3341
-    }
3342
-
3343
-
3344
-
3345
-    protected function _get_dir()
3346
-    {
3347
-        $reflector = new ReflectionClass(get_class($this));
3348
-        return dirname($reflector->getFileName());
3349
-    }
3350
-
3351
-
3352
-
3353
-    /**
3354
-     * A helper for getting a "next link".
3355
-     *
3356
-     * @param string $url   The url to link to
3357
-     * @param string $class The class to use.
3358
-     * @return string
3359
-     */
3360
-    protected function _next_link($url, $class = 'dashicons dashicons-arrow-right')
3361
-    {
3362
-        return '<a class="' . $class . '" href="' . $url . '"></a>';
3363
-    }
3364
-
3365
-
3366
-
3367
-    /**
3368
-     * A helper for getting a "previous link".
3369
-     *
3370
-     * @param string $url   The url to link to
3371
-     * @param string $class The class to use.
3372
-     * @return string
3373
-     */
3374
-    protected function _previous_link($url, $class = 'dashicons dashicons-arrow-left')
3375
-    {
3376
-        return '<a class="' . $class . '" href="' . $url . '"></a>';
3377
-    }
3378
-
3379
-
3380
-
3381
-
3382
-
3383
-
3384
-
3385
-    //below are some messages related methods that should be available across the EE_Admin system.  Note, these methods are NOT page specific
3386
-    /**
3387
-     * This processes an request to resend a registration and assumes we have a _REG_ID for doing so. So if the caller knows that the _REG_ID isn't in the req_data array but CAN obtain it, the caller should ADD the _REG_ID to the _req_data
3388
-     * array.
3389
-     *
3390
-     * @return bool success/fail
3391
-     */
3392
-    protected function _process_resend_registration()
3393
-    {
3394
-        $this->_template_args['success'] = EED_Messages::process_resend($this->_req_data);
3395
-        do_action('AHEE__EE_Admin_Page___process_resend_registration', $this->_template_args['success'], $this->_req_data);
3396
-        return $this->_template_args['success'];
3397
-    }
3398
-
3399
-
3400
-
3401
-    /**
3402
-     * This automatically processes any payment message notifications when manual payment has been applied.
3403
-     *
3404
-     * @access protected
3405
-     * @param \EE_Payment $payment
3406
-     * @return bool success/fail
3407
-     */
3408
-    protected function _process_payment_notification(EE_Payment $payment)
3409
-    {
3410
-        add_filter('FHEE__EE_Payment_Processor__process_registration_payments__display_notifications', '__return_true');
3411
-        do_action('AHEE__EE_Admin_Page___process_admin_payment_notification', $payment);
3412
-        $this->_template_args['success'] = apply_filters('FHEE__EE_Admin_Page___process_admin_payment_notification__success', false, $payment);
3413
-        return $this->_template_args['success'];
3414
-    }
2200
+	}
2201
+
2202
+
2203
+
2204
+	/**
2205
+	 * facade for add_meta_box
2206
+	 *
2207
+	 * @param string  $action        where the metabox get's displayed
2208
+	 * @param string  $title         Title of Metabox (output in metabox header)
2209
+	 * @param string  $callback      If not empty and $create_fun is set to false then we'll use a custom callback instead of the one created in here.
2210
+	 * @param array   $callback_args an array of args supplied for the metabox
2211
+	 * @param string  $column        what metabox column
2212
+	 * @param string  $priority      give this metabox a priority (using accepted priorities for wp meta boxes)
2213
+	 * @param boolean $create_func   default is true.  Basically we can say we don't WANT to have the runtime function created but just set our own callback for wp's add_meta_box.
2214
+	 */
2215
+	public function _add_admin_page_meta_box($action, $title, $callback, $callback_args, $column = 'normal', $priority = 'high', $create_func = true)
2216
+	{
2217
+		do_action('AHEE_log', __FILE__, __FUNCTION__, $callback);
2218
+		//if we have empty callback args and we want to automatically create the metabox callback then we need to make sure the callback args are generated.
2219
+		if (empty($callback_args) && $create_func) {
2220
+			$callback_args = array(
2221
+					'template_path' => $this->_template_path,
2222
+					'template_args' => $this->_template_args,
2223
+			);
2224
+		}
2225
+		//if $create_func is true (default) then we automatically create the function for displaying the actual meta box.  If false then we take the $callback reference passed through and use it instead (so callers can define their own callback function/method if they wish)
2226
+		$call_back_func = $create_func ? create_function('$post, $metabox',
2227
+				'do_action( "AHEE_log", __FILE__, __FUNCTION__, ""); echo EEH_Template::display_template( $metabox["args"]["template_path"], $metabox["args"]["template_args"], TRUE );') : $callback;
2228
+		add_meta_box(str_replace('_', '-', $action) . '-mbox', $title, $call_back_func, $this->_wp_page_slug, $column, $priority, $callback_args);
2229
+	}
2230
+
2231
+
2232
+
2233
+	/**
2234
+	 * generates HTML wrapper for and admin details page that contains metaboxes in columns
2235
+	 *
2236
+	 * @return [type] [description]
2237
+	 */
2238
+	public function display_admin_page_with_metabox_columns()
2239
+	{
2240
+		$this->_template_args['post_body_content'] = $this->_template_args['admin_page_content'];
2241
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template($this->_column_template_path, $this->_template_args, true);
2242
+		//the final wrapper
2243
+		$this->admin_page_wrapper();
2244
+	}
2245
+
2246
+
2247
+
2248
+	/**
2249
+	 *        generates  HTML wrapper for an admin details page
2250
+	 *
2251
+	 * @access public
2252
+	 * @return void
2253
+	 */
2254
+	public function display_admin_page_with_sidebar()
2255
+	{
2256
+		$this->_display_admin_page(true);
2257
+	}
2258
+
2259
+
2260
+
2261
+	/**
2262
+	 *        generates  HTML wrapper for an admin details page (except no sidebar)
2263
+	 *
2264
+	 * @access public
2265
+	 * @return void
2266
+	 */
2267
+	public function display_admin_page_with_no_sidebar()
2268
+	{
2269
+		$this->_display_admin_page();
2270
+	}
2271
+
2272
+
2273
+
2274
+	/**
2275
+	 * generates HTML wrapper for an EE about admin page (no sidebar)
2276
+	 *
2277
+	 * @access public
2278
+	 * @return void
2279
+	 */
2280
+	public function display_about_admin_page()
2281
+	{
2282
+		$this->_display_admin_page(false, true);
2283
+	}
2284
+
2285
+
2286
+
2287
+	/**
2288
+	 * display_admin_page
2289
+	 * contains the code for actually displaying an admin page
2290
+	 *
2291
+	 * @access private
2292
+	 * @param  boolean $sidebar true with sidebar, false without
2293
+	 * @param  boolean $about   use the about admin wrapper instead of the default.
2294
+	 * @return void
2295
+	 */
2296
+	private function _display_admin_page($sidebar = false, $about = false)
2297
+	{
2298
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2299
+		//custom remove metaboxes hook to add or remove any metaboxes to/from Admin pages.
2300
+		do_action('AHEE__EE_Admin_Page___display_admin_page__modify_metaboxes');
2301
+		// set current wp page slug - looks like: event-espresso_page_event_categories
2302
+		// keep in mind "event-espresso" COULD be something else if the top level menu label has been translated.
2303
+		$this->_template_args['current_page'] = $this->_wp_page_slug;
2304
+		$this->_template_args['admin_page_wrapper_div_id'] = $this->_cpt_route
2305
+				? 'poststuff'
2306
+				: 'espresso-default-admin';
2307
+		$template_path = $sidebar
2308
+				? EE_ADMIN_TEMPLATE . 'admin_details_wrapper.template.php'
2309
+				: EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar.template.php';
2310
+		if (defined('DOING_AJAX') && DOING_AJAX) {
2311
+			$template_path = EE_ADMIN_TEMPLATE . 'admin_details_wrapper_no_sidebar_ajax.template.php';
2312
+		}
2313
+		$template_path = ! empty($this->_column_template_path) ? $this->_column_template_path : $template_path;
2314
+		$this->_template_args['post_body_content'] = isset($this->_template_args['admin_page_content']) ? $this->_template_args['admin_page_content'] : '';
2315
+		$this->_template_args['before_admin_page_content'] = isset($this->_template_args['before_admin_page_content']) ? $this->_template_args['before_admin_page_content'] : '';
2316
+		$this->_template_args['after_admin_page_content'] = isset($this->_template_args['after_admin_page_content']) ? $this->_template_args['after_admin_page_content'] : '';
2317
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, true);
2318
+		// the final template wrapper
2319
+		$this->admin_page_wrapper($about);
2320
+	}
2321
+
2322
+
2323
+
2324
+	/**
2325
+	 * This is used to display caf preview pages.
2326
+	 *
2327
+	 * @since 4.3.2
2328
+	 * @param string $utm_campaign_source what is the key used for google analytics link
2329
+	 * @param bool   $display_sidebar     whether to use the sidebar template or the full template for the page.  TRUE = SHOW sidebar, FALSE = no sidebar. Default no sidebar.
2330
+	 * @return void
2331
+	 * @throws \EE_Error
2332
+	 */
2333
+	public function display_admin_caf_preview_page($utm_campaign_source = '', $display_sidebar = true)
2334
+	{
2335
+		//let's generate a default preview action button if there isn't one already present.
2336
+		$this->_labels['buttons']['buy_now'] = __('Upgrade Now', 'event_espresso');
2337
+		$buy_now_url = add_query_arg(
2338
+				array(
2339
+						'ee_ver'       => 'ee4',
2340
+						'utm_source'   => 'ee4_plugin_admin',
2341
+						'utm_medium'   => 'link',
2342
+						'utm_campaign' => $utm_campaign_source,
2343
+						'utm_content'  => 'buy_now_button',
2344
+				),
2345
+				'http://eventespresso.com/pricing/'
2346
+		);
2347
+		$this->_template_args['preview_action_button'] = ! isset($this->_template_args['preview_action_button'])
2348
+				? $this->get_action_link_or_button(
2349
+						'',
2350
+						'buy_now',
2351
+						array(),
2352
+						'button-primary button-large',
2353
+						$buy_now_url,
2354
+						true
2355
+				)
2356
+				: $this->_template_args['preview_action_button'];
2357
+		$template_path = EE_ADMIN_TEMPLATE . 'admin_caf_full_page_preview.template.php';
2358
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template(
2359
+				$template_path,
2360
+				$this->_template_args,
2361
+				true
2362
+		);
2363
+		$this->_display_admin_page($display_sidebar);
2364
+	}
2365
+
2366
+
2367
+
2368
+	/**
2369
+	 * display_admin_list_table_page_with_sidebar
2370
+	 * generates HTML wrapper for an admin_page with list_table
2371
+	 *
2372
+	 * @access public
2373
+	 * @return void
2374
+	 */
2375
+	public function display_admin_list_table_page_with_sidebar()
2376
+	{
2377
+		$this->_display_admin_list_table_page(true);
2378
+	}
2379
+
2380
+
2381
+
2382
+	/**
2383
+	 * display_admin_list_table_page_with_no_sidebar
2384
+	 * generates HTML wrapper for an admin_page with list_table (but with no sidebar)
2385
+	 *
2386
+	 * @access public
2387
+	 * @return void
2388
+	 */
2389
+	public function display_admin_list_table_page_with_no_sidebar()
2390
+	{
2391
+		$this->_display_admin_list_table_page();
2392
+	}
2393
+
2394
+
2395
+
2396
+	/**
2397
+	 * generates html wrapper for an admin_list_table page
2398
+	 *
2399
+	 * @access private
2400
+	 * @param boolean $sidebar whether to display with sidebar or not.
2401
+	 * @return void
2402
+	 */
2403
+	private function _display_admin_list_table_page($sidebar = false)
2404
+	{
2405
+		//setup search attributes
2406
+		$this->_set_search_attributes();
2407
+		$this->_template_args['current_page'] = $this->_wp_page_slug;
2408
+		$template_path = EE_ADMIN_TEMPLATE . 'admin_list_wrapper.template.php';
2409
+		$this->_template_args['table_url'] = defined('DOING_AJAX')
2410
+				? add_query_arg(array('noheader' => 'true', 'route' => $this->_req_action), $this->_admin_base_url)
2411
+				: add_query_arg(array('route' => $this->_req_action), $this->_admin_base_url);
2412
+		$this->_template_args['list_table'] = $this->_list_table_object;
2413
+		$this->_template_args['current_route'] = $this->_req_action;
2414
+		$this->_template_args['list_table_class'] = get_class($this->_list_table_object);
2415
+		$ajax_sorting_callback = $this->_list_table_object->get_ajax_sorting_callback();
2416
+		if ( ! empty($ajax_sorting_callback)) {
2417
+			$sortable_list_table_form_fields = wp_nonce_field(
2418
+					$ajax_sorting_callback . '_nonce',
2419
+					$ajax_sorting_callback . '_nonce',
2420
+					false,
2421
+					false
2422
+			);
2423
+			//			$reorder_action = 'espresso_' . $ajax_sorting_callback . '_nonce';
2424
+			//			$sortable_list_table_form_fields = wp_nonce_field( $reorder_action, 'ajax_table_sort_nonce', FALSE, FALSE );
2425
+			$sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_page" name="ajax_table_sort_page" value="' . $this->page_slug . '" />';
2426
+			$sortable_list_table_form_fields .= '<input type="hidden" id="ajax_table_sort_action" name="ajax_table_sort_action" value="' . $ajax_sorting_callback . '" />';
2427
+		} else {
2428
+			$sortable_list_table_form_fields = '';
2429
+		}
2430
+		$this->_template_args['sortable_list_table_form_fields'] = $sortable_list_table_form_fields;
2431
+		$hidden_form_fields = isset($this->_template_args['list_table_hidden_fields']) ? $this->_template_args['list_table_hidden_fields'] : '';
2432
+		$nonce_ref = $this->_req_action . '_nonce';
2433
+		$hidden_form_fields .= '<input type="hidden" name="' . $nonce_ref . '" value="' . wp_create_nonce($nonce_ref) . '">';
2434
+		$this->_template_args['list_table_hidden_fields'] = $hidden_form_fields;
2435
+		//display message about search results?
2436
+		$this->_template_args['before_list_table'] .= ! empty($this->_req_data['s'])
2437
+				? '<p class="ee-search-results">' . sprintf(
2438
+						esc_html__('Displaying search results for the search string: %1$s', 'event_espresso'),
2439
+						trim($this->_req_data['s'], '%')
2440
+				) . '</p>'
2441
+				: '';
2442
+		// filter before_list_table template arg
2443
+		$this->_template_args['before_list_table'] = apply_filters(
2444
+			'FHEE__EE_Admin_Page___display_admin_list_table_page__before_list_table__template_arg',
2445
+			$this->_template_args['before_list_table'],
2446
+			$this->page_slug,
2447
+			$this->_req_data,
2448
+			$this->_req_action
2449
+		);
2450
+		// convert to array and filter again
2451
+		// arrays are easier to inject new items in a specific location,
2452
+		// but would not be backwards compatible, so we have to add a new filter
2453
+		$this->_template_args['before_list_table'] = implode(
2454
+			" \n",
2455
+			(array) apply_filters(
2456
+				'FHEE__EE_Admin_Page___display_admin_list_table_page__before_list_table__template_args_array',
2457
+				(array) $this->_template_args['before_list_table'],
2458
+				$this->page_slug,
2459
+				$this->_req_data,
2460
+				$this->_req_action
2461
+			)
2462
+		);
2463
+		// filter after_list_table template arg
2464
+		$this->_template_args['after_list_table'] = apply_filters(
2465
+			'FHEE__EE_Admin_Page___display_admin_list_table_page__after_list_table__template_arg',
2466
+			$this->_template_args['after_list_table'],
2467
+			$this->page_slug,
2468
+			$this->_req_data,
2469
+			$this->_req_action
2470
+		);
2471
+		// convert to array and filter again
2472
+		// arrays are easier to inject new items in a specific location,
2473
+		// but would not be backwards compatible, so we have to add a new filter
2474
+		$this->_template_args['after_list_table'] = implode(
2475
+			" \n",
2476
+			(array) apply_filters(
2477
+				'FHEE__EE_Admin_Page___display_admin_list_table_page__after_list_table__template_args_array',
2478
+				(array) $this->_template_args['after_list_table'],
2479
+				$this->page_slug,
2480
+				$this->_req_data,
2481
+				$this->_req_action
2482
+			)
2483
+		);
2484
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template(
2485
+				$template_path,
2486
+				$this->_template_args,
2487
+				true
2488
+		);
2489
+		// the final template wrapper
2490
+		if ($sidebar) {
2491
+			$this->display_admin_page_with_sidebar();
2492
+		} else {
2493
+			$this->display_admin_page_with_no_sidebar();
2494
+		}
2495
+	}
2496
+
2497
+
2498
+
2499
+	/**
2500
+	 * This just prepares a legend using the given items and the admin_details_legend.template.php file and returns the html string for the legend.
2501
+	 * $items are expected in an array in the following format:
2502
+	 * $legend_items = array(
2503
+	 *        'item_id' => array(
2504
+	 *            'icon' => 'http://url_to_icon_being_described.png',
2505
+	 *            'desc' => __('localized description of item');
2506
+	 *        )
2507
+	 * );
2508
+	 *
2509
+	 * @param  array $items see above for format of array
2510
+	 * @return string        html string of legend
2511
+	 */
2512
+	protected function _display_legend($items)
2513
+	{
2514
+		$this->_template_args['items'] = apply_filters('FHEE__EE_Admin_Page___display_legend__items', (array)$items, $this);
2515
+		$legend_template = EE_ADMIN_TEMPLATE . 'admin_details_legend.template.php';
2516
+		return EEH_Template::display_template($legend_template, $this->_template_args, true);
2517
+	}
2518
+
2519
+
2520
+
2521
+	/**
2522
+	 * this is used whenever we're DOING_AJAX to return a formatted json array that our calling javascript can expect
2523
+	 *
2524
+	 * @param bool $sticky_notices Used to indicate whether you want to ensure notices are added to a transient instead of displayed.
2525
+	 *                             The returned json object is created from an array in the following format:
2526
+	 *                             array(
2527
+	 *                             'error' => FALSE, //(default FALSE), contains any errors and/or exceptions (exceptions return json early),
2528
+	 *                             'success' => FALSE, //(default FALSE) - contains any special success message.
2529
+	 *                             'notices' => '', // - contains any EE_Error formatted notices
2530
+	 *                             'content' => 'string can be html', //this is a string of formatted content (can be html)
2531
+	 *                             'data' => array() //this can be any key/value pairs that a method returns for later json parsing by the js. We're also going to include the template args with every package (so js can pick out any
2532
+	 *                             specific template args that might be included in here)
2533
+	 *                             )
2534
+	 *                             The json object is populated by whatever is set in the $_template_args property.
2535
+	 * @return void
2536
+	 */
2537
+	protected function _return_json($sticky_notices = false)
2538
+	{
2539
+		//make sure any EE_Error notices have been handled.
2540
+		$this->_process_notices(array(), true, $sticky_notices);
2541
+		$data = isset($this->_template_args['data']) ? $this->_template_args['data'] : array();
2542
+		unset($this->_template_args['data']);
2543
+		$json = array(
2544
+				'error'     => isset($this->_template_args['error']) ? $this->_template_args['error'] : false,
2545
+				'success'   => isset($this->_template_args['success']) ? $this->_template_args['success'] : false,
2546
+				'errors'    => isset($this->_template_args['errors']) ? $this->_template_args['errors'] : false,
2547
+				'attention' => isset($this->_template_args['attention']) ? $this->_template_args['attention'] : false,
2548
+				'notices'   => EE_Error::get_notices(),
2549
+				'content'   => isset($this->_template_args['admin_page_content']) ? $this->_template_args['admin_page_content'] : '',
2550
+				'data'      => array_merge($data, array('template_args' => $this->_template_args)),
2551
+				'isEEajax'  => true //special flag so any ajax.Success methods in js can identify this return package as a EEajax package.
2552
+		);
2553
+		// make sure there are no php errors or headers_sent.  Then we can set correct json header.
2554
+		if (null === error_get_last() || ! headers_sent()) {
2555
+			header('Content-Type: application/json; charset=UTF-8');
2556
+		}
2557
+		echo wp_json_encode($json);
2558
+
2559
+		exit();
2560
+	}
2561
+
2562
+
2563
+
2564
+	/**
2565
+	 * Simply a wrapper for the protected method so we can call this outside the class (ONLY when doing ajax)
2566
+	 *
2567
+	 * @return void
2568
+	 * @throws EE_Error
2569
+	 */
2570
+	public function return_json()
2571
+	{
2572
+		if (defined('DOING_AJAX') && DOING_AJAX) {
2573
+			$this->_return_json();
2574
+		} else {
2575
+			throw new EE_Error(sprintf(__('The public %s method can only be called when DOING_AJAX = TRUE', 'event_espresso'), __FUNCTION__));
2576
+		}
2577
+	}
2578
+
2579
+
2580
+
2581
+	/**
2582
+	 * This provides a way for child hook classes to send along themselves by reference so methods/properties within them can be accessed by EE_Admin_child pages. This is assigned to the $_hook_obj property.
2583
+	 *
2584
+	 * @param EE_Admin_Hooks $hook_obj This will be the object for the EE_Admin_Hooks child
2585
+	 * @access   public
2586
+	 */
2587
+	public function set_hook_object(EE_Admin_Hooks $hook_obj)
2588
+	{
2589
+		$this->_hook_obj = $hook_obj;
2590
+	}
2591
+
2592
+
2593
+
2594
+	/**
2595
+	 *        generates  HTML wrapper with Tabbed nav for an admin page
2596
+	 *
2597
+	 * @access public
2598
+	 * @param  boolean $about whether to use the special about page wrapper or default.
2599
+	 * @return void
2600
+	 */
2601
+	public function admin_page_wrapper($about = false)
2602
+	{
2603
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2604
+		$this->_nav_tabs = $this->_get_main_nav_tabs();
2605
+		$this->_template_args['nav_tabs'] = $this->_nav_tabs;
2606
+		$this->_template_args['admin_page_title'] = $this->_admin_page_title;
2607
+		$this->_template_args['before_admin_page_content'] = apply_filters('FHEE_before_admin_page_content' . $this->_current_page . $this->_current_view,
2608
+				isset($this->_template_args['before_admin_page_content']) ? $this->_template_args['before_admin_page_content'] : '');
2609
+		$this->_template_args['after_admin_page_content'] = apply_filters('FHEE_after_admin_page_content' . $this->_current_page . $this->_current_view,
2610
+				isset($this->_template_args['after_admin_page_content']) ? $this->_template_args['after_admin_page_content'] : '');
2611
+		$this->_template_args['after_admin_page_content'] .= $this->_set_help_popup_content();
2612
+		// load settings page wrapper template
2613
+		$template_path = ! defined('DOING_AJAX') ? EE_ADMIN_TEMPLATE . 'admin_wrapper.template.php' : EE_ADMIN_TEMPLATE . 'admin_wrapper_ajax.template.php';
2614
+		//about page?
2615
+		$template_path = $about ? EE_ADMIN_TEMPLATE . 'about_admin_wrapper.template.php' : $template_path;
2616
+		if (defined('DOING_AJAX')) {
2617
+			$this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, true);
2618
+			$this->_return_json();
2619
+		} else {
2620
+			EEH_Template::display_template($template_path, $this->_template_args);
2621
+		}
2622
+	}
2623
+
2624
+
2625
+
2626
+	/**
2627
+	 * This returns the admin_nav tabs html using the configuration in the _nav_tabs property
2628
+	 *
2629
+	 * @return string html
2630
+	 */
2631
+	protected function _get_main_nav_tabs()
2632
+	{
2633
+		//let's generate the html using the EEH_Tabbed_Content helper.  We do this here so that it's possible for child classes to add in nav tabs dynamically at the last minute (rather than setting in the page_routes array)
2634
+		return EEH_Tabbed_Content::display_admin_nav_tabs($this->_nav_tabs);
2635
+	}
2636
+
2637
+
2638
+
2639
+	/**
2640
+	 *        sort nav tabs
2641
+	 *
2642
+	 * @access public
2643
+	 * @param $a
2644
+	 * @param $b
2645
+	 * @return int
2646
+	 */
2647
+	private function _sort_nav_tabs($a, $b)
2648
+	{
2649
+		if ($a['order'] == $b['order']) {
2650
+			return 0;
2651
+		}
2652
+		return ($a['order'] < $b['order']) ? -1 : 1;
2653
+	}
2654
+
2655
+
2656
+
2657
+	/**
2658
+	 *    generates HTML for the forms used on admin pages
2659
+	 *
2660
+	 * @access protected
2661
+	 * @param    array $input_vars - array of input field details
2662
+	 * @param string   $generator  (options are 'string' or 'array', basically use this to indicate which generator to use)
2663
+	 * @return string
2664
+	 * @uses   EEH_Form_Fields::get_form_fields (/helper/EEH_Form_Fields.helper.php)
2665
+	 * @uses   EEH_Form_Fields::get_form_fields_array (/helper/EEH_Form_Fields.helper.php)
2666
+	 */
2667
+	protected function _generate_admin_form_fields($input_vars = array(), $generator = 'string', $id = false)
2668
+	{
2669
+		$content = $generator == 'string' ? EEH_Form_Fields::get_form_fields($input_vars, $id) : EEH_Form_Fields::get_form_fields_array($input_vars);
2670
+		return $content;
2671
+	}
2672
+
2673
+
2674
+
2675
+	/**
2676
+	 * generates the "Save" and "Save & Close" buttons for edit forms
2677
+	 *
2678
+	 * @access protected
2679
+	 * @param bool             $both     if true then both buttons will be generated.  If false then just the "Save & Close" button.
2680
+	 * @param array            $text     if included, generator will use the given text for the buttons ( array([0] => 'Save', [1] => 'save & close')
2681
+	 * @param array            $actions  if included allows us to set the actions that each button will carry out (i.e. via the "name" value in the button).  We can also use this to just dump default actions by submitting some other value.
2682
+	 * @param bool|string|null $referrer if false then we just do the default action on save and close.  Other wise it will use the $referrer string. IF null, then we don't do ANYTHING on save and close (normal form handling).
2683
+	 */
2684
+	protected function _set_save_buttons($both = true, $text = array(), $actions = array(), $referrer = null)
2685
+	{
2686
+		//make sure $text and $actions are in an array
2687
+		$text = (array)$text;
2688
+		$actions = (array)$actions;
2689
+		$referrer_url = empty($referrer) ? '' : $referrer;
2690
+		$referrer_url = ! $referrer ? '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $_SERVER['REQUEST_URI'] . '" />'
2691
+				: '<input type="hidden" id="save_and_close_referrer" name="save_and_close_referrer" value="' . $referrer . '" />';
2692
+		$button_text = ! empty($text) ? $text : array(__('Save', 'event_espresso'), __('Save and Close', 'event_espresso'));
2693
+		$default_names = array('save', 'save_and_close');
2694
+		//add in a hidden index for the current page (so save and close redirects properly)
2695
+		$this->_template_args['save_buttons'] = $referrer_url;
2696
+		foreach ($button_text as $key => $button) {
2697
+			$ref = $default_names[$key];
2698
+			$id = $this->_current_view . '_' . $ref;
2699
+			$name = ! empty($actions) ? $actions[$key] : $ref;
2700
+			$this->_template_args['save_buttons'] .= '<input type="submit" class="button-primary ' . $ref . '" value="' . $button . '" name="' . $name . '" id="' . $id . '" />';
2701
+			if ( ! $both) {
2702
+				break;
2703
+			}
2704
+		}
2705
+	}
2706
+
2707
+
2708
+
2709
+	/**
2710
+	 * Wrapper for the protected function.  Allows plugins/addons to call this to set the form tags.
2711
+	 *
2712
+	 * @see   $this->_set_add_edit_form_tags() for details on params
2713
+	 * @since 4.6.0
2714
+	 * @param string $route
2715
+	 * @param array  $additional_hidden_fields
2716
+	 */
2717
+	public function set_add_edit_form_tags($route = '', $additional_hidden_fields = array())
2718
+	{
2719
+		$this->_set_add_edit_form_tags($route, $additional_hidden_fields);
2720
+	}
2721
+
2722
+
2723
+
2724
+	/**
2725
+	 * set form open and close tags on add/edit pages.
2726
+	 *
2727
+	 * @access protected
2728
+	 * @param string $route                    the route you want the form to direct to
2729
+	 * @param array  $additional_hidden_fields any additional hidden fields required in the form header
2730
+	 * @return void
2731
+	 */
2732
+	protected function _set_add_edit_form_tags($route = '', $additional_hidden_fields = array())
2733
+	{
2734
+		if (empty($route)) {
2735
+			$user_msg = __('An error occurred. No action was set for this page\'s form.', 'event_espresso');
2736
+			$dev_msg = $user_msg . "\n" . sprintf(__('The $route argument is required for the %s->%s method.', 'event_espresso'), __FUNCTION__, __CLASS__);
2737
+			EE_Error::add_error($user_msg . '||' . $dev_msg, __FILE__, __FUNCTION__, __LINE__);
2738
+		}
2739
+		// open form
2740
+		$this->_template_args['before_admin_page_content'] = '<form name="form" method="post" action="' . $this->_admin_base_url . '" id="' . $route . '_event_form" >';
2741
+		// add nonce
2742
+		$nonce = wp_nonce_field($route . '_nonce', $route . '_nonce', false, false);
2743
+		//		$nonce = wp_nonce_field( $route . '_nonce', '_wpnonce', FALSE, FALSE );
2744
+		$this->_template_args['before_admin_page_content'] .= "\n\t" . $nonce;
2745
+		// add REQUIRED form action
2746
+		$hidden_fields = array(
2747
+				'action' => array('type' => 'hidden', 'value' => $route),
2748
+		);
2749
+		// merge arrays
2750
+		$hidden_fields = is_array($additional_hidden_fields) ? array_merge($hidden_fields, $additional_hidden_fields) : $hidden_fields;
2751
+		// generate form fields
2752
+		$form_fields = $this->_generate_admin_form_fields($hidden_fields, 'array');
2753
+		// add fields to form
2754
+		foreach ((array)$form_fields as $field_name => $form_field) {
2755
+			$this->_template_args['before_admin_page_content'] .= "\n\t" . $form_field['field'];
2756
+		}
2757
+		// close form
2758
+		$this->_template_args['after_admin_page_content'] = '</form>';
2759
+	}
2760
+
2761
+
2762
+
2763
+	/**
2764
+	 * Public Wrapper for _redirect_after_action() method since its
2765
+	 * discovered it would be useful for external code to have access.
2766
+	 *
2767
+	 * @see   EE_Admin_Page::_redirect_after_action() for params.
2768
+	 * @since 4.5.0
2769
+	 */
2770
+	public function redirect_after_action($success = false, $what = 'item', $action_desc = 'processed', $query_args = array(), $override_overwrite = false)
2771
+	{
2772
+		$this->_redirect_after_action($success, $what, $action_desc, $query_args, $override_overwrite);
2773
+	}
2774
+
2775
+
2776
+
2777
+	/**
2778
+	 *    _redirect_after_action
2779
+	 *
2780
+	 * @param int    $success            - whether success was for two or more records, or just one, or none
2781
+	 * @param string $what               - what the action was performed on
2782
+	 * @param string $action_desc        - what was done ie: updated, deleted, etc
2783
+	 * @param array  $query_args         - an array of query_args to be added to the URL to redirect to after the admin action is completed
2784
+	 * @param BOOL   $override_overwrite by default all EE_Error::success messages are overwritten, this allows you to override this so that they show.
2785
+	 * @access protected
2786
+	 * @return void
2787
+	 */
2788
+	protected function _redirect_after_action($success = 0, $what = 'item', $action_desc = 'processed', $query_args = array(), $override_overwrite = false)
2789
+	{
2790
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
2791
+		//class name for actions/filters.
2792
+		$classname = get_class($this);
2793
+		//set redirect url. Note if there is a "page" index in the $query_args then we go with vanilla admin.php route, otherwise we go with whatever is set as the _admin_base_url
2794
+		$redirect_url = isset($query_args['page']) ? admin_url('admin.php') : $this->_admin_base_url;
2795
+		$notices = EE_Error::get_notices(false);
2796
+		// overwrite default success messages //BUT ONLY if overwrite not overridden
2797
+		if ( ! $override_overwrite || ! empty($notices['errors'])) {
2798
+			EE_Error::overwrite_success();
2799
+		}
2800
+		if ( ! empty($what) && ! empty($action_desc)) {
2801
+			// how many records affected ? more than one record ? or just one ?
2802
+			if ($success > 1 && empty($notices['errors'])) {
2803
+				// set plural msg
2804
+				EE_Error::add_success(
2805
+						sprintf(
2806
+								__('The "%s" have been successfully %s.', 'event_espresso'),
2807
+								$what,
2808
+								$action_desc
2809
+						),
2810
+						__FILE__, __FUNCTION__, __LINE__
2811
+				);
2812
+			} else if ($success == 1 && empty($notices['errors'])) {
2813
+				// set singular msg
2814
+				EE_Error::add_success(
2815
+						sprintf(
2816
+								__('The "%s" has been successfully %s.', 'event_espresso'),
2817
+								$what,
2818
+								$action_desc
2819
+						),
2820
+						__FILE__, __FUNCTION__, __LINE__
2821
+				);
2822
+			}
2823
+		}
2824
+		// check that $query_args isn't something crazy
2825
+		if ( ! is_array($query_args)) {
2826
+			$query_args = array();
2827
+		}
2828
+		/**
2829
+		 * Allow injecting actions before the query_args are modified for possible different
2830
+		 * redirections on save and close actions
2831
+		 *
2832
+		 * @since 4.2.0
2833
+		 * @param array $query_args       The original query_args array coming into the
2834
+		 *                                method.
2835
+		 */
2836
+		do_action('AHEE__' . $classname . '___redirect_after_action__before_redirect_modification_' . $this->_req_action, $query_args);
2837
+		//calculate where we're going (if we have a "save and close" button pushed)
2838
+		if (isset($this->_req_data['save_and_close']) && isset($this->_req_data['save_and_close_referrer'])) {
2839
+			// even though we have the save_and_close referrer, we need to parse the url for the action in order to generate a nonce
2840
+			$parsed_url = parse_url($this->_req_data['save_and_close_referrer']);
2841
+			// regenerate query args array from referrer URL
2842
+			parse_str($parsed_url['query'], $query_args);
2843
+			// correct page and action will be in the query args now
2844
+			$redirect_url = admin_url('admin.php');
2845
+		}
2846
+		//merge any default query_args set in _default_route_query_args property
2847
+		if ( ! empty($this->_default_route_query_args) && ! $this->_is_UI_request) {
2848
+			$args_to_merge = array();
2849
+			foreach ($this->_default_route_query_args as $query_param => $query_value) {
2850
+				//is there a wp_referer array in our _default_route_query_args property?
2851
+				if ($query_param == 'wp_referer') {
2852
+					$query_value = (array)$query_value;
2853
+					foreach ($query_value as $reference => $value) {
2854
+						if (strpos($reference, 'nonce') !== false) {
2855
+							continue;
2856
+						}
2857
+						//finally we will override any arguments in the referer with
2858
+						//what might be set on the _default_route_query_args array.
2859
+						if (isset($this->_default_route_query_args[$reference])) {
2860
+							$args_to_merge[$reference] = urlencode($this->_default_route_query_args[$reference]);
2861
+						} else {
2862
+							$args_to_merge[$reference] = urlencode($value);
2863
+						}
2864
+					}
2865
+					continue;
2866
+				}
2867
+				$args_to_merge[$query_param] = $query_value;
2868
+			}
2869
+			//now let's merge these arguments but override with what was specifically sent in to the
2870
+			//redirect.
2871
+			$query_args = array_merge($args_to_merge, $query_args);
2872
+		}
2873
+		$this->_process_notices($query_args);
2874
+		// generate redirect url
2875
+		// if redirecting to anything other than the main page, add a nonce
2876
+		if (isset($query_args['action'])) {
2877
+			// manually generate wp_nonce and merge that with the query vars becuz the wp_nonce_url function wrecks havoc on some vars
2878
+			$query_args['_wpnonce'] = wp_create_nonce($query_args['action'] . '_nonce');
2879
+		}
2880
+		//we're adding some hooks and filters in here for processing any things just before redirects (example: an admin page has done an insert or update and we want to run something after that).
2881
+		do_action('AHEE_redirect_' . $classname . $this->_req_action, $query_args);
2882
+		$redirect_url = apply_filters('FHEE_redirect_' . $classname . $this->_req_action, self::add_query_args_and_nonce($query_args, $redirect_url), $query_args);
2883
+		// check if we're doing ajax.  If we are then lets just return the results and js can handle how it wants.
2884
+		if (defined('DOING_AJAX')) {
2885
+			$default_data = array(
2886
+					'close'        => true,
2887
+					'redirect_url' => $redirect_url,
2888
+					'where'        => 'main',
2889
+					'what'         => 'append',
2890
+			);
2891
+			$this->_template_args['success'] = $success;
2892
+			$this->_template_args['data'] = ! empty($this->_template_args['data']) ? array_merge($default_data, $this->_template_args['data']) : $default_data;
2893
+			$this->_return_json();
2894
+		}
2895
+		wp_safe_redirect($redirect_url);
2896
+		exit();
2897
+	}
2898
+
2899
+
2900
+
2901
+	/**
2902
+	 * process any notices before redirecting (or returning ajax request)
2903
+	 * This method sets the $this->_template_args['notices'] attribute;
2904
+	 *
2905
+	 * @param  array $query_args        any query args that need to be used for notice transient ('action')
2906
+	 * @param bool   $skip_route_verify This is typically used when we are processing notices REALLY early and page_routes haven't been defined yet.
2907
+	 * @param bool   $sticky_notices    This is used to flag that regardless of whether this is doing_ajax or not, we still save a transient for the notice.
2908
+	 * @return void
2909
+	 */
2910
+	protected function _process_notices($query_args = array(), $skip_route_verify = false, $sticky_notices = true)
2911
+	{
2912
+		//first let's set individual error properties if doing_ajax and the properties aren't already set.
2913
+		if (defined('DOING_AJAX') && DOING_AJAX) {
2914
+			$notices = EE_Error::get_notices(false);
2915
+			if (empty($this->_template_args['success'])) {
2916
+				$this->_template_args['success'] = isset($notices['success']) ? $notices['success'] : false;
2917
+			}
2918
+			if (empty($this->_template_args['errors'])) {
2919
+				$this->_template_args['errors'] = isset($notices['errors']) ? $notices['errors'] : false;
2920
+			}
2921
+			if (empty($this->_template_args['attention'])) {
2922
+				$this->_template_args['attention'] = isset($notices['attention']) ? $notices['attention'] : false;
2923
+			}
2924
+		}
2925
+		$this->_template_args['notices'] = EE_Error::get_notices();
2926
+		//IF this isn't ajax we need to create a transient for the notices using the route (however, overridden if $sticky_notices == true)
2927
+		if ( ! defined('DOING_AJAX') || $sticky_notices) {
2928
+			$route = isset($query_args['action']) ? $query_args['action'] : 'default';
2929
+			$this->_add_transient($route, $this->_template_args['notices'], true, $skip_route_verify);
2930
+		}
2931
+	}
2932
+
2933
+
2934
+
2935
+	/**
2936
+	 * get_action_link_or_button
2937
+	 * returns the button html for adding, editing, or deleting an item (depending on given type)
2938
+	 *
2939
+	 * @param string $action        use this to indicate which action the url is generated with.
2940
+	 * @param string $type          accepted strings must be defined in the $_labels['button'] array(as the key) property.
2941
+	 * @param array  $extra_request if the button requires extra params you can include them in $key=>$value pairs.
2942
+	 * @param string $class         Use this to give the class for the button. Defaults to 'button-primary'
2943
+	 * @param string $base_url      If this is not provided
2944
+	 *                              the _admin_base_url will be used as the default for the button base_url.
2945
+	 *                              Otherwise this value will be used.
2946
+	 * @param bool   $exclude_nonce If true then no nonce will be in the generated button link.
2947
+	 * @return string
2948
+	 * @throws \EE_Error
2949
+	 */
2950
+	public function get_action_link_or_button(
2951
+			$action,
2952
+			$type = 'add',
2953
+			$extra_request = array(),
2954
+			$class = 'button-primary',
2955
+			$base_url = '',
2956
+			$exclude_nonce = false
2957
+	) {
2958
+		//first let's validate the action (if $base_url is FALSE otherwise validation will happen further along)
2959
+		if (empty($base_url) && ! isset($this->_page_routes[$action])) {
2960
+			throw new EE_Error(
2961
+					sprintf(
2962
+							__(
2963
+									'There is no page route for given action for the button.  This action was given: %s',
2964
+									'event_espresso'
2965
+							),
2966
+							$action
2967
+					)
2968
+			);
2969
+		}
2970
+		if ( ! isset($this->_labels['buttons'][$type])) {
2971
+			throw new EE_Error(
2972
+					sprintf(
2973
+							__(
2974
+									'There is no label for the given button type (%s). Labels are set in the <code>_page_config</code> property.',
2975
+									'event_espresso'
2976
+							),
2977
+							$type
2978
+					)
2979
+			);
2980
+		}
2981
+		//finally check user access for this button.
2982
+		$has_access = $this->check_user_access($action, true);
2983
+		if ( ! $has_access) {
2984
+			return '';
2985
+		}
2986
+		$_base_url = ! $base_url ? $this->_admin_base_url : $base_url;
2987
+		$query_args = array(
2988
+				'action' => $action,
2989
+		);
2990
+		//merge extra_request args but make sure our original action takes precedence and doesn't get overwritten.
2991
+		if ( ! empty($extra_request)) {
2992
+			$query_args = array_merge($extra_request, $query_args);
2993
+		}
2994
+		$url = self::add_query_args_and_nonce($query_args, $_base_url, false, $exclude_nonce);
2995
+		return EEH_Template::get_button_or_link($url, $this->_labels['buttons'][$type], $class);
2996
+	}
2997
+
2998
+
2999
+
3000
+	/**
3001
+	 * _per_page_screen_option
3002
+	 * Utility function for adding in a per_page_option in the screen_options_dropdown.
3003
+	 *
3004
+	 * @return void
3005
+	 */
3006
+	protected function _per_page_screen_option()
3007
+	{
3008
+		$option = 'per_page';
3009
+		$args = array(
3010
+				'label'   => $this->_admin_page_title,
3011
+				'default' => 10,
3012
+				'option'  => $this->_current_page . '_' . $this->_current_view . '_per_page',
3013
+		);
3014
+		//ONLY add the screen option if the user has access to it.
3015
+		if ($this->check_user_access($this->_current_view, true)) {
3016
+			add_screen_option($option, $args);
3017
+		}
3018
+	}
3019
+
3020
+
3021
+
3022
+	/**
3023
+	 * set_per_page_screen_option
3024
+	 * All this does is make sure that WordPress saves any per_page screen options (if set) for the current page.
3025
+	 * we have to do this rather than running inside the 'set-screen-options' hook because it runs earlier than admin_menu.
3026
+	 *
3027
+	 * @access private
3028
+	 * @return void
3029
+	 */
3030
+	private function _set_per_page_screen_options()
3031
+	{
3032
+		if (isset($_POST['wp_screen_options']) && is_array($_POST['wp_screen_options'])) {
3033
+			check_admin_referer('screen-options-nonce', 'screenoptionnonce');
3034
+			if ( ! $user = wp_get_current_user()) {
3035
+				return;
3036
+			}
3037
+			$option = $_POST['wp_screen_options']['option'];
3038
+			$value = $_POST['wp_screen_options']['value'];
3039
+			if ($option != sanitize_key($option)) {
3040
+				return;
3041
+			}
3042
+			$map_option = $option;
3043
+			$option = str_replace('-', '_', $option);
3044
+			switch ($map_option) {
3045
+				case $this->_current_page . '_' . $this->_current_view . '_per_page':
3046
+					$value = (int)$value;
3047
+					if ($value < 1 || $value > 999) {
3048
+						return;
3049
+					}
3050
+					break;
3051
+				default:
3052
+					$value = apply_filters('FHEE__EE_Admin_Page___set_per_page_screen_options__value', false, $option, $value);
3053
+					if (false === $value) {
3054
+						return;
3055
+					}
3056
+					break;
3057
+			}
3058
+			update_user_meta($user->ID, $option, $value);
3059
+			wp_safe_redirect(remove_query_arg(array('pagenum', 'apage', 'paged'), wp_get_referer()));
3060
+			exit;
3061
+		}
3062
+	}
3063
+
3064
+
3065
+
3066
+	/**
3067
+	 * This just allows for setting the $_template_args property if it needs to be set outside the object
3068
+	 *
3069
+	 * @param array $data array that will be assigned to template args.
3070
+	 */
3071
+	public function set_template_args($data)
3072
+	{
3073
+		$this->_template_args = array_merge($this->_template_args, (array)$data);
3074
+	}
3075
+
3076
+
3077
+
3078
+	/**
3079
+	 * This makes available the WP transient system for temporarily moving data between routes
3080
+	 *
3081
+	 * @access protected
3082
+	 * @param string $route             the route that should receive the transient
3083
+	 * @param array  $data              the data that gets sent
3084
+	 * @param bool   $notices           If this is for notices then we use this to indicate so, otherwise its just a normal route transient.
3085
+	 * @param bool   $skip_route_verify Used to indicate we want to skip route verification.  This is usually ONLY used when we are adding a transient before page_routes have been defined.
3086
+	 * @return void
3087
+	 */
3088
+	protected function _add_transient($route, $data, $notices = false, $skip_route_verify = false)
3089
+	{
3090
+		$user_id = get_current_user_id();
3091
+		if ( ! $skip_route_verify) {
3092
+			$this->_verify_route($route);
3093
+		}
3094
+		//now let's set the string for what kind of transient we're setting
3095
+		$transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3096
+		$data = $notices ? array('notices' => $data) : $data;
3097
+		//is there already a transient for this route?  If there is then let's ADD to that transient
3098
+		$existing = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3099
+		if ($existing) {
3100
+			$data = array_merge((array)$data, (array)$existing);
3101
+		}
3102
+		if (is_multisite() && is_network_admin()) {
3103
+			set_site_transient($transient, $data, 8);
3104
+		} else {
3105
+			set_transient($transient, $data, 8);
3106
+		}
3107
+	}
3108
+
3109
+
3110
+
3111
+	/**
3112
+	 * this retrieves the temporary transient that has been set for moving data between routes.
3113
+	 *
3114
+	 * @param bool $notices true we get notices transient. False we just return normal route transient
3115
+	 * @return mixed data
3116
+	 */
3117
+	protected function _get_transient($notices = false, $route = false)
3118
+	{
3119
+		$user_id = get_current_user_id();
3120
+		$route = ! $route ? $this->_req_action : $route;
3121
+		$transient = $notices ? 'ee_rte_n_tx_' . $route . '_' . $user_id : 'rte_tx_' . $route . '_' . $user_id;
3122
+		$data = is_multisite() && is_network_admin() ? get_site_transient($transient) : get_transient($transient);
3123
+		//delete transient after retrieval (just in case it hasn't expired);
3124
+		if (is_multisite() && is_network_admin()) {
3125
+			delete_site_transient($transient);
3126
+		} else {
3127
+			delete_transient($transient);
3128
+		}
3129
+		return $notices && isset($data['notices']) ? $data['notices'] : $data;
3130
+	}
3131
+
3132
+
3133
+
3134
+	/**
3135
+	 * The purpose of this method is just to run garbage collection on any EE transients that might have expired but would not be called later.
3136
+	 * This will be assigned to run on a specific EE Admin page. (place the method in the default route callback on the EE_Admin page you want it run.)
3137
+	 *
3138
+	 * @return void
3139
+	 */
3140
+	protected function _transient_garbage_collection()
3141
+	{
3142
+		global $wpdb;
3143
+		//retrieve all existing transients
3144
+		$query = "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%rte_tx_%' OR option_name LIKE '%rte_n_tx_%'";
3145
+		if ($results = $wpdb->get_results($query)) {
3146
+			foreach ($results as $result) {
3147
+				$transient = str_replace('_transient_', '', $result->option_name);
3148
+				get_transient($transient);
3149
+				if (is_multisite() && is_network_admin()) {
3150
+					get_site_transient($transient);
3151
+				}
3152
+			}
3153
+		}
3154
+	}
3155
+
3156
+
3157
+
3158
+	/**
3159
+	 * get_view
3160
+	 *
3161
+	 * @access public
3162
+	 * @return string content of _view property
3163
+	 */
3164
+	public function get_view()
3165
+	{
3166
+		return $this->_view;
3167
+	}
3168
+
3169
+
3170
+
3171
+	/**
3172
+	 * getter for the protected $_views property
3173
+	 *
3174
+	 * @return array
3175
+	 */
3176
+	public function get_views()
3177
+	{
3178
+		return $this->_views;
3179
+	}
3180
+
3181
+
3182
+
3183
+	/**
3184
+	 * get_current_page
3185
+	 *
3186
+	 * @access public
3187
+	 * @return string _current_page property value
3188
+	 */
3189
+	public function get_current_page()
3190
+	{
3191
+		return $this->_current_page;
3192
+	}
3193
+
3194
+
3195
+
3196
+	/**
3197
+	 * get_current_view
3198
+	 *
3199
+	 * @access public
3200
+	 * @return string _current_view property value
3201
+	 */
3202
+	public function get_current_view()
3203
+	{
3204
+		return $this->_current_view;
3205
+	}
3206
+
3207
+
3208
+
3209
+	/**
3210
+	 * get_current_screen
3211
+	 *
3212
+	 * @access public
3213
+	 * @return object The current WP_Screen object
3214
+	 */
3215
+	public function get_current_screen()
3216
+	{
3217
+		return $this->_current_screen;
3218
+	}
3219
+
3220
+
3221
+
3222
+	/**
3223
+	 * get_current_page_view_url
3224
+	 *
3225
+	 * @access public
3226
+	 * @return string This returns the url for the current_page_view.
3227
+	 */
3228
+	public function get_current_page_view_url()
3229
+	{
3230
+		return $this->_current_page_view_url;
3231
+	}
3232
+
3233
+
3234
+
3235
+	/**
3236
+	 * just returns the _req_data property
3237
+	 *
3238
+	 * @return array
3239
+	 */
3240
+	public function get_request_data()
3241
+	{
3242
+		return $this->_req_data;
3243
+	}
3244
+
3245
+
3246
+
3247
+	/**
3248
+	 * returns the _req_data protected property
3249
+	 *
3250
+	 * @return string
3251
+	 */
3252
+	public function get_req_action()
3253
+	{
3254
+		return $this->_req_action;
3255
+	}
3256
+
3257
+
3258
+
3259
+	/**
3260
+	 * @return bool  value of $_is_caf property
3261
+	 */
3262
+	public function is_caf()
3263
+	{
3264
+		return $this->_is_caf;
3265
+	}
3266
+
3267
+
3268
+
3269
+	/**
3270
+	 * @return mixed
3271
+	 */
3272
+	public function default_espresso_metaboxes()
3273
+	{
3274
+		return $this->_default_espresso_metaboxes;
3275
+	}
3276
+
3277
+
3278
+
3279
+	/**
3280
+	 * @return mixed
3281
+	 */
3282
+	public function admin_base_url()
3283
+	{
3284
+		return $this->_admin_base_url;
3285
+	}
3286
+
3287
+
3288
+
3289
+	/**
3290
+	 * @return mixed
3291
+	 */
3292
+	public function wp_page_slug()
3293
+	{
3294
+		return $this->_wp_page_slug;
3295
+	}
3296
+
3297
+
3298
+
3299
+	/**
3300
+	 * updates  espresso configuration settings
3301
+	 *
3302
+	 * @access    protected
3303
+	 * @param string                   $tab
3304
+	 * @param EE_Config_Base|EE_Config $config
3305
+	 * @param string                   $file file where error occurred
3306
+	 * @param string                   $func function  where error occurred
3307
+	 * @param string                   $line line no where error occurred
3308
+	 * @return boolean
3309
+	 */
3310
+	protected function _update_espresso_configuration($tab, $config, $file = '', $func = '', $line = '')
3311
+	{
3312
+		//remove any options that are NOT going to be saved with the config settings.
3313
+		if (isset($config->core->ee_ueip_optin)) {
3314
+			$config->core->ee_ueip_has_notified = true;
3315
+			// TODO: remove the following two lines and make sure values are migrated from 3.1
3316
+			update_option('ee_ueip_optin', $config->core->ee_ueip_optin);
3317
+			update_option('ee_ueip_has_notified', true);
3318
+		}
3319
+		// and save it (note we're also doing the network save here)
3320
+		$net_saved = is_main_site() ? EE_Network_Config::instance()->update_config(false, false) : true;
3321
+		$config_saved = EE_Config::instance()->update_espresso_config(false, false);
3322
+		if ($config_saved && $net_saved) {
3323
+			EE_Error::add_success(sprintf(__('"%s" have been successfully updated.', 'event_espresso'), $tab));
3324
+			return true;
3325
+		} else {
3326
+			EE_Error::add_error(sprintf(__('The "%s" were not updated.', 'event_espresso'), $tab), $file, $func, $line);
3327
+			return false;
3328
+		}
3329
+	}
3330
+
3331
+
3332
+
3333
+	/**
3334
+	 * Returns an array to be used for EE_FOrm_Fields.helper.php's select_input as the $values argument.
3335
+	 *
3336
+	 * @return array
3337
+	 */
3338
+	public function get_yes_no_values()
3339
+	{
3340
+		return $this->_yes_no_values;
3341
+	}
3342
+
3343
+
3344
+
3345
+	protected function _get_dir()
3346
+	{
3347
+		$reflector = new ReflectionClass(get_class($this));
3348
+		return dirname($reflector->getFileName());
3349
+	}
3350
+
3351
+
3352
+
3353
+	/**
3354
+	 * A helper for getting a "next link".
3355
+	 *
3356
+	 * @param string $url   The url to link to
3357
+	 * @param string $class The class to use.
3358
+	 * @return string
3359
+	 */
3360
+	protected function _next_link($url, $class = 'dashicons dashicons-arrow-right')
3361
+	{
3362
+		return '<a class="' . $class . '" href="' . $url . '"></a>';
3363
+	}
3364
+
3365
+
3366
+
3367
+	/**
3368
+	 * A helper for getting a "previous link".
3369
+	 *
3370
+	 * @param string $url   The url to link to
3371
+	 * @param string $class The class to use.
3372
+	 * @return string
3373
+	 */
3374
+	protected function _previous_link($url, $class = 'dashicons dashicons-arrow-left')
3375
+	{
3376
+		return '<a class="' . $class . '" href="' . $url . '"></a>';
3377
+	}
3378
+
3379
+
3380
+
3381
+
3382
+
3383
+
3384
+
3385
+	//below are some messages related methods that should be available across the EE_Admin system.  Note, these methods are NOT page specific
3386
+	/**
3387
+	 * This processes an request to resend a registration and assumes we have a _REG_ID for doing so. So if the caller knows that the _REG_ID isn't in the req_data array but CAN obtain it, the caller should ADD the _REG_ID to the _req_data
3388
+	 * array.
3389
+	 *
3390
+	 * @return bool success/fail
3391
+	 */
3392
+	protected function _process_resend_registration()
3393
+	{
3394
+		$this->_template_args['success'] = EED_Messages::process_resend($this->_req_data);
3395
+		do_action('AHEE__EE_Admin_Page___process_resend_registration', $this->_template_args['success'], $this->_req_data);
3396
+		return $this->_template_args['success'];
3397
+	}
3398
+
3399
+
3400
+
3401
+	/**
3402
+	 * This automatically processes any payment message notifications when manual payment has been applied.
3403
+	 *
3404
+	 * @access protected
3405
+	 * @param \EE_Payment $payment
3406
+	 * @return bool success/fail
3407
+	 */
3408
+	protected function _process_payment_notification(EE_Payment $payment)
3409
+	{
3410
+		add_filter('FHEE__EE_Payment_Processor__process_registration_payments__display_notifications', '__return_true');
3411
+		do_action('AHEE__EE_Admin_Page___process_admin_payment_notification', $payment);
3412
+		$this->_template_args['success'] = apply_filters('FHEE__EE_Admin_Page___process_admin_payment_notification__success', false, $payment);
3413
+		return $this->_template_args['success'];
3414
+	}
3415 3415
 
3416 3416
 
3417 3417
 }
Please login to merge, or discard this patch.
core/db_models/EEM_Datetime.model.php 1 patch
Indentation   +581 added lines, -581 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
-    exit('No direct script access allowed');
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Class Datetime Model
@@ -11,586 +11,586 @@  discard block
 block discarded – undo
11 11
 class EEM_Datetime extends EEM_Soft_Delete_Base
12 12
 {
13 13
 
14
-    /**
15
-     * @var EEM_Datetime $_instance
16
-     */
17
-    protected static $_instance;
18
-
19
-
20
-
21
-    /**
22
-     *        private constructor to prevent direct creation
23
-     *
24
-     * @Constructor
25
-     * @access private
26
-     * @param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any
27
-     *                         incoming timezone data that gets saved).  Note this just sends the timezone info to the
28
-     *                         date time model field objects.  Default is NULL (and will be assumed using the set
29
-     *                         timezone in the 'timezone_string' wp option)
30
-     * @throws \EE_Error
31
-     */
32
-    protected function __construct($timezone)
33
-    {
34
-        $this->singular_item = __('Datetime', 'event_espresso');
35
-        $this->plural_item = __('Datetimes', 'event_espresso');
36
-        $this->_tables = array(
37
-            'Datetime' => new EE_Primary_Table('esp_datetime', 'DTT_ID'),
38
-        );
39
-        $this->_fields = array(
40
-            'Datetime' => array(
41
-                'DTT_ID'          => new EE_Primary_Key_Int_Field('DTT_ID', __('Datetime ID', 'event_espresso')),
42
-                'EVT_ID'          => new EE_Foreign_Key_Int_Field(
43
-                    'EVT_ID', __('Event ID', 'event_espresso'), false, 0, 'Event'
44
-                ),
45
-                'DTT_name'        => new EE_Plain_Text_Field(
46
-                    'DTT_name', __('Datetime Name', 'event_espresso'), false, ''
47
-                ),
48
-                'DTT_description' => new EE_Post_Content_Field(
49
-                    'DTT_description', __('Description for Datetime', 'event_espresso'), false, ''
50
-                ),
51
-                'DTT_EVT_start'   => new EE_Datetime_Field(
52
-                    'DTT_EVT_start', __('Start time/date of Event', 'event_espresso'), false, EE_Datetime_Field::now,
53
-                    $timezone
54
-                ),
55
-                'DTT_EVT_end'     => new EE_Datetime_Field(
56
-                    'DTT_EVT_end', __('End time/date of Event', 'event_espresso'), false, EE_Datetime_Field::now,
57
-                    $timezone
58
-                ),
59
-                'DTT_reg_limit'   => new EE_Infinite_Integer_Field(
60
-                    'DTT_reg_limit', __('Registration Limit for this time', 'event_espresso'), true, EE_INF),
61
-                'DTT_sold'        => new EE_Integer_Field(
62
-                    'DTT_sold', __('How many sales for this Datetime that have occurred', 'event_espresso'), true, 0
63
-                ),
64
-                'DTT_reserved' => new EE_Integer_Field('DTT_reserved',
65
-                    __('Quantity of tickets reserved, but not yet fully purchased', 'event_espresso'), false, 0
66
-                ),
67
-                'DTT_is_primary'  => new EE_Boolean_Field(
68
-                    'DTT_is_primary', __('Flag indicating datetime is primary one for event', 'event_espresso'),
69
-                    false, false
70
-                ),
71
-                'DTT_order'       => new EE_Integer_Field(
72
-                    'DTT_order', __('The order in which the Datetime is displayed', 'event_espresso'), false, 0
73
-                ),
74
-                'DTT_parent'      => new EE_Integer_Field(
75
-                    'DTT_parent', __('Indicates what DTT_ID is the parent of this DTT_ID'), true, 0
76
-                ),
77
-                'DTT_deleted'     => new EE_Trashed_Flag_Field(
78
-                    'DTT_deleted', __('Flag indicating datetime is archived', 'event_espresso'), false, false
79
-                ),
80
-            ),
81
-        );
82
-        $this->_model_relations = array(
83
-            'Ticket'  => new EE_HABTM_Relation('Datetime_Ticket'),
84
-            'Event'   => new EE_Belongs_To_Relation(),
85
-            'Checkin' => new EE_Has_Many_Relation(),
86
-        );
87
-        $this->_model_chain_to_wp_user = 'Event';
88
-        //this model is generally available for reading
89
-        $this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Event_Related_Public('Event');
90
-        $this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Event_Related_Protected('Event');
91
-        $this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Event_Related_Protected('Event');
92
-        $this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Event_Related_Protected('Event',
93
-            EEM_Base::caps_edit);
94
-        parent::__construct($timezone);
95
-    }
96
-
97
-
98
-
99
-    /**
100
-     * create new blank datetime
101
-     *
102
-     * @access public
103
-     * @return EE_Datetime[] array on success, FALSE on fail
104
-     * @throws \EE_Error
105
-     */
106
-    public function create_new_blank_datetime()
107
-    {
108
-        //makes sure timezone is always set.
109
-        $timezone_string = $this->get_timezone();
110
-        $blank_datetime = EE_Datetime::new_instance(
111
-            array(
112
-                'DTT_EVT_start' => $this->current_time_for_query('DTT_EVT_start', true) + MONTH_IN_SECONDS,
113
-                'DTT_EVT_end'   => $this->current_time_for_query('DTT_EVT_end', true) + MONTH_IN_SECONDS,
114
-                'DTT_order'     => 1,
115
-                'DTT_reg_limit' => EE_INF,
116
-            ),
117
-            $timezone_string
118
-        );
119
-        $blank_datetime->set_start_time($this->convert_datetime_for_query('DTT_EVT_start', '8am', 'ga',
120
-            $timezone_string));
121
-        $blank_datetime->set_end_time($this->convert_datetime_for_query('DTT_EVT_end', '5pm', 'ga', $timezone_string));
122
-        return array($blank_datetime);
123
-    }
124
-
125
-
126
-
127
-    /**
128
-     * get event start date from db
129
-     *
130
-     * @access public
131
-     * @param  int $EVT_ID
132
-     * @return EE_Datetime[] array on success, FALSE on fail
133
-     * @throws \EE_Error
134
-     */
135
-    public function get_all_event_dates($EVT_ID = 0)
136
-    {
137
-        if ( ! $EVT_ID) { // on add_new_event event_id gets set to 0
138
-            return $this->create_new_blank_datetime();
139
-        }
140
-        $results = $this->get_datetimes_for_event_ordered_by_DTT_order($EVT_ID);
141
-        if (empty($results)) {
142
-            return $this->create_new_blank_datetime();
143
-        }
144
-        return $results;
145
-    }
146
-
147
-
148
-
149
-    /**
150
-     * get all datetimes attached to an event ordered by the DTT_order field
151
-     *
152
-     * @public
153
-     * @param  int    $EVT_ID     event id
154
-     * @param boolean $include_expired
155
-     * @param boolean $include_deleted
156
-     * @param  int    $limit      If included then limit the count of results by
157
-     *                            the given number
158
-     * @return EE_Datetime[]
159
-     * @throws \EE_Error
160
-     */
161
-    public function get_datetimes_for_event_ordered_by_DTT_order(
162
-        $EVT_ID,
163
-        $include_expired = true,
164
-        $include_deleted = true,
165
-        $limit = null
166
-    ) {
167
-        //sanitize EVT_ID
168
-        $EVT_ID = absint($EVT_ID);
169
-        $old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
170
-        $this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
171
-        $where_params = array('Event.EVT_ID' => $EVT_ID);
172
-        $query_params = ! empty($limit)
173
-            ? array(
174
-                $where_params,
175
-                'limit'                    => $limit,
176
-                'order_by'                 => array('DTT_order' => 'ASC'),
177
-                'default_where_conditions' => 'none',
178
-            )
179
-            : array(
180
-                $where_params,
181
-                'order_by'                 => array('DTT_order' => 'ASC'),
182
-                'default_where_conditions' => 'none',
183
-            );
184
-        if ( ! $include_expired) {
185
-            $query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
186
-        }
187
-        if ($include_deleted) {
188
-            $query_params[0]['DTT_deleted'] = array('IN', array(true, false));
189
-        }
190
-        /** @var EE_Datetime[] $result */
191
-        $result = $this->get_all($query_params);
192
-        $this->assume_values_already_prepared_by_model_object($old_assumption);
193
-        return $result;
194
-    }
195
-
196
-
197
-
198
-    /**
199
-     * Gets the datetimes for the event (with the given limit), and orders them by "importance". By importance, we mean
200
-     * that the primary datetimes are most important (DEPRECATED FOR NOW), and then the earlier datetimes are the most
201
-     * important. Maybe we'll want this to take into account datetimes that haven't already passed, but we don't yet.
202
-     *
203
-     * @param int $EVT_ID
204
-     * @param int $limit
205
-     * @return EE_Datetime[]|EE_Base_Class[]
206
-     * @throws \EE_Error
207
-     */
208
-    public function get_datetimes_for_event_ordered_by_importance($EVT_ID = 0, $limit = null)
209
-    {
210
-        return $this->get_all(
211
-            array(
212
-                array('Event.EVT_ID' => $EVT_ID),
213
-                'limit'                    => $limit,
214
-                'order_by'                 => array('DTT_EVT_start' => 'ASC'),
215
-                'default_where_conditions' => 'none',
216
-            )
217
-        );
218
-    }
219
-
220
-
221
-
222
-    /**
223
-     * @param int     $EVT_ID
224
-     * @param boolean $include_expired
225
-     * @param boolean $include_deleted
226
-     * @return EE_Datetime
227
-     * @throws \EE_Error
228
-     */
229
-    public function get_oldest_datetime_for_event($EVT_ID, $include_expired = false, $include_deleted = false)
230
-    {
231
-        $results = $this->get_datetimes_for_event_ordered_by_start_time($EVT_ID, $include_expired, $include_deleted, 1);
232
-        if ($results) {
233
-            return array_shift($results);
234
-        } else {
235
-            return null;
236
-        }
237
-    }
238
-
239
-
240
-
241
-    /**
242
-     * Gets the 'primary' datetime for an event.
243
-     *
244
-     * @param int  $EVT_ID
245
-     * @param bool $try_to_exclude_expired
246
-     * @param bool $try_to_exclude_deleted
247
-     * @return \EE_Datetime
248
-     * @throws \EE_Error
249
-     */
250
-    public function get_primary_datetime_for_event(
251
-        $EVT_ID,
252
-        $try_to_exclude_expired = true,
253
-        $try_to_exclude_deleted = true
254
-    ) {
255
-        if ($try_to_exclude_expired) {
256
-            $non_expired = $this->get_oldest_datetime_for_event($EVT_ID, false, false);
257
-            if ($non_expired) {
258
-                return $non_expired;
259
-            }
260
-        }
261
-        if ($try_to_exclude_deleted) {
262
-            $expired_even = $this->get_oldest_datetime_for_event($EVT_ID, true);
263
-            if ($expired_even) {
264
-                return $expired_even;
265
-            }
266
-        }
267
-        return $this->get_oldest_datetime_for_event($EVT_ID, true, true);
268
-    }
269
-
270
-
271
-
272
-    /**
273
-     * Gets ALL the datetimes for an event (including trashed ones, for now), ordered
274
-     * only by start date
275
-     *
276
-     * @param int     $EVT_ID
277
-     * @param boolean $include_expired
278
-     * @param boolean $include_deleted
279
-     * @param int     $limit
280
-     * @return EE_Datetime[]
281
-     * @throws \EE_Error
282
-     */
283
-    public function get_datetimes_for_event_ordered_by_start_time(
284
-        $EVT_ID,
285
-        $include_expired = true,
286
-        $include_deleted = true,
287
-        $limit = null
288
-    ) {
289
-        //sanitize EVT_ID
290
-        $EVT_ID = absint($EVT_ID);
291
-        $old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
292
-        $this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
293
-        $query_params = array(array('Event.EVT_ID' => $EVT_ID), 'order_by' => array('DTT_EVT_start' => 'asc'));
294
-        if ( ! $include_expired) {
295
-            $query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
296
-        }
297
-        if ($include_deleted) {
298
-            $query_params[0]['DTT_deleted'] = array('IN', array(true, false));
299
-        }
300
-        if ($limit) {
301
-            $query_params['limit'] = $limit;
302
-        }
303
-        /** @var EE_Datetime[] $result */
304
-        $result = $this->get_all($query_params);
305
-        $this->assume_values_already_prepared_by_model_object($old_assumption);
306
-        return $result;
307
-    }
308
-
309
-
310
-
311
-    /**
312
-     * Gets ALL the datetimes for an ticket (including trashed ones, for now), ordered
313
-     * only by start date
314
-     *
315
-     * @param int     $TKT_ID
316
-     * @param boolean $include_expired
317
-     * @param boolean $include_deleted
318
-     * @param int     $limit
319
-     * @return EE_Datetime[]
320
-     * @throws \EE_Error
321
-     */
322
-    public function get_datetimes_for_ticket_ordered_by_start_time(
323
-        $TKT_ID,
324
-        $include_expired = true,
325
-        $include_deleted = true,
326
-        $limit = null
327
-    ) {
328
-        //sanitize TKT_ID
329
-        $TKT_ID = absint($TKT_ID);
330
-        $old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
331
-        $this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
332
-        $query_params = array(array('Ticket.TKT_ID' => $TKT_ID), 'order_by' => array('DTT_EVT_start' => 'asc'));
333
-        if ( ! $include_expired) {
334
-            $query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
335
-        }
336
-        if ($include_deleted) {
337
-            $query_params[0]['DTT_deleted'] = array('IN', array(true, false));
338
-        }
339
-        if ($limit) {
340
-            $query_params['limit'] = $limit;
341
-        }
342
-        /** @var EE_Datetime[] $result */
343
-        $result = $this->get_all($query_params);
344
-        $this->assume_values_already_prepared_by_model_object($old_assumption);
345
-        return $result;
346
-    }
347
-
348
-
349
-
350
-    /**
351
-     * Gets all the datetimes for a ticket (including trashed ones, for now), ordered by the DTT_order for the
352
-     * datetimes.
353
-     *
354
-     * @param  int      $TKT_ID          ID of ticket to retrieve the datetimes for
355
-     * @param  boolean  $include_expired whether to include expired datetimes or not
356
-     * @param  boolean  $include_deleted whether to include trashed datetimes or not.
357
-     * @param  int|null $limit           if null, no limit, if int then limit results by
358
-     *                                   that number
359
-     * @return EE_Datetime[]
360
-     * @throws \EE_Error
361
-     */
362
-    public function get_datetimes_for_ticket_ordered_by_DTT_order(
363
-        $TKT_ID,
364
-        $include_expired = true,
365
-        $include_deleted = true,
366
-        $limit = null
367
-    ) {
368
-        //sanitize id.
369
-        $TKT_ID = absint($TKT_ID);
370
-        $old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
371
-        $this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
372
-        $where_params = array('Ticket.TKT_ID' => $TKT_ID);
373
-        $query_params = array($where_params, 'order_by' => array('DTT_order' => 'ASC'));
374
-        if ( ! $include_expired) {
375
-            $query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
376
-        }
377
-        if ($include_deleted) {
378
-            $query_params[0]['DTT_deleted'] = array('IN', array(true, false));
379
-        }
380
-        if ($limit) {
381
-            $query_params['limit'] = $limit;
382
-        }
383
-        /** @var EE_Datetime[] $result */
384
-        $result = $this->get_all($query_params);
385
-        $this->assume_values_already_prepared_by_model_object($old_assumption);
386
-        return $result;
387
-    }
388
-
389
-
390
-
391
-    /**
392
-     * Gets the most important datetime for a particular event (ie, the primary event usually. But if for some WACK
393
-     * reason it doesn't exist, we consider the earliest event the most important)
394
-     *
395
-     * @param int $EVT_ID
396
-     * @return EE_Datetime
397
-     * @throws \EE_Error
398
-     */
399
-    public function get_most_important_datetime_for_event($EVT_ID)
400
-    {
401
-        $results = $this->get_datetimes_for_event_ordered_by_importance($EVT_ID, 1);
402
-        if ($results) {
403
-            return array_shift($results);
404
-        } else {
405
-            return null;
406
-        }
407
-    }
408
-
409
-
410
-
411
-    /**
412
-     * This returns a wpdb->results        Array of all DTT month and years matching the incoming query params and
413
-     * grouped by month and year.
414
-     *
415
-     * @param  array  $where_params      Array of query_params as described in the comments for EEM_Base::get_all()
416
-     * @param  string $evt_active_status A string representing the evt active status to filter the months by.
417
-     *                                   Can be:
418
-     *                                   - '' = no filter
419
-     *                                   - upcoming = Published events with at least one upcoming datetime.
420
-     *                                   - expired = Events with all datetimes expired.
421
-     *                                   - active = Events that are published and have at least one datetime that
422
-     *                                   starts before now and ends after now.
423
-     *                                   - inactive = Events that are either not published.
424
-     * @return EE_Base_Class[]
425
-     * @throws \EE_Error
426
-     */
427
-    public function get_dtt_months_and_years($where_params, $evt_active_status = '')
428
-    {
429
-        $current_time_for_DTT_EVT_start = $this->current_time_for_query('DTT_EVT_start');
430
-        $current_time_for_DTT_EVT_end = $this->current_time_for_query('DTT_EVT_end');
431
-        switch ($evt_active_status) {
432
-            case 'upcoming' :
433
-                $where_params['Event.status'] = 'publish';
434
-                //if there are already query_params matching DTT_EVT_start then we need to modify that to add them.
435
-                if (isset($where_params['DTT_EVT_start'])) {
436
-                    $where_params['DTT_EVT_start*****'] = $where_params['DTT_EVT_start'];
437
-                }
438
-                $where_params['DTT_EVT_start'] = array('>', $current_time_for_DTT_EVT_start);
439
-                break;
440
-            case 'expired' :
441
-                if (isset($where_params['Event.status'])) {
442
-                    unset($where_params['Event.status']);
443
-                }
444
-                //get events to exclude
445
-                $exclude_query[0] = array_merge($where_params,
446
-                    array('DTT_EVT_end' => array('>', $current_time_for_DTT_EVT_end)));
447
-                //first get all events that have datetimes where its not expired.
448
-                $event_ids = $this->_get_all_wpdb_results($exclude_query, OBJECT_K, 'Datetime.EVT_ID');
449
-                $event_ids = array_keys($event_ids);
450
-                if (isset($where_params['DTT_EVT_end'])) {
451
-                    $where_params['DTT_EVT_end****'] = $where_params['DTT_EVT_end'];
452
-                }
453
-                $where_params['DTT_EVT_end'] = array('<', $current_time_for_DTT_EVT_end);
454
-                $where_params['Event.EVT_ID'] = array('NOT IN', $event_ids);
455
-                break;
456
-            case 'active' :
457
-                $where_params['Event.status'] = 'publish';
458
-                if (isset($where_params['DTT_EVT_start'])) {
459
-                    $where_params['Datetime.DTT_EVT_start******'] = $where_params['DTT_EVT_start'];
460
-                }
461
-                if (isset($where_params['Datetime.DTT_EVT_end'])) {
462
-                    $where_params['Datetime.DTT_EVT_end*****'] = $where_params['DTT_EVT_end'];
463
-                }
464
-                $where_params['DTT_EVT_start'] = array('<', $current_time_for_DTT_EVT_start);
465
-                $where_params['DTT_EVT_end'] = array('>', $current_time_for_DTT_EVT_end);
466
-                break;
467
-            case 'inactive' :
468
-                if (isset($where_params['Event.status'])) {
469
-                    unset($where_params['Event.status']);
470
-                }
471
-                if (isset($where_params['OR'])) {
472
-                    $where_params['AND']['OR'] = $where_params['OR'];
473
-                }
474
-                if (isset($where_params['DTT_EVT_end'])) {
475
-                    $where_params['AND']['DTT_EVT_end****'] = $where_params['DTT_EVT_end'];
476
-                    unset($where_params['DTT_EVT_end']);
477
-                }
478
-                if (isset($where_params['DTT_EVT_start'])) {
479
-                    $where_params['AND']['DTT_EVT_start'] = $where_params['DTT_EVT_start'];
480
-                    unset($where_params['DTT_EVT_start']);
481
-                }
482
-                $where_params['AND']['Event.status'] = array('!=', 'publish');
483
-                break;
484
-        }
485
-        $query_params[0] = $where_params;
486
-        $query_params['group_by'] = array('dtt_year', 'dtt_month');
487
-        $query_params['order_by'] = array('DTT_EVT_start' => 'DESC');
488
-        $query_interval = EEH_DTT_Helper::get_sql_query_interval_for_offset($this->get_timezone(), 'DTT_EVT_start');
489
-        $columns_to_select = array(
490
-            'dtt_year'      => array('YEAR(' . $query_interval . ')', '%s'),
491
-            'dtt_month'     => array('MONTHNAME(' . $query_interval . ')', '%s'),
492
-            'dtt_month_num' => array('MONTH(' . $query_interval . ')', '%s'),
493
-        );
494
-        return $this->_get_all_wpdb_results($query_params, OBJECT, $columns_to_select);
495
-    }
496
-
497
-
498
-
499
-    /**
500
-     * Updates the DTT_sold attribute on each datetime (based on the registrations
501
-     * for the tickets for each datetime)
502
-     *
503
-     * @param EE_Datetime[] $datetimes
504
-     */
505
-    public function update_sold($datetimes)
506
-    {
507
-        foreach ($datetimes as $datetime) {
508
-            $datetime->update_sold();
509
-        }
510
-    }
511
-
512
-
513
-
514
-    /**
515
-     *    Gets the total number of tickets available at a particular datetime
516
-     *    (does NOT take into account the datetime's spaces available)
517
-     *
518
-     * @param int   $DTT_ID
519
-     * @param array $query_params
520
-     * @return int of tickets available. If sold out, return less than 1. If infinite, returns EE_INF,  IF there are NO
521
-     *             tickets attached to datetime then FALSE is returned.
522
-     */
523
-    public function sum_tickets_currently_available_at_datetime($DTT_ID, array $query_params = array())
524
-    {
525
-        $datetime = $this->get_one_by_ID($DTT_ID);
526
-        if ($datetime instanceof EE_Datetime) {
527
-            return $datetime->tickets_remaining($query_params);
528
-        }
529
-        return 0;
530
-    }
531
-
532
-
533
-
534
-    /**
535
-     * This returns an array of counts of datetimes in the database for each Datetime status that can be queried.
536
-     *
537
-     * @param  array $stati_to_include If included you can restrict the statuses we return counts for by including the
538
-     *                                 stati you want counts for as values in the array.  An empty array returns counts
539
-     *                                 for all valid stati.
540
-     * @param  array $query_params     If included can be used to refine the conditions for returning the count (i.e.
541
-     *                                 only for Datetimes connected to a specific event, or specific ticket.
542
-     * @return array  The value returned is an array indexed by Datetime Status and the values are the counts.  The
543
-     * @throws \EE_Error
544
-     *                                 stati used as index keys are: EE_Datetime::active EE_Datetime::upcoming EE_Datetime::expired
545
-     */
546
-    public function get_datetime_counts_by_status(array $stati_to_include = array(), array $query_params = array())
547
-    {
548
-        //only accept where conditions for this query.
549
-        $_where = isset($query_params[0]) ? $query_params[0] : array();
550
-        $status_query_args = array(
551
-            EE_Datetime::active   => array_merge(
552
-                $_where,
553
-                array('DTT_EVT_start' => array('<', time()), 'DTT_EVT_end' => array('>', time()))
554
-            ),
555
-            EE_Datetime::upcoming => array_merge(
556
-                $_where,
557
-                array('DTT_EVT_start' => array('>', time()))
558
-            ),
559
-            EE_Datetime::expired  => array_merge(
560
-                $_where,
561
-                array('DTT_EVT_end' => array('<', time()))
562
-            ),
563
-        );
564
-        if ( ! empty($stati_to_include)) {
565
-            foreach (array_keys($status_query_args) as $status) {
566
-                if ( ! in_array($status, $stati_to_include, true)) {
567
-                    unset($status_query_args[$status]);
568
-                }
569
-            }
570
-        }
571
-        //loop through and query counts for each stati.
572
-        $status_query_results = array();
573
-        foreach ($status_query_args as $status => $status_where_conditions) {
574
-            $status_query_results[$status] = EEM_Datetime::count(array($status_where_conditions), 'DTT_ID', true);
575
-        }
576
-        return $status_query_results;
577
-    }
578
-
579
-
580
-
581
-    /**
582
-     * Returns the specific count for a given Datetime status matching any given query_params.
583
-     *
584
-     * @param string $status Valid string representation for Datetime status requested. (Defaults to Active).
585
-     * @param array  $query_params
586
-     * @return int
587
-     * @throws \EE_Error
588
-     */
589
-    public function get_datetime_count_for_status($status = EE_Datetime::active, array $query_params = array())
590
-    {
591
-        $count = $this->get_datetime_counts_by_status(array($status), $query_params);
592
-        return ! empty($count[$status]) ? $count[$status] : 0;
593
-    }
14
+	/**
15
+	 * @var EEM_Datetime $_instance
16
+	 */
17
+	protected static $_instance;
18
+
19
+
20
+
21
+	/**
22
+	 *        private constructor to prevent direct creation
23
+	 *
24
+	 * @Constructor
25
+	 * @access private
26
+	 * @param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any
27
+	 *                         incoming timezone data that gets saved).  Note this just sends the timezone info to the
28
+	 *                         date time model field objects.  Default is NULL (and will be assumed using the set
29
+	 *                         timezone in the 'timezone_string' wp option)
30
+	 * @throws \EE_Error
31
+	 */
32
+	protected function __construct($timezone)
33
+	{
34
+		$this->singular_item = __('Datetime', 'event_espresso');
35
+		$this->plural_item = __('Datetimes', 'event_espresso');
36
+		$this->_tables = array(
37
+			'Datetime' => new EE_Primary_Table('esp_datetime', 'DTT_ID'),
38
+		);
39
+		$this->_fields = array(
40
+			'Datetime' => array(
41
+				'DTT_ID'          => new EE_Primary_Key_Int_Field('DTT_ID', __('Datetime ID', 'event_espresso')),
42
+				'EVT_ID'          => new EE_Foreign_Key_Int_Field(
43
+					'EVT_ID', __('Event ID', 'event_espresso'), false, 0, 'Event'
44
+				),
45
+				'DTT_name'        => new EE_Plain_Text_Field(
46
+					'DTT_name', __('Datetime Name', 'event_espresso'), false, ''
47
+				),
48
+				'DTT_description' => new EE_Post_Content_Field(
49
+					'DTT_description', __('Description for Datetime', 'event_espresso'), false, ''
50
+				),
51
+				'DTT_EVT_start'   => new EE_Datetime_Field(
52
+					'DTT_EVT_start', __('Start time/date of Event', 'event_espresso'), false, EE_Datetime_Field::now,
53
+					$timezone
54
+				),
55
+				'DTT_EVT_end'     => new EE_Datetime_Field(
56
+					'DTT_EVT_end', __('End time/date of Event', 'event_espresso'), false, EE_Datetime_Field::now,
57
+					$timezone
58
+				),
59
+				'DTT_reg_limit'   => new EE_Infinite_Integer_Field(
60
+					'DTT_reg_limit', __('Registration Limit for this time', 'event_espresso'), true, EE_INF),
61
+				'DTT_sold'        => new EE_Integer_Field(
62
+					'DTT_sold', __('How many sales for this Datetime that have occurred', 'event_espresso'), true, 0
63
+				),
64
+				'DTT_reserved' => new EE_Integer_Field('DTT_reserved',
65
+					__('Quantity of tickets reserved, but not yet fully purchased', 'event_espresso'), false, 0
66
+				),
67
+				'DTT_is_primary'  => new EE_Boolean_Field(
68
+					'DTT_is_primary', __('Flag indicating datetime is primary one for event', 'event_espresso'),
69
+					false, false
70
+				),
71
+				'DTT_order'       => new EE_Integer_Field(
72
+					'DTT_order', __('The order in which the Datetime is displayed', 'event_espresso'), false, 0
73
+				),
74
+				'DTT_parent'      => new EE_Integer_Field(
75
+					'DTT_parent', __('Indicates what DTT_ID is the parent of this DTT_ID'), true, 0
76
+				),
77
+				'DTT_deleted'     => new EE_Trashed_Flag_Field(
78
+					'DTT_deleted', __('Flag indicating datetime is archived', 'event_espresso'), false, false
79
+				),
80
+			),
81
+		);
82
+		$this->_model_relations = array(
83
+			'Ticket'  => new EE_HABTM_Relation('Datetime_Ticket'),
84
+			'Event'   => new EE_Belongs_To_Relation(),
85
+			'Checkin' => new EE_Has_Many_Relation(),
86
+		);
87
+		$this->_model_chain_to_wp_user = 'Event';
88
+		//this model is generally available for reading
89
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Event_Related_Public('Event');
90
+		$this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Event_Related_Protected('Event');
91
+		$this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Event_Related_Protected('Event');
92
+		$this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Event_Related_Protected('Event',
93
+			EEM_Base::caps_edit);
94
+		parent::__construct($timezone);
95
+	}
96
+
97
+
98
+
99
+	/**
100
+	 * create new blank datetime
101
+	 *
102
+	 * @access public
103
+	 * @return EE_Datetime[] array on success, FALSE on fail
104
+	 * @throws \EE_Error
105
+	 */
106
+	public function create_new_blank_datetime()
107
+	{
108
+		//makes sure timezone is always set.
109
+		$timezone_string = $this->get_timezone();
110
+		$blank_datetime = EE_Datetime::new_instance(
111
+			array(
112
+				'DTT_EVT_start' => $this->current_time_for_query('DTT_EVT_start', true) + MONTH_IN_SECONDS,
113
+				'DTT_EVT_end'   => $this->current_time_for_query('DTT_EVT_end', true) + MONTH_IN_SECONDS,
114
+				'DTT_order'     => 1,
115
+				'DTT_reg_limit' => EE_INF,
116
+			),
117
+			$timezone_string
118
+		);
119
+		$blank_datetime->set_start_time($this->convert_datetime_for_query('DTT_EVT_start', '8am', 'ga',
120
+			$timezone_string));
121
+		$blank_datetime->set_end_time($this->convert_datetime_for_query('DTT_EVT_end', '5pm', 'ga', $timezone_string));
122
+		return array($blank_datetime);
123
+	}
124
+
125
+
126
+
127
+	/**
128
+	 * get event start date from db
129
+	 *
130
+	 * @access public
131
+	 * @param  int $EVT_ID
132
+	 * @return EE_Datetime[] array on success, FALSE on fail
133
+	 * @throws \EE_Error
134
+	 */
135
+	public function get_all_event_dates($EVT_ID = 0)
136
+	{
137
+		if ( ! $EVT_ID) { // on add_new_event event_id gets set to 0
138
+			return $this->create_new_blank_datetime();
139
+		}
140
+		$results = $this->get_datetimes_for_event_ordered_by_DTT_order($EVT_ID);
141
+		if (empty($results)) {
142
+			return $this->create_new_blank_datetime();
143
+		}
144
+		return $results;
145
+	}
146
+
147
+
148
+
149
+	/**
150
+	 * get all datetimes attached to an event ordered by the DTT_order field
151
+	 *
152
+	 * @public
153
+	 * @param  int    $EVT_ID     event id
154
+	 * @param boolean $include_expired
155
+	 * @param boolean $include_deleted
156
+	 * @param  int    $limit      If included then limit the count of results by
157
+	 *                            the given number
158
+	 * @return EE_Datetime[]
159
+	 * @throws \EE_Error
160
+	 */
161
+	public function get_datetimes_for_event_ordered_by_DTT_order(
162
+		$EVT_ID,
163
+		$include_expired = true,
164
+		$include_deleted = true,
165
+		$limit = null
166
+	) {
167
+		//sanitize EVT_ID
168
+		$EVT_ID = absint($EVT_ID);
169
+		$old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
170
+		$this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
171
+		$where_params = array('Event.EVT_ID' => $EVT_ID);
172
+		$query_params = ! empty($limit)
173
+			? array(
174
+				$where_params,
175
+				'limit'                    => $limit,
176
+				'order_by'                 => array('DTT_order' => 'ASC'),
177
+				'default_where_conditions' => 'none',
178
+			)
179
+			: array(
180
+				$where_params,
181
+				'order_by'                 => array('DTT_order' => 'ASC'),
182
+				'default_where_conditions' => 'none',
183
+			);
184
+		if ( ! $include_expired) {
185
+			$query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
186
+		}
187
+		if ($include_deleted) {
188
+			$query_params[0]['DTT_deleted'] = array('IN', array(true, false));
189
+		}
190
+		/** @var EE_Datetime[] $result */
191
+		$result = $this->get_all($query_params);
192
+		$this->assume_values_already_prepared_by_model_object($old_assumption);
193
+		return $result;
194
+	}
195
+
196
+
197
+
198
+	/**
199
+	 * Gets the datetimes for the event (with the given limit), and orders them by "importance". By importance, we mean
200
+	 * that the primary datetimes are most important (DEPRECATED FOR NOW), and then the earlier datetimes are the most
201
+	 * important. Maybe we'll want this to take into account datetimes that haven't already passed, but we don't yet.
202
+	 *
203
+	 * @param int $EVT_ID
204
+	 * @param int $limit
205
+	 * @return EE_Datetime[]|EE_Base_Class[]
206
+	 * @throws \EE_Error
207
+	 */
208
+	public function get_datetimes_for_event_ordered_by_importance($EVT_ID = 0, $limit = null)
209
+	{
210
+		return $this->get_all(
211
+			array(
212
+				array('Event.EVT_ID' => $EVT_ID),
213
+				'limit'                    => $limit,
214
+				'order_by'                 => array('DTT_EVT_start' => 'ASC'),
215
+				'default_where_conditions' => 'none',
216
+			)
217
+		);
218
+	}
219
+
220
+
221
+
222
+	/**
223
+	 * @param int     $EVT_ID
224
+	 * @param boolean $include_expired
225
+	 * @param boolean $include_deleted
226
+	 * @return EE_Datetime
227
+	 * @throws \EE_Error
228
+	 */
229
+	public function get_oldest_datetime_for_event($EVT_ID, $include_expired = false, $include_deleted = false)
230
+	{
231
+		$results = $this->get_datetimes_for_event_ordered_by_start_time($EVT_ID, $include_expired, $include_deleted, 1);
232
+		if ($results) {
233
+			return array_shift($results);
234
+		} else {
235
+			return null;
236
+		}
237
+	}
238
+
239
+
240
+
241
+	/**
242
+	 * Gets the 'primary' datetime for an event.
243
+	 *
244
+	 * @param int  $EVT_ID
245
+	 * @param bool $try_to_exclude_expired
246
+	 * @param bool $try_to_exclude_deleted
247
+	 * @return \EE_Datetime
248
+	 * @throws \EE_Error
249
+	 */
250
+	public function get_primary_datetime_for_event(
251
+		$EVT_ID,
252
+		$try_to_exclude_expired = true,
253
+		$try_to_exclude_deleted = true
254
+	) {
255
+		if ($try_to_exclude_expired) {
256
+			$non_expired = $this->get_oldest_datetime_for_event($EVT_ID, false, false);
257
+			if ($non_expired) {
258
+				return $non_expired;
259
+			}
260
+		}
261
+		if ($try_to_exclude_deleted) {
262
+			$expired_even = $this->get_oldest_datetime_for_event($EVT_ID, true);
263
+			if ($expired_even) {
264
+				return $expired_even;
265
+			}
266
+		}
267
+		return $this->get_oldest_datetime_for_event($EVT_ID, true, true);
268
+	}
269
+
270
+
271
+
272
+	/**
273
+	 * Gets ALL the datetimes for an event (including trashed ones, for now), ordered
274
+	 * only by start date
275
+	 *
276
+	 * @param int     $EVT_ID
277
+	 * @param boolean $include_expired
278
+	 * @param boolean $include_deleted
279
+	 * @param int     $limit
280
+	 * @return EE_Datetime[]
281
+	 * @throws \EE_Error
282
+	 */
283
+	public function get_datetimes_for_event_ordered_by_start_time(
284
+		$EVT_ID,
285
+		$include_expired = true,
286
+		$include_deleted = true,
287
+		$limit = null
288
+	) {
289
+		//sanitize EVT_ID
290
+		$EVT_ID = absint($EVT_ID);
291
+		$old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
292
+		$this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
293
+		$query_params = array(array('Event.EVT_ID' => $EVT_ID), 'order_by' => array('DTT_EVT_start' => 'asc'));
294
+		if ( ! $include_expired) {
295
+			$query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
296
+		}
297
+		if ($include_deleted) {
298
+			$query_params[0]['DTT_deleted'] = array('IN', array(true, false));
299
+		}
300
+		if ($limit) {
301
+			$query_params['limit'] = $limit;
302
+		}
303
+		/** @var EE_Datetime[] $result */
304
+		$result = $this->get_all($query_params);
305
+		$this->assume_values_already_prepared_by_model_object($old_assumption);
306
+		return $result;
307
+	}
308
+
309
+
310
+
311
+	/**
312
+	 * Gets ALL the datetimes for an ticket (including trashed ones, for now), ordered
313
+	 * only by start date
314
+	 *
315
+	 * @param int     $TKT_ID
316
+	 * @param boolean $include_expired
317
+	 * @param boolean $include_deleted
318
+	 * @param int     $limit
319
+	 * @return EE_Datetime[]
320
+	 * @throws \EE_Error
321
+	 */
322
+	public function get_datetimes_for_ticket_ordered_by_start_time(
323
+		$TKT_ID,
324
+		$include_expired = true,
325
+		$include_deleted = true,
326
+		$limit = null
327
+	) {
328
+		//sanitize TKT_ID
329
+		$TKT_ID = absint($TKT_ID);
330
+		$old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
331
+		$this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
332
+		$query_params = array(array('Ticket.TKT_ID' => $TKT_ID), 'order_by' => array('DTT_EVT_start' => 'asc'));
333
+		if ( ! $include_expired) {
334
+			$query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
335
+		}
336
+		if ($include_deleted) {
337
+			$query_params[0]['DTT_deleted'] = array('IN', array(true, false));
338
+		}
339
+		if ($limit) {
340
+			$query_params['limit'] = $limit;
341
+		}
342
+		/** @var EE_Datetime[] $result */
343
+		$result = $this->get_all($query_params);
344
+		$this->assume_values_already_prepared_by_model_object($old_assumption);
345
+		return $result;
346
+	}
347
+
348
+
349
+
350
+	/**
351
+	 * Gets all the datetimes for a ticket (including trashed ones, for now), ordered by the DTT_order for the
352
+	 * datetimes.
353
+	 *
354
+	 * @param  int      $TKT_ID          ID of ticket to retrieve the datetimes for
355
+	 * @param  boolean  $include_expired whether to include expired datetimes or not
356
+	 * @param  boolean  $include_deleted whether to include trashed datetimes or not.
357
+	 * @param  int|null $limit           if null, no limit, if int then limit results by
358
+	 *                                   that number
359
+	 * @return EE_Datetime[]
360
+	 * @throws \EE_Error
361
+	 */
362
+	public function get_datetimes_for_ticket_ordered_by_DTT_order(
363
+		$TKT_ID,
364
+		$include_expired = true,
365
+		$include_deleted = true,
366
+		$limit = null
367
+	) {
368
+		//sanitize id.
369
+		$TKT_ID = absint($TKT_ID);
370
+		$old_assumption = $this->get_assumption_concerning_values_already_prepared_by_model_object();
371
+		$this->assume_values_already_prepared_by_model_object(EEM_Base::prepared_for_use_in_db);
372
+		$where_params = array('Ticket.TKT_ID' => $TKT_ID);
373
+		$query_params = array($where_params, 'order_by' => array('DTT_order' => 'ASC'));
374
+		if ( ! $include_expired) {
375
+			$query_params[0]['DTT_EVT_end'] = array('>=', current_time('mysql', true));
376
+		}
377
+		if ($include_deleted) {
378
+			$query_params[0]['DTT_deleted'] = array('IN', array(true, false));
379
+		}
380
+		if ($limit) {
381
+			$query_params['limit'] = $limit;
382
+		}
383
+		/** @var EE_Datetime[] $result */
384
+		$result = $this->get_all($query_params);
385
+		$this->assume_values_already_prepared_by_model_object($old_assumption);
386
+		return $result;
387
+	}
388
+
389
+
390
+
391
+	/**
392
+	 * Gets the most important datetime for a particular event (ie, the primary event usually. But if for some WACK
393
+	 * reason it doesn't exist, we consider the earliest event the most important)
394
+	 *
395
+	 * @param int $EVT_ID
396
+	 * @return EE_Datetime
397
+	 * @throws \EE_Error
398
+	 */
399
+	public function get_most_important_datetime_for_event($EVT_ID)
400
+	{
401
+		$results = $this->get_datetimes_for_event_ordered_by_importance($EVT_ID, 1);
402
+		if ($results) {
403
+			return array_shift($results);
404
+		} else {
405
+			return null;
406
+		}
407
+	}
408
+
409
+
410
+
411
+	/**
412
+	 * This returns a wpdb->results        Array of all DTT month and years matching the incoming query params and
413
+	 * grouped by month and year.
414
+	 *
415
+	 * @param  array  $where_params      Array of query_params as described in the comments for EEM_Base::get_all()
416
+	 * @param  string $evt_active_status A string representing the evt active status to filter the months by.
417
+	 *                                   Can be:
418
+	 *                                   - '' = no filter
419
+	 *                                   - upcoming = Published events with at least one upcoming datetime.
420
+	 *                                   - expired = Events with all datetimes expired.
421
+	 *                                   - active = Events that are published and have at least one datetime that
422
+	 *                                   starts before now and ends after now.
423
+	 *                                   - inactive = Events that are either not published.
424
+	 * @return EE_Base_Class[]
425
+	 * @throws \EE_Error
426
+	 */
427
+	public function get_dtt_months_and_years($where_params, $evt_active_status = '')
428
+	{
429
+		$current_time_for_DTT_EVT_start = $this->current_time_for_query('DTT_EVT_start');
430
+		$current_time_for_DTT_EVT_end = $this->current_time_for_query('DTT_EVT_end');
431
+		switch ($evt_active_status) {
432
+			case 'upcoming' :
433
+				$where_params['Event.status'] = 'publish';
434
+				//if there are already query_params matching DTT_EVT_start then we need to modify that to add them.
435
+				if (isset($where_params['DTT_EVT_start'])) {
436
+					$where_params['DTT_EVT_start*****'] = $where_params['DTT_EVT_start'];
437
+				}
438
+				$where_params['DTT_EVT_start'] = array('>', $current_time_for_DTT_EVT_start);
439
+				break;
440
+			case 'expired' :
441
+				if (isset($where_params['Event.status'])) {
442
+					unset($where_params['Event.status']);
443
+				}
444
+				//get events to exclude
445
+				$exclude_query[0] = array_merge($where_params,
446
+					array('DTT_EVT_end' => array('>', $current_time_for_DTT_EVT_end)));
447
+				//first get all events that have datetimes where its not expired.
448
+				$event_ids = $this->_get_all_wpdb_results($exclude_query, OBJECT_K, 'Datetime.EVT_ID');
449
+				$event_ids = array_keys($event_ids);
450
+				if (isset($where_params['DTT_EVT_end'])) {
451
+					$where_params['DTT_EVT_end****'] = $where_params['DTT_EVT_end'];
452
+				}
453
+				$where_params['DTT_EVT_end'] = array('<', $current_time_for_DTT_EVT_end);
454
+				$where_params['Event.EVT_ID'] = array('NOT IN', $event_ids);
455
+				break;
456
+			case 'active' :
457
+				$where_params['Event.status'] = 'publish';
458
+				if (isset($where_params['DTT_EVT_start'])) {
459
+					$where_params['Datetime.DTT_EVT_start******'] = $where_params['DTT_EVT_start'];
460
+				}
461
+				if (isset($where_params['Datetime.DTT_EVT_end'])) {
462
+					$where_params['Datetime.DTT_EVT_end*****'] = $where_params['DTT_EVT_end'];
463
+				}
464
+				$where_params['DTT_EVT_start'] = array('<', $current_time_for_DTT_EVT_start);
465
+				$where_params['DTT_EVT_end'] = array('>', $current_time_for_DTT_EVT_end);
466
+				break;
467
+			case 'inactive' :
468
+				if (isset($where_params['Event.status'])) {
469
+					unset($where_params['Event.status']);
470
+				}
471
+				if (isset($where_params['OR'])) {
472
+					$where_params['AND']['OR'] = $where_params['OR'];
473
+				}
474
+				if (isset($where_params['DTT_EVT_end'])) {
475
+					$where_params['AND']['DTT_EVT_end****'] = $where_params['DTT_EVT_end'];
476
+					unset($where_params['DTT_EVT_end']);
477
+				}
478
+				if (isset($where_params['DTT_EVT_start'])) {
479
+					$where_params['AND']['DTT_EVT_start'] = $where_params['DTT_EVT_start'];
480
+					unset($where_params['DTT_EVT_start']);
481
+				}
482
+				$where_params['AND']['Event.status'] = array('!=', 'publish');
483
+				break;
484
+		}
485
+		$query_params[0] = $where_params;
486
+		$query_params['group_by'] = array('dtt_year', 'dtt_month');
487
+		$query_params['order_by'] = array('DTT_EVT_start' => 'DESC');
488
+		$query_interval = EEH_DTT_Helper::get_sql_query_interval_for_offset($this->get_timezone(), 'DTT_EVT_start');
489
+		$columns_to_select = array(
490
+			'dtt_year'      => array('YEAR(' . $query_interval . ')', '%s'),
491
+			'dtt_month'     => array('MONTHNAME(' . $query_interval . ')', '%s'),
492
+			'dtt_month_num' => array('MONTH(' . $query_interval . ')', '%s'),
493
+		);
494
+		return $this->_get_all_wpdb_results($query_params, OBJECT, $columns_to_select);
495
+	}
496
+
497
+
498
+
499
+	/**
500
+	 * Updates the DTT_sold attribute on each datetime (based on the registrations
501
+	 * for the tickets for each datetime)
502
+	 *
503
+	 * @param EE_Datetime[] $datetimes
504
+	 */
505
+	public function update_sold($datetimes)
506
+	{
507
+		foreach ($datetimes as $datetime) {
508
+			$datetime->update_sold();
509
+		}
510
+	}
511
+
512
+
513
+
514
+	/**
515
+	 *    Gets the total number of tickets available at a particular datetime
516
+	 *    (does NOT take into account the datetime's spaces available)
517
+	 *
518
+	 * @param int   $DTT_ID
519
+	 * @param array $query_params
520
+	 * @return int of tickets available. If sold out, return less than 1. If infinite, returns EE_INF,  IF there are NO
521
+	 *             tickets attached to datetime then FALSE is returned.
522
+	 */
523
+	public function sum_tickets_currently_available_at_datetime($DTT_ID, array $query_params = array())
524
+	{
525
+		$datetime = $this->get_one_by_ID($DTT_ID);
526
+		if ($datetime instanceof EE_Datetime) {
527
+			return $datetime->tickets_remaining($query_params);
528
+		}
529
+		return 0;
530
+	}
531
+
532
+
533
+
534
+	/**
535
+	 * This returns an array of counts of datetimes in the database for each Datetime status that can be queried.
536
+	 *
537
+	 * @param  array $stati_to_include If included you can restrict the statuses we return counts for by including the
538
+	 *                                 stati you want counts for as values in the array.  An empty array returns counts
539
+	 *                                 for all valid stati.
540
+	 * @param  array $query_params     If included can be used to refine the conditions for returning the count (i.e.
541
+	 *                                 only for Datetimes connected to a specific event, or specific ticket.
542
+	 * @return array  The value returned is an array indexed by Datetime Status and the values are the counts.  The
543
+	 * @throws \EE_Error
544
+	 *                                 stati used as index keys are: EE_Datetime::active EE_Datetime::upcoming EE_Datetime::expired
545
+	 */
546
+	public function get_datetime_counts_by_status(array $stati_to_include = array(), array $query_params = array())
547
+	{
548
+		//only accept where conditions for this query.
549
+		$_where = isset($query_params[0]) ? $query_params[0] : array();
550
+		$status_query_args = array(
551
+			EE_Datetime::active   => array_merge(
552
+				$_where,
553
+				array('DTT_EVT_start' => array('<', time()), 'DTT_EVT_end' => array('>', time()))
554
+			),
555
+			EE_Datetime::upcoming => array_merge(
556
+				$_where,
557
+				array('DTT_EVT_start' => array('>', time()))
558
+			),
559
+			EE_Datetime::expired  => array_merge(
560
+				$_where,
561
+				array('DTT_EVT_end' => array('<', time()))
562
+			),
563
+		);
564
+		if ( ! empty($stati_to_include)) {
565
+			foreach (array_keys($status_query_args) as $status) {
566
+				if ( ! in_array($status, $stati_to_include, true)) {
567
+					unset($status_query_args[$status]);
568
+				}
569
+			}
570
+		}
571
+		//loop through and query counts for each stati.
572
+		$status_query_results = array();
573
+		foreach ($status_query_args as $status => $status_where_conditions) {
574
+			$status_query_results[$status] = EEM_Datetime::count(array($status_where_conditions), 'DTT_ID', true);
575
+		}
576
+		return $status_query_results;
577
+	}
578
+
579
+
580
+
581
+	/**
582
+	 * Returns the specific count for a given Datetime status matching any given query_params.
583
+	 *
584
+	 * @param string $status Valid string representation for Datetime status requested. (Defaults to Active).
585
+	 * @param array  $query_params
586
+	 * @return int
587
+	 * @throws \EE_Error
588
+	 */
589
+	public function get_datetime_count_for_status($status = EE_Datetime::active, array $query_params = array())
590
+	{
591
+		$count = $this->get_datetime_counts_by_status(array($status), $query_params);
592
+		return ! empty($count[$status]) ? $count[$status] : 0;
593
+	}
594 594
 
595 595
 
596 596
 
Please login to merge, or discard this patch.
modules/ticket_selector/ProcessTicketSelector.php 2 patches
Indentation   +569 added lines, -569 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 namespace EventEspresso\modules\ticket_selector;
3 3
 
4 4
 if ( ! defined('EVENT_ESPRESSO_VERSION')) {
5
-    exit('No direct script access allowed');
5
+	exit('No direct script access allowed');
6 6
 }
7 7
 
8 8
 
@@ -19,574 +19,574 @@  discard block
 block discarded – undo
19 19
 class ProcessTicketSelector
20 20
 {
21 21
 
22
-    /**
23
-     * array of datetimes and the spaces available for them
24
-     *
25
-     * @access private
26
-     * @var array
27
-     */
28
-    private static $_available_spaces = array();
29
-
30
-
31
-
32
-    /**
33
-     * cancelTicketSelections
34
-     *
35
-     * @return        string
36
-     */
37
-    public function cancelTicketSelections()
38
-    {
39
-        // check nonce
40
-        if ( ! $this->processTicketSelectorNonce('cancel_ticket_selections')) {
41
-            return false;
42
-        }
43
-        \EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__);
44
-        if (\EE_Registry::instance()->REQ->is_set('event_id')) {
45
-            wp_safe_redirect(
46
-                \EEH_Event_View::event_link_url(
47
-                    \EE_Registry::instance()->REQ->get('event_id')
48
-                )
49
-            );
50
-        } else {
51
-            wp_safe_redirect(
52
-                site_url('/' . \EE_Registry::instance()->CFG->core->event_cpt_slug . '/')
53
-            );
54
-        }
55
-        exit();
56
-    }
57
-
58
-
59
-
60
-    /**
61
-     * processTicketSelectorNonce
62
-     *
63
-     * @param  string $nonce_name
64
-     * @param string  $id
65
-     * @return bool
66
-     */
67
-    private function processTicketSelectorNonce($nonce_name, $id = '')
68
-    {
69
-        $nonce_name_with_id = ! empty($id) ? "{$nonce_name}_nonce_{$id}" : "{$nonce_name}_nonce";
70
-        if (
71
-            ! is_admin()
72
-            && (
73
-                ! \EE_Registry::instance()->REQ->is_set($nonce_name_with_id)
74
-                || ! wp_verify_nonce(
75
-                    \EE_Registry::instance()->REQ->get($nonce_name_with_id),
76
-                    $nonce_name
77
-                )
78
-            )
79
-        ) {
80
-            \EE_Error::add_error(
81
-                sprintf(
82
-                    __(
83
-                        'We\'re sorry but your request failed to pass a security check.%sPlease click the back button on your browser and try again.',
84
-                        'event_espresso'
85
-                    ),
86
-                    '<br/>'
87
-                ),
88
-                __FILE__,
89
-                __FUNCTION__,
90
-                __LINE__
91
-            );
92
-            return false;
93
-        }
94
-        return true;
95
-    }
96
-
97
-
98
-
99
-    /**
100
-     * process_ticket_selections
101
-     *
102
-     * @return array|bool
103
-     * @throws \EE_Error
104
-     */
105
-    public function processTicketSelections()
106
-    {
107
-        do_action('EED_Ticket_Selector__process_ticket_selections__before');
108
-        // do we have an event id?
109
-        if ( ! \EE_Registry::instance()->REQ->is_set('tkt-slctr-event-id')) {
110
-            // $_POST['tkt-slctr-event-id'] was not set ?!?!?!?
111
-            \EE_Error::add_error(
112
-                sprintf(
113
-                    __(
114
-                        'An event id was not provided or was not received.%sPlease click the back button on your browser and try again.',
115
-                        'event_espresso'
116
-                    ),
117
-                    '<br/>'
118
-                ),
119
-                __FILE__,
120
-                __FUNCTION__,
121
-                __LINE__
122
-            );
123
-        }
124
-        //if event id is valid
125
-        $id = absint(\EE_Registry::instance()->REQ->get('tkt-slctr-event-id'));
126
-        // check nonce
127
-        if ( ! $this->processTicketSelectorNonce('process_ticket_selections', $id)) {
128
-            return false;
129
-        }
130
-        //		d( \EE_Registry::instance()->REQ );
131
-        self::$_available_spaces = array(
132
-            'tickets'   => array(),
133
-            'datetimes' => array(),
134
-        );
135
-        //we should really only have 1 registration in the works now (ie, no MER) so clear any previous items in the cart.
136
-        // When MER happens this will probably need to be tweaked, possibly wrapped in a conditional checking for some constant defined in MER etc.
137
-        \EE_Registry::instance()->load_core('Session');
138
-        // unless otherwise requested, clear the session
139
-        if (apply_filters('FHEE__EE_Ticket_Selector__process_ticket_selections__clear_session', true)) {
140
-            \EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__);
141
-        }
142
-        //d( \EE_Registry::instance()->SSN );
143
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
144
-        // validate/sanitize data
145
-        $valid = $this->validatePostData($id);
146
-        //EEH_Debug_Tools::printr( $_REQUEST, '$_REQUEST', __FILE__, __LINE__ );
147
-        //EEH_Debug_Tools::printr( $valid, '$valid', __FILE__, __LINE__ );
148
-        //EEH_Debug_Tools::printr( $valid[ 'total_tickets' ], 'total_tickets', __FILE__, __LINE__ );
149
-        //EEH_Debug_Tools::printr( $valid[ 'max_atndz' ], 'max_atndz', __FILE__, __LINE__ );
150
-        //check total tickets ordered vs max number of attendees that can register
151
-        if ($valid['total_tickets'] > $valid['max_atndz']) {
152
-            // ordering too many tickets !!!
153
-            $total_tickets_string = _n(
154
-                'You have attempted to purchase %s ticket.',
155
-                'You have attempted to purchase %s tickets.',
156
-                $valid['total_tickets'],
157
-                'event_espresso'
158
-            );
159
-            $limit_error_1 = sprintf($total_tickets_string, $valid['total_tickets']);
160
-            // dev only message
161
-            $max_atndz_string = _n(
162
-                'The registration limit for this event is %s ticket per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.',
163
-                'The registration limit for this event is %s tickets per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.',
164
-                $valid['max_atndz'],
165
-                'event_espresso'
166
-            );
167
-            $limit_error_2 = sprintf($max_atndz_string, $valid['max_atndz'], $valid['max_atndz']);
168
-            \EE_Error::add_error($limit_error_1 . '<br/>' . $limit_error_2, __FILE__, __FUNCTION__, __LINE__);
169
-        } else {
170
-            // all data appears to be valid
171
-            $tckts_slctd = false;
172
-            $tickets_added = 0;
173
-            $valid = apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__valid_post_data', $valid);
174
-            if ($valid['total_tickets'] > 0) {
175
-                // load cart
176
-                \EE_Registry::instance()->load_core('Cart');
177
-                // cycle thru the number of data rows sent from the event listing
178
-                for ($x = 0; $x < $valid['rows']; $x++) {
179
-                    // does this row actually contain a ticket quantity?
180
-                    if (isset($valid['qty'][$x]) && $valid['qty'][$x] > 0) {
181
-                        // YES we have a ticket quantity
182
-                        $tckts_slctd = true;
183
-                        //						d( $valid['ticket_obj'][$x] );
184
-                        if ($valid['ticket_obj'][$x] instanceof \EE_Ticket) {
185
-                            // then add ticket to cart
186
-                            $tickets_added += $this->addTicketToCart(
187
-                                $valid['ticket_obj'][$x],
188
-                                $valid['qty'][$x]
189
-                            );
190
-                            if (\EE_Error::has_error()) {
191
-                                break;
192
-                            }
193
-                        } else {
194
-                            // nothing added to cart retrieved
195
-                            \EE_Error::add_error(
196
-                                sprintf(
197
-                                    __(
198
-                                        'A valid ticket could not be retrieved for the event.%sPlease click the back button on your browser and try again.',
199
-                                        'event_espresso'
200
-                                    ),
201
-                                    '<br/>'
202
-                                ),
203
-                                __FILE__, __FUNCTION__, __LINE__
204
-                            );
205
-                        }
206
-                    }
207
-                }
208
-            }
209
-            do_action(
210
-                'AHEE__EE_Ticket_Selector__process_ticket_selections__after_tickets_added_to_cart',
211
-                \EE_Registry::instance()->CART,
212
-                $this
213
-            );
214
-            //d( \EE_Registry::instance()->CART );
215
-            //die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL REDIRECT HERE BEFORE CART UPDATE
216
-            if (apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__tckts_slctd', $tckts_slctd)) {
217
-                if (apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__success', $tickets_added)) {
218
-                    do_action(
219
-                        'FHEE__EE_Ticket_Selector__process_ticket_selections__before_redirecting_to_checkout',
220
-                        \EE_Registry::instance()->CART,
221
-                        $this
222
-                    );
223
-                    \EE_Registry::instance()->CART->recalculate_all_cart_totals();
224
-                    \EE_Registry::instance()->CART->save_cart(false);
225
-                    // exit('KILL REDIRECT AFTER CART UPDATE'); // <<<<<<<<  OR HERE TO KILL REDIRECT AFTER CART UPDATE
226
-                    // just return TRUE for registrations being made from admin
227
-                    if (is_admin()) {
228
-                        return true;
229
-                    }
230
-                    \EE_Error::get_notices(false, true);
231
-                    wp_safe_redirect(
232
-                        apply_filters(
233
-                            'FHEE__EE_Ticket_Selector__process_ticket_selections__success_redirect_url',
234
-                            \EE_Registry::instance()->CFG->core->reg_page_url()
235
-                        )
236
-                    );
237
-                    exit();
238
-                } else {
239
-                    if ( ! \EE_Error::has_error() && ! \EE_Error::has_error(true, 'attention')) {
240
-                        // nothing added to cart
241
-                        \EE_Error::add_attention(__('No tickets were added for the event', 'event_espresso'),
242
-                            __FILE__, __FUNCTION__, __LINE__);
243
-                    }
244
-                }
245
-            } else {
246
-                // no ticket quantities were selected
247
-                \EE_Error::add_error(__('You need to select a ticket quantity before you can proceed.',
248
-                    'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
249
-            }
250
-        }
251
-        //die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL BEFORE REDIRECT
252
-        // at this point, just return if registration is being made from admin
253
-        if (is_admin()) {
254
-            return false;
255
-        }
256
-        if ($valid['return_url']) {
257
-            \EE_Error::get_notices(false, true);
258
-            wp_safe_redirect($valid['return_url']);
259
-            exit();
260
-        } elseif (isset($event_to_add['id'])) {
261
-            \EE_Error::get_notices(false, true);
262
-            wp_safe_redirect(get_permalink($event_to_add['id']));
263
-            exit();
264
-        } else {
265
-            echo \EE_Error::get_notices();
266
-        }
267
-        return false;
268
-    }
269
-
270
-
271
-
272
-    /**
273
-     * validate_post_data
274
-     *
275
-     * @param int $id
276
-     * @return array|FALSE
277
-     */
278
-    private function validatePostData($id = 0)
279
-    {
280
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
281
-        if ( ! $id) {
282
-            \EE_Error::add_error(
283
-                __('The event id provided was not valid.', 'event_espresso'),
284
-                __FILE__,
285
-                __FUNCTION__,
286
-                __LINE__
287
-            );
288
-            return false;
289
-        }
290
-        // start with an empty array()
291
-        $valid_data = array();
292
-        // grab valid id
293
-        $valid_data['id'] = $id;
294
-        // array of other form names
295
-        $inputs_to_clean = array(
296
-            'event_id'   => 'tkt-slctr-event-id',
297
-            'max_atndz'  => 'tkt-slctr-max-atndz-',
298
-            'rows'       => 'tkt-slctr-rows-',
299
-            'qty'        => 'tkt-slctr-qty-',
300
-            'ticket_id'  => 'tkt-slctr-ticket-id-',
301
-            'return_url' => 'tkt-slctr-return-url-',
302
-        );
303
-        // let's track the total number of tickets ordered.'
304
-        $valid_data['total_tickets'] = 0;
305
-        // cycle through $inputs_to_clean array
306
-        foreach ($inputs_to_clean as $what => $input_to_clean) {
307
-            // check for POST data
308
-            if (\EE_Registry::instance()->REQ->is_set($input_to_clean . $id)) {
309
-                // grab value
310
-                $input_value = \EE_Registry::instance()->REQ->get($input_to_clean . $id);
311
-                switch ($what) {
312
-                    // integers
313
-                    case 'event_id':
314
-                        $valid_data[$what] = absint($input_value);
315
-                        // get event via the event id we put in the form
316
-                        $valid_data['event'] = \EE_Registry::instance()
317
-                                                           ->load_model('Event')
318
-                                                           ->get_one_by_ID($valid_data['event_id']);
319
-                        break;
320
-                    case 'rows':
321
-                    case 'max_atndz':
322
-                        $valid_data[$what] = absint($input_value);
323
-                        break;
324
-                    // arrays of integers
325
-                    case 'qty':
326
-                        /** @var array $row_qty */
327
-                        $row_qty = $input_value;
328
-                        // if qty is coming from a radio button input, then we need to assemble an array of rows
329
-                        if ( ! is_array($row_qty)) {
330
-                            // get number of rows
331
-                            $rows = \EE_Registry::instance()->REQ->is_set('tkt-slctr-rows-' . $id)
332
-                                ? absint(\EE_Registry::instance()->REQ->get('tkt-slctr-rows-' . $id))
333
-                                : 1;
334
-                            // explode ints by the dash
335
-                            $row_qty = explode('-', $row_qty);
336
-                            $row = isset($row_qty[0]) ? absint($row_qty[0]) : 1;
337
-                            $qty = isset($row_qty[1]) ? absint($row_qty[1]) : 0;
338
-                            $row_qty = array($row => $qty);
339
-                            for ($x = 1; $x <= $rows; $x++) {
340
-                                if ( ! isset($row_qty[$x])) {
341
-                                    $row_qty[$x] = 0;
342
-                                }
343
-                            }
344
-                        }
345
-                        ksort($row_qty);
346
-                        // cycle thru values
347
-                        foreach ($row_qty as $qty) {
348
-                            $qty = absint($qty);
349
-                            // sanitize as integers
350
-                            $valid_data[$what][] = $qty;
351
-                            $valid_data['total_tickets'] += $qty;
352
-                        }
353
-                        break;
354
-                    // array of integers
355
-                    case 'ticket_id':
356
-                        $value_array = array();
357
-                        // cycle thru values
358
-                        foreach ((array)$input_value as $key => $value) {
359
-                            // allow only numbers, letters,  spaces, commas and dashes
360
-                            $value_array[$key] = wp_strip_all_tags($value);
361
-                            // get ticket via the ticket id we put in the form
362
-                            $ticket_obj = \EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($value);
363
-                            $valid_data['ticket_obj'][$key] = $ticket_obj;
364
-                        }
365
-                        $valid_data[$what] = $value_array;
366
-                        break;
367
-                    case 'return_url' :
368
-                        // grab and sanitize return-url
369
-                        $input_value = esc_url_raw($input_value);
370
-                        // was the request coming from an iframe ? if so, then:
371
-                        if (strpos($input_value, 'event_list=iframe')) {
372
-                            // get anchor fragment
373
-                            $input_value = explode('#', $input_value);
374
-                            $input_value = end($input_value);
375
-                            // use event list url instead, but append anchor
376
-                            $input_value = \EEH_Event_View::event_archive_url() . '#' . $input_value;
377
-                        }
378
-                        $valid_data[$what] = $input_value;
379
-                        break;
380
-                }    // end switch $what
381
-            }
382
-        }    // end foreach $inputs_to_clean
383
-        return $valid_data;
384
-    }
385
-
386
-
387
-
388
-    /**
389
-     * adds a ticket to the cart
390
-     *
391
-     * @param \EE_Ticket $ticket
392
-     * @param int        $qty
393
-     * @return TRUE on success, FALSE on fail
394
-     * @throws \EE_Error
395
-     */
396
-    private function addTicketToCart(\EE_Ticket $ticket = null, $qty = 1)
397
-    {
398
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
399
-        // get the number of spaces left for this datetime ticket
400
-        $available_spaces = $this->ticketDatetimeAvailability($ticket);
401
-        // compare available spaces against the number of tickets being purchased
402
-        if ($available_spaces >= $qty) {
403
-            // allow addons to prevent a ticket from being added to cart
404
-            if (
405
-            ! apply_filters(
406
-                'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_add_to_cart',
407
-                true,
408
-                $ticket,
409
-                $qty,
410
-                $available_spaces
411
-            )
412
-            ) {
413
-                return false;
414
-            }
415
-            $qty = absint(apply_filters('FHEE__EE_Ticket_Selector___add_ticket_to_cart__ticket_qty', $qty, $ticket));
416
-            // add event to cart
417
-            if (\EE_Registry::instance()->CART->add_ticket_to_cart($ticket, $qty)) {
418
-                $this->recalculateTicketDatetimeAvailability($ticket, $qty);
419
-                return true;
420
-            }
421
-            return false;
422
-        }
423
-        // tickets can not be purchased but let's find the exact number left
424
-        // for the last ticket selected PRIOR to subtracting tickets
425
-        $available_spaces = $this->ticketDatetimeAvailability($ticket, true);
426
-        // greedy greedy greedy eh?
427
-        if ($available_spaces > 0) {
428
-            if (
429
-            apply_filters(
430
-                'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_display_availability_error',
431
-                true,
432
-                $ticket,
433
-                $qty,
434
-                $available_spaces
435
-            )
436
-            ) {
437
-                $this->displayAvailabilityError($available_spaces);
438
-            }
439
-        } else {
440
-            \EE_Error::add_error(
441
-                __(
442
-                    'We\'re sorry, but there are no available spaces left for this event at this particular date and time.',
443
-                    'event_espresso'
444
-                ),
445
-                __FILE__, __FUNCTION__, __LINE__
446
-            );
447
-        }
448
-        return false;
449
-    }
450
-
451
-
452
-
453
-    /**
454
-     * @param int $available_spaces
455
-     * @throws \EE_Error
456
-     */
457
-    private function displayAvailabilityError($available_spaces = 1)
458
-    {
459
-        // add error messaging - we're using the _n function that will generate
460
-        // the appropriate singular or plural message based on the number of $available_spaces
461
-        if (\EE_Registry::instance()->CART->all_ticket_quantity_count()) {
462
-            $msg = sprintf(
463
-                _n(
464
-                    'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.',
465
-                    'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.',
466
-                    $available_spaces,
467
-                    'event_espresso'
468
-                ),
469
-                $available_spaces,
470
-                '<br />'
471
-            );
472
-        } else {
473
-            $msg = sprintf(
474
-                _n(
475
-                    'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets.',
476
-                    'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets.',
477
-                    $available_spaces,
478
-                    'event_espresso'
479
-                ),
480
-                $available_spaces,
481
-                '<br />'
482
-            );
483
-        }
484
-        \EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
485
-    }
486
-
487
-
488
-
489
-    /**
490
-     * ticketDatetimeAvailability
491
-     * creates an array of tickets plus all of the datetimes available to each ticket
492
-     * and tracks the spaces remaining for each of those datetimes
493
-     *
494
-     * @param \EE_Ticket $ticket - selected ticket
495
-     * @param bool       $get_original_ticket_spaces
496
-     * @return int
497
-     * @throws \EE_Error
498
-     */
499
-    private function ticketDatetimeAvailability(\EE_Ticket $ticket, $get_original_ticket_spaces = false)
500
-    {
501
-        // if the $_available_spaces array has not been set up yet...
502
-        if ( ! isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
503
-            $this->setInitialTicketDatetimeAvailability($ticket);
504
-        }
505
-        $available_spaces = $ticket->qty() - $ticket->sold();
506
-        if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
507
-            // loop thru tickets, which will ALSO include individual ticket records AND a total
508
-            foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) {
509
-                // if we want the original datetime availability BEFORE we started subtracting tickets ?
510
-                if ($get_original_ticket_spaces) {
511
-                    // then grab the available spaces from the "tickets" array
512
-                    // and compare with the above to get the lowest number
513
-                    $available_spaces = min(
514
-                        $available_spaces,
515
-                        self::$_available_spaces['tickets'][$ticket->ID()][$DTD_ID]
516
-                    );
517
-                } else {
518
-                    // we want the updated ticket availability as stored in the "datetimes" array
519
-                    $available_spaces = min($available_spaces, self::$_available_spaces['datetimes'][$DTD_ID]);
520
-                }
521
-            }
522
-        }
523
-        return $available_spaces;
524
-    }
525
-
526
-
527
-
528
-    /**
529
-     * @param \EE_Ticket $ticket
530
-     * @return void
531
-     * @throws \EE_Error
532
-     */
533
-    private function setInitialTicketDatetimeAvailability(\EE_Ticket $ticket)
534
-    {
535
-        // first, get all of the datetimes that are available to this ticket
536
-        $datetimes = $ticket->get_many_related(
537
-            'Datetime',
538
-            array(
539
-                array(
540
-                    'DTT_EVT_end' => array(
541
-                        '>=',
542
-                        \EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'),
543
-                    ),
544
-                ),
545
-                'order_by' => array('DTT_EVT_start' => 'ASC'),
546
-            )
547
-        );
548
-        if ( ! empty($datetimes)) {
549
-            // now loop thru all of the datetimes
550
-            foreach ($datetimes as $datetime) {
551
-                if ($datetime instanceof \EE_Datetime) {
552
-                    // the number of spaces available for the datetime without considering individual ticket quantities
553
-                    $spaces_remaining = $datetime->spaces_remaining();
554
-                    // save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold
555
-                    // or the datetime spaces remaining) to this ticket using the datetime ID as the key
556
-                    self::$_available_spaces['tickets'][$ticket->ID()][$datetime->ID()] = min(
557
-                        $ticket->qty() - $ticket->sold(),
558
-                        $spaces_remaining
559
-                    );
560
-                    // if the remaining spaces for this datetime is already set,
561
-                    // then compare that against the datetime spaces remaining, and take the lowest number,
562
-                    // else just take the datetime spaces remaining, and assign to the datetimes array
563
-                    self::$_available_spaces['datetimes'][$datetime->ID()] = isset(
564
-                        self::$_available_spaces['datetimes'][$datetime->ID()]
565
-                    )
566
-                        ? min(self::$_available_spaces['datetimes'][$datetime->ID()], $spaces_remaining)
567
-                        : $spaces_remaining;
568
-                }
569
-            }
570
-        }
571
-    }
572
-
573
-
574
-
575
-    /**
576
-     * @param    \EE_Ticket $ticket
577
-     * @param    int        $qty
578
-     * @return    void
579
-     */
580
-    private function recalculateTicketDatetimeAvailability(\EE_Ticket $ticket, $qty = 0)
581
-    {
582
-        if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
583
-            // loop thru tickets, which will ALSO include individual ticket records AND a total
584
-            foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) {
585
-                // subtract the qty of selected tickets from each datetime's available spaces this ticket has access to,
586
-                self::$_available_spaces['datetimes'][$DTD_ID] -= $qty;
587
-            }
588
-        }
589
-    }
22
+	/**
23
+	 * array of datetimes and the spaces available for them
24
+	 *
25
+	 * @access private
26
+	 * @var array
27
+	 */
28
+	private static $_available_spaces = array();
29
+
30
+
31
+
32
+	/**
33
+	 * cancelTicketSelections
34
+	 *
35
+	 * @return        string
36
+	 */
37
+	public function cancelTicketSelections()
38
+	{
39
+		// check nonce
40
+		if ( ! $this->processTicketSelectorNonce('cancel_ticket_selections')) {
41
+			return false;
42
+		}
43
+		\EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__);
44
+		if (\EE_Registry::instance()->REQ->is_set('event_id')) {
45
+			wp_safe_redirect(
46
+				\EEH_Event_View::event_link_url(
47
+					\EE_Registry::instance()->REQ->get('event_id')
48
+				)
49
+			);
50
+		} else {
51
+			wp_safe_redirect(
52
+				site_url('/' . \EE_Registry::instance()->CFG->core->event_cpt_slug . '/')
53
+			);
54
+		}
55
+		exit();
56
+	}
57
+
58
+
59
+
60
+	/**
61
+	 * processTicketSelectorNonce
62
+	 *
63
+	 * @param  string $nonce_name
64
+	 * @param string  $id
65
+	 * @return bool
66
+	 */
67
+	private function processTicketSelectorNonce($nonce_name, $id = '')
68
+	{
69
+		$nonce_name_with_id = ! empty($id) ? "{$nonce_name}_nonce_{$id}" : "{$nonce_name}_nonce";
70
+		if (
71
+			! is_admin()
72
+			&& (
73
+				! \EE_Registry::instance()->REQ->is_set($nonce_name_with_id)
74
+				|| ! wp_verify_nonce(
75
+					\EE_Registry::instance()->REQ->get($nonce_name_with_id),
76
+					$nonce_name
77
+				)
78
+			)
79
+		) {
80
+			\EE_Error::add_error(
81
+				sprintf(
82
+					__(
83
+						'We\'re sorry but your request failed to pass a security check.%sPlease click the back button on your browser and try again.',
84
+						'event_espresso'
85
+					),
86
+					'<br/>'
87
+				),
88
+				__FILE__,
89
+				__FUNCTION__,
90
+				__LINE__
91
+			);
92
+			return false;
93
+		}
94
+		return true;
95
+	}
96
+
97
+
98
+
99
+	/**
100
+	 * process_ticket_selections
101
+	 *
102
+	 * @return array|bool
103
+	 * @throws \EE_Error
104
+	 */
105
+	public function processTicketSelections()
106
+	{
107
+		do_action('EED_Ticket_Selector__process_ticket_selections__before');
108
+		// do we have an event id?
109
+		if ( ! \EE_Registry::instance()->REQ->is_set('tkt-slctr-event-id')) {
110
+			// $_POST['tkt-slctr-event-id'] was not set ?!?!?!?
111
+			\EE_Error::add_error(
112
+				sprintf(
113
+					__(
114
+						'An event id was not provided or was not received.%sPlease click the back button on your browser and try again.',
115
+						'event_espresso'
116
+					),
117
+					'<br/>'
118
+				),
119
+				__FILE__,
120
+				__FUNCTION__,
121
+				__LINE__
122
+			);
123
+		}
124
+		//if event id is valid
125
+		$id = absint(\EE_Registry::instance()->REQ->get('tkt-slctr-event-id'));
126
+		// check nonce
127
+		if ( ! $this->processTicketSelectorNonce('process_ticket_selections', $id)) {
128
+			return false;
129
+		}
130
+		//		d( \EE_Registry::instance()->REQ );
131
+		self::$_available_spaces = array(
132
+			'tickets'   => array(),
133
+			'datetimes' => array(),
134
+		);
135
+		//we should really only have 1 registration in the works now (ie, no MER) so clear any previous items in the cart.
136
+		// When MER happens this will probably need to be tweaked, possibly wrapped in a conditional checking for some constant defined in MER etc.
137
+		\EE_Registry::instance()->load_core('Session');
138
+		// unless otherwise requested, clear the session
139
+		if (apply_filters('FHEE__EE_Ticket_Selector__process_ticket_selections__clear_session', true)) {
140
+			\EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__);
141
+		}
142
+		//d( \EE_Registry::instance()->SSN );
143
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
144
+		// validate/sanitize data
145
+		$valid = $this->validatePostData($id);
146
+		//EEH_Debug_Tools::printr( $_REQUEST, '$_REQUEST', __FILE__, __LINE__ );
147
+		//EEH_Debug_Tools::printr( $valid, '$valid', __FILE__, __LINE__ );
148
+		//EEH_Debug_Tools::printr( $valid[ 'total_tickets' ], 'total_tickets', __FILE__, __LINE__ );
149
+		//EEH_Debug_Tools::printr( $valid[ 'max_atndz' ], 'max_atndz', __FILE__, __LINE__ );
150
+		//check total tickets ordered vs max number of attendees that can register
151
+		if ($valid['total_tickets'] > $valid['max_atndz']) {
152
+			// ordering too many tickets !!!
153
+			$total_tickets_string = _n(
154
+				'You have attempted to purchase %s ticket.',
155
+				'You have attempted to purchase %s tickets.',
156
+				$valid['total_tickets'],
157
+				'event_espresso'
158
+			);
159
+			$limit_error_1 = sprintf($total_tickets_string, $valid['total_tickets']);
160
+			// dev only message
161
+			$max_atndz_string = _n(
162
+				'The registration limit for this event is %s ticket per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.',
163
+				'The registration limit for this event is %s tickets per registration, therefore the total number of tickets you may purchase at a time can not exceed %s.',
164
+				$valid['max_atndz'],
165
+				'event_espresso'
166
+			);
167
+			$limit_error_2 = sprintf($max_atndz_string, $valid['max_atndz'], $valid['max_atndz']);
168
+			\EE_Error::add_error($limit_error_1 . '<br/>' . $limit_error_2, __FILE__, __FUNCTION__, __LINE__);
169
+		} else {
170
+			// all data appears to be valid
171
+			$tckts_slctd = false;
172
+			$tickets_added = 0;
173
+			$valid = apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__valid_post_data', $valid);
174
+			if ($valid['total_tickets'] > 0) {
175
+				// load cart
176
+				\EE_Registry::instance()->load_core('Cart');
177
+				// cycle thru the number of data rows sent from the event listing
178
+				for ($x = 0; $x < $valid['rows']; $x++) {
179
+					// does this row actually contain a ticket quantity?
180
+					if (isset($valid['qty'][$x]) && $valid['qty'][$x] > 0) {
181
+						// YES we have a ticket quantity
182
+						$tckts_slctd = true;
183
+						//						d( $valid['ticket_obj'][$x] );
184
+						if ($valid['ticket_obj'][$x] instanceof \EE_Ticket) {
185
+							// then add ticket to cart
186
+							$tickets_added += $this->addTicketToCart(
187
+								$valid['ticket_obj'][$x],
188
+								$valid['qty'][$x]
189
+							);
190
+							if (\EE_Error::has_error()) {
191
+								break;
192
+							}
193
+						} else {
194
+							// nothing added to cart retrieved
195
+							\EE_Error::add_error(
196
+								sprintf(
197
+									__(
198
+										'A valid ticket could not be retrieved for the event.%sPlease click the back button on your browser and try again.',
199
+										'event_espresso'
200
+									),
201
+									'<br/>'
202
+								),
203
+								__FILE__, __FUNCTION__, __LINE__
204
+							);
205
+						}
206
+					}
207
+				}
208
+			}
209
+			do_action(
210
+				'AHEE__EE_Ticket_Selector__process_ticket_selections__after_tickets_added_to_cart',
211
+				\EE_Registry::instance()->CART,
212
+				$this
213
+			);
214
+			//d( \EE_Registry::instance()->CART );
215
+			//die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL REDIRECT HERE BEFORE CART UPDATE
216
+			if (apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__tckts_slctd', $tckts_slctd)) {
217
+				if (apply_filters('FHEE__EED_Ticket_Selector__process_ticket_selections__success', $tickets_added)) {
218
+					do_action(
219
+						'FHEE__EE_Ticket_Selector__process_ticket_selections__before_redirecting_to_checkout',
220
+						\EE_Registry::instance()->CART,
221
+						$this
222
+					);
223
+					\EE_Registry::instance()->CART->recalculate_all_cart_totals();
224
+					\EE_Registry::instance()->CART->save_cart(false);
225
+					// exit('KILL REDIRECT AFTER CART UPDATE'); // <<<<<<<<  OR HERE TO KILL REDIRECT AFTER CART UPDATE
226
+					// just return TRUE for registrations being made from admin
227
+					if (is_admin()) {
228
+						return true;
229
+					}
230
+					\EE_Error::get_notices(false, true);
231
+					wp_safe_redirect(
232
+						apply_filters(
233
+							'FHEE__EE_Ticket_Selector__process_ticket_selections__success_redirect_url',
234
+							\EE_Registry::instance()->CFG->core->reg_page_url()
235
+						)
236
+					);
237
+					exit();
238
+				} else {
239
+					if ( ! \EE_Error::has_error() && ! \EE_Error::has_error(true, 'attention')) {
240
+						// nothing added to cart
241
+						\EE_Error::add_attention(__('No tickets were added for the event', 'event_espresso'),
242
+							__FILE__, __FUNCTION__, __LINE__);
243
+					}
244
+				}
245
+			} else {
246
+				// no ticket quantities were selected
247
+				\EE_Error::add_error(__('You need to select a ticket quantity before you can proceed.',
248
+					'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
249
+			}
250
+		}
251
+		//die(); // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< KILL BEFORE REDIRECT
252
+		// at this point, just return if registration is being made from admin
253
+		if (is_admin()) {
254
+			return false;
255
+		}
256
+		if ($valid['return_url']) {
257
+			\EE_Error::get_notices(false, true);
258
+			wp_safe_redirect($valid['return_url']);
259
+			exit();
260
+		} elseif (isset($event_to_add['id'])) {
261
+			\EE_Error::get_notices(false, true);
262
+			wp_safe_redirect(get_permalink($event_to_add['id']));
263
+			exit();
264
+		} else {
265
+			echo \EE_Error::get_notices();
266
+		}
267
+		return false;
268
+	}
269
+
270
+
271
+
272
+	/**
273
+	 * validate_post_data
274
+	 *
275
+	 * @param int $id
276
+	 * @return array|FALSE
277
+	 */
278
+	private function validatePostData($id = 0)
279
+	{
280
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
281
+		if ( ! $id) {
282
+			\EE_Error::add_error(
283
+				__('The event id provided was not valid.', 'event_espresso'),
284
+				__FILE__,
285
+				__FUNCTION__,
286
+				__LINE__
287
+			);
288
+			return false;
289
+		}
290
+		// start with an empty array()
291
+		$valid_data = array();
292
+		// grab valid id
293
+		$valid_data['id'] = $id;
294
+		// array of other form names
295
+		$inputs_to_clean = array(
296
+			'event_id'   => 'tkt-slctr-event-id',
297
+			'max_atndz'  => 'tkt-slctr-max-atndz-',
298
+			'rows'       => 'tkt-slctr-rows-',
299
+			'qty'        => 'tkt-slctr-qty-',
300
+			'ticket_id'  => 'tkt-slctr-ticket-id-',
301
+			'return_url' => 'tkt-slctr-return-url-',
302
+		);
303
+		// let's track the total number of tickets ordered.'
304
+		$valid_data['total_tickets'] = 0;
305
+		// cycle through $inputs_to_clean array
306
+		foreach ($inputs_to_clean as $what => $input_to_clean) {
307
+			// check for POST data
308
+			if (\EE_Registry::instance()->REQ->is_set($input_to_clean . $id)) {
309
+				// grab value
310
+				$input_value = \EE_Registry::instance()->REQ->get($input_to_clean . $id);
311
+				switch ($what) {
312
+					// integers
313
+					case 'event_id':
314
+						$valid_data[$what] = absint($input_value);
315
+						// get event via the event id we put in the form
316
+						$valid_data['event'] = \EE_Registry::instance()
317
+														   ->load_model('Event')
318
+														   ->get_one_by_ID($valid_data['event_id']);
319
+						break;
320
+					case 'rows':
321
+					case 'max_atndz':
322
+						$valid_data[$what] = absint($input_value);
323
+						break;
324
+					// arrays of integers
325
+					case 'qty':
326
+						/** @var array $row_qty */
327
+						$row_qty = $input_value;
328
+						// if qty is coming from a radio button input, then we need to assemble an array of rows
329
+						if ( ! is_array($row_qty)) {
330
+							// get number of rows
331
+							$rows = \EE_Registry::instance()->REQ->is_set('tkt-slctr-rows-' . $id)
332
+								? absint(\EE_Registry::instance()->REQ->get('tkt-slctr-rows-' . $id))
333
+								: 1;
334
+							// explode ints by the dash
335
+							$row_qty = explode('-', $row_qty);
336
+							$row = isset($row_qty[0]) ? absint($row_qty[0]) : 1;
337
+							$qty = isset($row_qty[1]) ? absint($row_qty[1]) : 0;
338
+							$row_qty = array($row => $qty);
339
+							for ($x = 1; $x <= $rows; $x++) {
340
+								if ( ! isset($row_qty[$x])) {
341
+									$row_qty[$x] = 0;
342
+								}
343
+							}
344
+						}
345
+						ksort($row_qty);
346
+						// cycle thru values
347
+						foreach ($row_qty as $qty) {
348
+							$qty = absint($qty);
349
+							// sanitize as integers
350
+							$valid_data[$what][] = $qty;
351
+							$valid_data['total_tickets'] += $qty;
352
+						}
353
+						break;
354
+					// array of integers
355
+					case 'ticket_id':
356
+						$value_array = array();
357
+						// cycle thru values
358
+						foreach ((array)$input_value as $key => $value) {
359
+							// allow only numbers, letters,  spaces, commas and dashes
360
+							$value_array[$key] = wp_strip_all_tags($value);
361
+							// get ticket via the ticket id we put in the form
362
+							$ticket_obj = \EE_Registry::instance()->load_model('Ticket')->get_one_by_ID($value);
363
+							$valid_data['ticket_obj'][$key] = $ticket_obj;
364
+						}
365
+						$valid_data[$what] = $value_array;
366
+						break;
367
+					case 'return_url' :
368
+						// grab and sanitize return-url
369
+						$input_value = esc_url_raw($input_value);
370
+						// was the request coming from an iframe ? if so, then:
371
+						if (strpos($input_value, 'event_list=iframe')) {
372
+							// get anchor fragment
373
+							$input_value = explode('#', $input_value);
374
+							$input_value = end($input_value);
375
+							// use event list url instead, but append anchor
376
+							$input_value = \EEH_Event_View::event_archive_url() . '#' . $input_value;
377
+						}
378
+						$valid_data[$what] = $input_value;
379
+						break;
380
+				}    // end switch $what
381
+			}
382
+		}    // end foreach $inputs_to_clean
383
+		return $valid_data;
384
+	}
385
+
386
+
387
+
388
+	/**
389
+	 * adds a ticket to the cart
390
+	 *
391
+	 * @param \EE_Ticket $ticket
392
+	 * @param int        $qty
393
+	 * @return TRUE on success, FALSE on fail
394
+	 * @throws \EE_Error
395
+	 */
396
+	private function addTicketToCart(\EE_Ticket $ticket = null, $qty = 1)
397
+	{
398
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
399
+		// get the number of spaces left for this datetime ticket
400
+		$available_spaces = $this->ticketDatetimeAvailability($ticket);
401
+		// compare available spaces against the number of tickets being purchased
402
+		if ($available_spaces >= $qty) {
403
+			// allow addons to prevent a ticket from being added to cart
404
+			if (
405
+			! apply_filters(
406
+				'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_add_to_cart',
407
+				true,
408
+				$ticket,
409
+				$qty,
410
+				$available_spaces
411
+			)
412
+			) {
413
+				return false;
414
+			}
415
+			$qty = absint(apply_filters('FHEE__EE_Ticket_Selector___add_ticket_to_cart__ticket_qty', $qty, $ticket));
416
+			// add event to cart
417
+			if (\EE_Registry::instance()->CART->add_ticket_to_cart($ticket, $qty)) {
418
+				$this->recalculateTicketDatetimeAvailability($ticket, $qty);
419
+				return true;
420
+			}
421
+			return false;
422
+		}
423
+		// tickets can not be purchased but let's find the exact number left
424
+		// for the last ticket selected PRIOR to subtracting tickets
425
+		$available_spaces = $this->ticketDatetimeAvailability($ticket, true);
426
+		// greedy greedy greedy eh?
427
+		if ($available_spaces > 0) {
428
+			if (
429
+			apply_filters(
430
+				'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_display_availability_error',
431
+				true,
432
+				$ticket,
433
+				$qty,
434
+				$available_spaces
435
+			)
436
+			) {
437
+				$this->displayAvailabilityError($available_spaces);
438
+			}
439
+		} else {
440
+			\EE_Error::add_error(
441
+				__(
442
+					'We\'re sorry, but there are no available spaces left for this event at this particular date and time.',
443
+					'event_espresso'
444
+				),
445
+				__FILE__, __FUNCTION__, __LINE__
446
+			);
447
+		}
448
+		return false;
449
+	}
450
+
451
+
452
+
453
+	/**
454
+	 * @param int $available_spaces
455
+	 * @throws \EE_Error
456
+	 */
457
+	private function displayAvailabilityError($available_spaces = 1)
458
+	{
459
+		// add error messaging - we're using the _n function that will generate
460
+		// the appropriate singular or plural message based on the number of $available_spaces
461
+		if (\EE_Registry::instance()->CART->all_ticket_quantity_count()) {
462
+			$msg = sprintf(
463
+				_n(
464
+					'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.',
465
+					'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.',
466
+					$available_spaces,
467
+					'event_espresso'
468
+				),
469
+				$available_spaces,
470
+				'<br />'
471
+			);
472
+		} else {
473
+			$msg = sprintf(
474
+				_n(
475
+					'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets.',
476
+					'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets.',
477
+					$available_spaces,
478
+					'event_espresso'
479
+				),
480
+				$available_spaces,
481
+				'<br />'
482
+			);
483
+		}
484
+		\EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
485
+	}
486
+
487
+
488
+
489
+	/**
490
+	 * ticketDatetimeAvailability
491
+	 * creates an array of tickets plus all of the datetimes available to each ticket
492
+	 * and tracks the spaces remaining for each of those datetimes
493
+	 *
494
+	 * @param \EE_Ticket $ticket - selected ticket
495
+	 * @param bool       $get_original_ticket_spaces
496
+	 * @return int
497
+	 * @throws \EE_Error
498
+	 */
499
+	private function ticketDatetimeAvailability(\EE_Ticket $ticket, $get_original_ticket_spaces = false)
500
+	{
501
+		// if the $_available_spaces array has not been set up yet...
502
+		if ( ! isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
503
+			$this->setInitialTicketDatetimeAvailability($ticket);
504
+		}
505
+		$available_spaces = $ticket->qty() - $ticket->sold();
506
+		if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
507
+			// loop thru tickets, which will ALSO include individual ticket records AND a total
508
+			foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) {
509
+				// if we want the original datetime availability BEFORE we started subtracting tickets ?
510
+				if ($get_original_ticket_spaces) {
511
+					// then grab the available spaces from the "tickets" array
512
+					// and compare with the above to get the lowest number
513
+					$available_spaces = min(
514
+						$available_spaces,
515
+						self::$_available_spaces['tickets'][$ticket->ID()][$DTD_ID]
516
+					);
517
+				} else {
518
+					// we want the updated ticket availability as stored in the "datetimes" array
519
+					$available_spaces = min($available_spaces, self::$_available_spaces['datetimes'][$DTD_ID]);
520
+				}
521
+			}
522
+		}
523
+		return $available_spaces;
524
+	}
525
+
526
+
527
+
528
+	/**
529
+	 * @param \EE_Ticket $ticket
530
+	 * @return void
531
+	 * @throws \EE_Error
532
+	 */
533
+	private function setInitialTicketDatetimeAvailability(\EE_Ticket $ticket)
534
+	{
535
+		// first, get all of the datetimes that are available to this ticket
536
+		$datetimes = $ticket->get_many_related(
537
+			'Datetime',
538
+			array(
539
+				array(
540
+					'DTT_EVT_end' => array(
541
+						'>=',
542
+						\EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'),
543
+					),
544
+				),
545
+				'order_by' => array('DTT_EVT_start' => 'ASC'),
546
+			)
547
+		);
548
+		if ( ! empty($datetimes)) {
549
+			// now loop thru all of the datetimes
550
+			foreach ($datetimes as $datetime) {
551
+				if ($datetime instanceof \EE_Datetime) {
552
+					// the number of spaces available for the datetime without considering individual ticket quantities
553
+					$spaces_remaining = $datetime->spaces_remaining();
554
+					// save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold
555
+					// or the datetime spaces remaining) to this ticket using the datetime ID as the key
556
+					self::$_available_spaces['tickets'][$ticket->ID()][$datetime->ID()] = min(
557
+						$ticket->qty() - $ticket->sold(),
558
+						$spaces_remaining
559
+					);
560
+					// if the remaining spaces for this datetime is already set,
561
+					// then compare that against the datetime spaces remaining, and take the lowest number,
562
+					// else just take the datetime spaces remaining, and assign to the datetimes array
563
+					self::$_available_spaces['datetimes'][$datetime->ID()] = isset(
564
+						self::$_available_spaces['datetimes'][$datetime->ID()]
565
+					)
566
+						? min(self::$_available_spaces['datetimes'][$datetime->ID()], $spaces_remaining)
567
+						: $spaces_remaining;
568
+				}
569
+			}
570
+		}
571
+	}
572
+
573
+
574
+
575
+	/**
576
+	 * @param    \EE_Ticket $ticket
577
+	 * @param    int        $qty
578
+	 * @return    void
579
+	 */
580
+	private function recalculateTicketDatetimeAvailability(\EE_Ticket $ticket, $qty = 0)
581
+	{
582
+		if (isset(self::$_available_spaces['tickets'][$ticket->ID()])) {
583
+			// loop thru tickets, which will ALSO include individual ticket records AND a total
584
+			foreach (self::$_available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) {
585
+				// subtract the qty of selected tickets from each datetime's available spaces this ticket has access to,
586
+				self::$_available_spaces['datetimes'][$DTD_ID] -= $qty;
587
+			}
588
+		}
589
+	}
590 590
 
591 591
 
592 592
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             );
50 50
         } else {
51 51
             wp_safe_redirect(
52
-                site_url('/' . \EE_Registry::instance()->CFG->core->event_cpt_slug . '/')
52
+                site_url('/'.\EE_Registry::instance()->CFG->core->event_cpt_slug.'/')
53 53
             );
54 54
         }
55 55
         exit();
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
                 'event_espresso'
166 166
             );
167 167
             $limit_error_2 = sprintf($max_atndz_string, $valid['max_atndz'], $valid['max_atndz']);
168
-            \EE_Error::add_error($limit_error_1 . '<br/>' . $limit_error_2, __FILE__, __FUNCTION__, __LINE__);
168
+            \EE_Error::add_error($limit_error_1.'<br/>'.$limit_error_2, __FILE__, __FUNCTION__, __LINE__);
169 169
         } else {
170 170
             // all data appears to be valid
171 171
             $tckts_slctd = false;
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
         // cycle through $inputs_to_clean array
306 306
         foreach ($inputs_to_clean as $what => $input_to_clean) {
307 307
             // check for POST data
308
-            if (\EE_Registry::instance()->REQ->is_set($input_to_clean . $id)) {
308
+            if (\EE_Registry::instance()->REQ->is_set($input_to_clean.$id)) {
309 309
                 // grab value
310
-                $input_value = \EE_Registry::instance()->REQ->get($input_to_clean . $id);
310
+                $input_value = \EE_Registry::instance()->REQ->get($input_to_clean.$id);
311 311
                 switch ($what) {
312 312
                     // integers
313 313
                     case 'event_id':
@@ -328,8 +328,8 @@  discard block
 block discarded – undo
328 328
                         // if qty is coming from a radio button input, then we need to assemble an array of rows
329 329
                         if ( ! is_array($row_qty)) {
330 330
                             // get number of rows
331
-                            $rows = \EE_Registry::instance()->REQ->is_set('tkt-slctr-rows-' . $id)
332
-                                ? absint(\EE_Registry::instance()->REQ->get('tkt-slctr-rows-' . $id))
331
+                            $rows = \EE_Registry::instance()->REQ->is_set('tkt-slctr-rows-'.$id)
332
+                                ? absint(\EE_Registry::instance()->REQ->get('tkt-slctr-rows-'.$id))
333 333
                                 : 1;
334 334
                             // explode ints by the dash
335 335
                             $row_qty = explode('-', $row_qty);
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
                     case 'ticket_id':
356 356
                         $value_array = array();
357 357
                         // cycle thru values
358
-                        foreach ((array)$input_value as $key => $value) {
358
+                        foreach ((array) $input_value as $key => $value) {
359 359
                             // allow only numbers, letters,  spaces, commas and dashes
360 360
                             $value_array[$key] = wp_strip_all_tags($value);
361 361
                             // get ticket via the ticket id we put in the form
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
                             $input_value = explode('#', $input_value);
374 374
                             $input_value = end($input_value);
375 375
                             // use event list url instead, but append anchor
376
-                            $input_value = \EEH_Event_View::event_archive_url() . '#' . $input_value;
376
+                            $input_value = \EEH_Event_View::event_archive_url().'#'.$input_value;
377 377
                         }
378 378
                         $valid_data[$what] = $input_value;
379 379
                         break;
Please login to merge, or discard this patch.
modules/ticket_selector/EED_Ticket_Selector.module.php 2 patches
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 use EventEspresso\modules\ticket_selector\TicketSelectorIframe;
4 4
 use EventEspresso\modules\ticket_selector\TicketSelectorIframeEmbedButton;
5 5
 
6
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
7
-	exit( 'No direct script access allowed' );
6
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
7
+	exit('No direct script access allowed');
8 8
 }
9 9
 
10 10
 
@@ -38,15 +38,15 @@  discard block
 block discarded – undo
38 38
 	 * @return EED_Ticket_Selector
39 39
 	 */
40 40
 	public static function instance() {
41
-		return parent::get_instance( __CLASS__ );
41
+		return parent::get_instance(__CLASS__);
42 42
 	}
43 43
 
44 44
 
45 45
 
46
-	protected function set_config(){
47
-		$this->set_config_section( 'template_settings' );
48
-		$this->set_config_class( 'EE_Ticket_Selector_Config' );
49
-		$this->set_config_name( 'EED_Ticket_Selector' );
46
+	protected function set_config() {
47
+		$this->set_config_section('template_settings');
48
+		$this->set_config_class('EE_Ticket_Selector_Config');
49
+		$this->set_config_name('EED_Ticket_Selector');
50 50
 	}
51 51
 
52 52
 
@@ -59,12 +59,12 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public static function set_hooks() {
61 61
 		// routing
62
-		EE_Config::register_route( 'iframe', 'EED_Ticket_Selector', 'ticket_selector_iframe', 'ticket_selector' );
63
-		EE_Config::register_route( 'process_ticket_selections', 'EED_Ticket_Selector', 'process_ticket_selections' );
62
+		EE_Config::register_route('iframe', 'EED_Ticket_Selector', 'ticket_selector_iframe', 'ticket_selector');
63
+		EE_Config::register_route('process_ticket_selections', 'EED_Ticket_Selector', 'process_ticket_selections');
64 64
         EE_Config::register_route('cancel_ticket_selections', 'EED_Ticket_Selector', 'cancel_ticket_selections');
65
-        add_action( 'wp_loaded', array( 'EED_Ticket_Selector', 'set_definitions' ), 2 );
66
-		add_action( 'AHEE_event_details_header_bottom', array( 'EED_Ticket_Selector', 'display_ticket_selector' ), 10, 1 );
67
-		add_action( 'wp_enqueue_scripts', array( 'EED_Ticket_Selector', 'load_tckt_slctr_assets' ), 10 );
65
+        add_action('wp_loaded', array('EED_Ticket_Selector', 'set_definitions'), 2);
66
+		add_action('AHEE_event_details_header_bottom', array('EED_Ticket_Selector', 'display_ticket_selector'), 10, 1);
67
+		add_action('wp_enqueue_scripts', array('EED_Ticket_Selector', 'load_tckt_slctr_assets'), 10);
68 68
 	}
69 69
 
70 70
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 		// to load assets for "espresso_events" page on the "edit" route (action)
81 81
 		add_action(
82 82
 			'FHEE__EE_Admin_Page___load_page_dependencies__after_load__espresso_events__edit',
83
-			array( 'EED_Ticket_Selector', 'ticket_selector_iframe_embed_button' ),
83
+			array('EED_Ticket_Selector', 'ticket_selector_iframe_embed_button'),
84 84
 			10
85 85
 		);
86 86
     }
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
 	 *  @return 	void
95 95
 	 */
96 96
 	public static function set_definitions() {
97
-		define( 'TICKET_SELECTOR_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets' . DS );
98
-		define( 'TICKET_SELECTOR_TEMPLATES_PATH', str_replace( '\\', DS, plugin_dir_path( __FILE__ )) . 'templates' . DS );
97
+		define('TICKET_SELECTOR_ASSETS_URL', plugin_dir_url(__FILE__).'assets'.DS);
98
+		define('TICKET_SELECTOR_TEMPLATES_PATH', str_replace('\\', DS, plugin_dir_path(__FILE__)).'templates'.DS);
99 99
 
100 100
 		//if config is not set, initialize
101
-		if ( ! EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector instanceof EE_Ticket_Selector_Config ) {
101
+		if ( ! EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector instanceof EE_Ticket_Selector_Config) {
102 102
             \EED_Ticket_Selector::instance()->set_config();
103 103
             \EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector = \EED_Ticket_Selector::instance()->config();
104 104
 		}
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 	 * 	@param	WP $WP
126 126
 	 * 	@return void
127 127
 	 */
128
-	public function run( $WP ) {}
128
+	public function run($WP) {}
129 129
 
130 130
 
131 131
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 * @return \EventEspresso\modules\ticket_selector\TicketSelectorIframeEmbedButton
134 134
 	 */
135 135
 	public static function getIframeEmbedButton() {
136
-		if ( ! self::$iframe_embed_button instanceof TicketSelectorIframeEmbedButton ) {
136
+		if ( ! self::$iframe_embed_button instanceof TicketSelectorIframeEmbedButton) {
137 137
 			self::$iframe_embed_button = new TicketSelectorIframeEmbedButton();
138 138
 		}
139 139
 		return self::$iframe_embed_button;
@@ -177,8 +177,8 @@  discard block
 block discarded – undo
177 177
      * @return    string
178 178
      * @throws \EE_Error
179 179
      */
180
-	public static function display_ticket_selector( $event = NULL, $view_details = FALSE ) {
181
-		return EED_Ticket_Selector::ticketSelector()->display( $event, $view_details );
180
+	public static function display_ticket_selector($event = NULL, $view_details = FALSE) {
181
+		return EED_Ticket_Selector::ticketSelector()->display($event, $view_details);
182 182
 	}
183 183
 
184 184
 
@@ -218,14 +218,14 @@  discard block
 block discarded – undo
218 218
 	* 	@return 		void
219 219
 	*/
220 220
 	public static function load_tckt_slctr_assets() {
221
-		if ( apply_filters( 'FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE ) ) {
221
+		if (apply_filters('FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE)) {
222 222
 			// add some style
223
-			wp_register_style('ticket_selector', TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.css');
223
+			wp_register_style('ticket_selector', TICKET_SELECTOR_ASSETS_URL.'ticket_selector.css');
224 224
 			wp_enqueue_style('ticket_selector');
225 225
 			// make it dance
226
-			wp_register_script('ticket_selector', TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.js', array('espresso_core'), '', TRUE);
226
+			wp_register_script('ticket_selector', TICKET_SELECTOR_ASSETS_URL.'ticket_selector.js', array('espresso_core'), '', TRUE);
227 227
 			wp_enqueue_script('ticket_selector');
228
-            require_once( EE_LIBRARIES.'form_sections/strategies/display/EE_Checkbox_Dropdown_Selector_Display_Strategy.strategy.php');
228
+            require_once(EE_LIBRARIES.'form_sections/strategies/display/EE_Checkbox_Dropdown_Selector_Display_Strategy.strategy.php');
229 229
             \EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
230 230
         }
231 231
 	}
@@ -352,8 +352,8 @@  discard block
 block discarded – undo
352 352
     {
353 353
         // todo add doing_it_wrong() notice during next major version
354 354
 	    if (
355
-		    \EE_Registry::instance()->REQ->get( 'page' ) === 'espresso_events'
356
-		    && \EE_Registry::instance()->REQ->get( 'action' ) === 'edit'
355
+		    \EE_Registry::instance()->REQ->get('page') === 'espresso_events'
356
+		    && \EE_Registry::instance()->REQ->get('action') === 'edit'
357 357
 	    ) {
358 358
 		    $iframe_embed_button = \EED_Ticket_Selector::getIframeEmbedButton();
359 359
             $iframe_embed_button->embedButtonAssets();
Please login to merge, or discard this patch.
Indentation   +173 added lines, -173 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class EED_Ticket_Selector extends  EED_Module {
24 24
 
25
-    /**
26
-     * @var EventEspresso\modules\ticket_selector\DisplayTicketSelector $ticket_selector
27
-     */
28
-    private static $ticket_selector;
25
+	/**
26
+	 * @var EventEspresso\modules\ticket_selector\DisplayTicketSelector $ticket_selector
27
+	 */
28
+	private static $ticket_selector;
29 29
 
30
-    /**
31
-     * @var EventEspresso\modules\ticket_selector\TicketSelectorIframeEmbedButton $iframe_embed_button
32
-     */
33
-    private static $iframe_embed_button;
30
+	/**
31
+	 * @var EventEspresso\modules\ticket_selector\TicketSelectorIframeEmbedButton $iframe_embed_button
32
+	 */
33
+	private static $iframe_embed_button;
34 34
 
35 35
 
36 36
 
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
 		// routing
62 62
 		EE_Config::register_route( 'iframe', 'EED_Ticket_Selector', 'ticket_selector_iframe', 'ticket_selector' );
63 63
 		EE_Config::register_route( 'process_ticket_selections', 'EED_Ticket_Selector', 'process_ticket_selections' );
64
-        EE_Config::register_route('cancel_ticket_selections', 'EED_Ticket_Selector', 'cancel_ticket_selections');
65
-        add_action( 'wp_loaded', array( 'EED_Ticket_Selector', 'set_definitions' ), 2 );
64
+		EE_Config::register_route('cancel_ticket_selections', 'EED_Ticket_Selector', 'cancel_ticket_selections');
65
+		add_action( 'wp_loaded', array( 'EED_Ticket_Selector', 'set_definitions' ), 2 );
66 66
 		add_action( 'AHEE_event_details_header_bottom', array( 'EED_Ticket_Selector', 'display_ticket_selector' ), 10, 1 );
67 67
 		add_action( 'wp_enqueue_scripts', array( 'EED_Ticket_Selector', 'load_tckt_slctr_assets' ), 10 );
68 68
 	}
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 			array( 'EED_Ticket_Selector', 'ticket_selector_iframe_embed_button' ),
84 84
 			10
85 85
 		);
86
-    }
86
+	}
87 87
 
88 88
 
89 89
 
@@ -99,23 +99,23 @@  discard block
 block discarded – undo
99 99
 
100 100
 		//if config is not set, initialize
101 101
 		if ( ! EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector instanceof EE_Ticket_Selector_Config ) {
102
-            \EED_Ticket_Selector::instance()->set_config();
103
-            \EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector = \EED_Ticket_Selector::instance()->config();
102
+			\EED_Ticket_Selector::instance()->set_config();
103
+			\EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector = \EED_Ticket_Selector::instance()->config();
104 104
 		}
105 105
 	}
106 106
 
107 107
 
108 108
 
109 109
 	/**
110
-     * @return \EventEspresso\modules\ticket_selector\DisplayTicketSelector
111
-     */
112
-    public static function ticketSelector()
113
-    {
114
-        if ( ! EED_Ticket_Selector::$ticket_selector instanceof DisplayTicketSelector) {
115
-            EED_Ticket_Selector::$ticket_selector = new DisplayTicketSelector();
116
-        }
117
-        return EED_Ticket_Selector::$ticket_selector;
118
-    }
110
+	 * @return \EventEspresso\modules\ticket_selector\DisplayTicketSelector
111
+	 */
112
+	public static function ticketSelector()
113
+	{
114
+		if ( ! EED_Ticket_Selector::$ticket_selector instanceof DisplayTicketSelector) {
115
+			EED_Ticket_Selector::$ticket_selector = new DisplayTicketSelector();
116
+		}
117
+		return EED_Ticket_Selector::$ticket_selector;
118
+	}
119 119
 
120 120
 
121 121
 	/**
@@ -168,15 +168,15 @@  discard block
 block discarded – undo
168 168
 
169 169
 
170 170
 
171
-    /**
172
-     *    creates buttons for selecting number of attendees for an event
173
-     *
174
-     * @access    public
175
-     * @param    WP_Post|int $event
176
-     * @param    bool        $view_details
177
-     * @return    string
178
-     * @throws \EE_Error
179
-     */
171
+	/**
172
+	 *    creates buttons for selecting number of attendees for an event
173
+	 *
174
+	 * @access    public
175
+	 * @param    WP_Post|int $event
176
+	 * @param    bool        $view_details
177
+	 * @return    string
178
+	 * @throws \EE_Error
179
+	 */
180 180
 	public static function display_ticket_selector( $event = NULL, $view_details = FALSE ) {
181 181
 		return EED_Ticket_Selector::ticketSelector()->display( $event, $view_details );
182 182
 	}
@@ -197,26 +197,26 @@  discard block
 block discarded – undo
197 197
 
198 198
 
199 199
 
200
-    /**
201
-     * cancel_ticket_selections
202
-     *
203
-     * @access        public
204
-     * @return        string
205
-     */
206
-    public static function cancel_ticket_selections()
207
-    {
208
-        $form = new ProcessTicketSelector();
209
-        return $form->cancelTicketSelections();
210
-    }
200
+	/**
201
+	 * cancel_ticket_selections
202
+	 *
203
+	 * @access        public
204
+	 * @return        string
205
+	 */
206
+	public static function cancel_ticket_selections()
207
+	{
208
+		$form = new ProcessTicketSelector();
209
+		return $form->cancelTicketSelections();
210
+	}
211 211
 
212 212
 
213 213
 
214 214
 	/**
215
-	* 	load js
216
-	*
217
-	* 	@access 		public
218
-	* 	@return 		void
219
-	*/
215
+	 * 	load js
216
+	 *
217
+	 * 	@access 		public
218
+	 * 	@return 		void
219
+	 */
220 220
 	public static function load_tckt_slctr_assets() {
221 221
 		if ( apply_filters( 'FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', FALSE ) ) {
222 222
 			// add some style
@@ -225,9 +225,9 @@  discard block
 block discarded – undo
225 225
 			// make it dance
226 226
 			wp_register_script('ticket_selector', TICKET_SELECTOR_ASSETS_URL . 'ticket_selector.js', array('espresso_core'), '', TRUE);
227 227
 			wp_enqueue_script('ticket_selector');
228
-            require_once( EE_LIBRARIES.'form_sections/strategies/display/EE_Checkbox_Dropdown_Selector_Display_Strategy.strategy.php');
229
-            \EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
230
-        }
228
+			require_once( EE_LIBRARIES.'form_sections/strategies/display/EE_Checkbox_Dropdown_Selector_Display_Strategy.strategy.php');
229
+			\EE_Checkbox_Dropdown_Selector_Display_Strategy::enqueue_styles_and_scripts();
230
+		}
231 231
 	}
232 232
 
233 233
 
@@ -236,129 +236,129 @@  discard block
 block discarded – undo
236 236
 
237 237
 
238 238
 
239
-    /**
240
-     * @deprecated
241
-     * @return string
242
-     * @throws \EE_Error
243
-     */
244
-    public static function display_view_details_btn()
245
-    {
246
-        // todo add doing_it_wrong() notice during next major version
247
-        return EED_Ticket_Selector::ticketSelector()->displayViewDetailsButton();
248
-    }
249
-
250
-
251
-
252
-    /**
253
-     * @deprecated
254
-     * @return string
255
-     * @throws \EE_Error
256
-     */
257
-    public static function display_ticket_selector_submit()
258
-    {
259
-        // todo add doing_it_wrong() notice during next major version
260
-        return EED_Ticket_Selector::ticketSelector()->displaySubmitButton();
261
-    }
262
-
263
-
264
-
265
-    /**
266
-     * @deprecated
267
-     * @param string $permalink_string
268
-     * @param int    $id
269
-     * @param string $new_title
270
-     * @param string $new_slug
271
-     * @return string
272
-     */
273
-    public static function iframe_code_button($permalink_string, $id, $new_title = '', $new_slug = '')
274
-    {
275
-        // todo add doing_it_wrong() notice during next major version
276
-        if (
277
-        	\EE_Registry::instance()->REQ->get('page') === 'espresso_events'
278
-        	&& \EE_Registry::instance()->REQ->get('action') === 'edit'
279
-        ) {
280
-            $iframe_embed_button = \EED_Ticket_Selector::getIframeEmbedButton();
281
-            $iframe_embed_button->addEventEditorIframeEmbedButton();
282
-        }
283
-        return '';
284
-    }
285
-
286
-
287
-
288
-    /**
289
-     * @deprecated
290
-     * @param int    $ID
291
-     * @param string $external_url
292
-     * @return string
293
-     */
294
-    public static function ticket_selector_form_open($ID = 0, $external_url = '')
295
-    {
296
-        // todo add doing_it_wrong() notice during next major version
297
-        return EED_Ticket_Selector::ticketSelector()->formOpen($ID, $external_url);
298
-    }
299
-
300
-
301
-
302
-    /**
303
-     * @deprecated
304
-     * @return string
305
-     */
306
-    public static function ticket_selector_form_close()
307
-    {
308
-        // todo add doing_it_wrong() notice during next major version
309
-        return EED_Ticket_Selector::ticketSelector()->formClose();
310
-    }
311
-
312
-
313
-
314
-    /**
315
-     * @deprecated
316
-     * @return string
317
-     */
318
-    public static function no_tkt_slctr_end_dv()
319
-    {
320
-        // todo add doing_it_wrong() notice during next major version
321
-        return EED_Ticket_Selector::ticketSelector()->ticketSelectorEndDiv();
322
-    }
323
-
324
-
325
-
326
-    /**
327
-     * @deprecated 4.9.13
328
-     * @return string
329
-     */
330
-    public static function tkt_slctr_end_dv()
331
-    {
332
-        return EED_Ticket_Selector::ticketSelector()->clearTicketSelector();
333
-    }
334
-
335
-
336
-
337
-    /**
338
-     * @deprecated
339
-     * @return string
340
-     */
341
-    public static function clear_tkt_slctr()
342
-    {
343
-        return EED_Ticket_Selector::ticketSelector()->clearTicketSelector();
344
-    }
345
-
346
-
347
-
348
-    /**
349
-     * @deprecated
350
-     */
351
-    public static function load_tckt_slctr_assets_admin()
352
-    {
353
-        // todo add doing_it_wrong() notice during next major version
354
-	    if (
355
-		    \EE_Registry::instance()->REQ->get( 'page' ) === 'espresso_events'
356
-		    && \EE_Registry::instance()->REQ->get( 'action' ) === 'edit'
357
-	    ) {
358
-		    $iframe_embed_button = \EED_Ticket_Selector::getIframeEmbedButton();
359
-            $iframe_embed_button->embedButtonAssets();
360
-        }
361
-    }
239
+	/**
240
+	 * @deprecated
241
+	 * @return string
242
+	 * @throws \EE_Error
243
+	 */
244
+	public static function display_view_details_btn()
245
+	{
246
+		// todo add doing_it_wrong() notice during next major version
247
+		return EED_Ticket_Selector::ticketSelector()->displayViewDetailsButton();
248
+	}
249
+
250
+
251
+
252
+	/**
253
+	 * @deprecated
254
+	 * @return string
255
+	 * @throws \EE_Error
256
+	 */
257
+	public static function display_ticket_selector_submit()
258
+	{
259
+		// todo add doing_it_wrong() notice during next major version
260
+		return EED_Ticket_Selector::ticketSelector()->displaySubmitButton();
261
+	}
262
+
263
+
264
+
265
+	/**
266
+	 * @deprecated
267
+	 * @param string $permalink_string
268
+	 * @param int    $id
269
+	 * @param string $new_title
270
+	 * @param string $new_slug
271
+	 * @return string
272
+	 */
273
+	public static function iframe_code_button($permalink_string, $id, $new_title = '', $new_slug = '')
274
+	{
275
+		// todo add doing_it_wrong() notice during next major version
276
+		if (
277
+			\EE_Registry::instance()->REQ->get('page') === 'espresso_events'
278
+			&& \EE_Registry::instance()->REQ->get('action') === 'edit'
279
+		) {
280
+			$iframe_embed_button = \EED_Ticket_Selector::getIframeEmbedButton();
281
+			$iframe_embed_button->addEventEditorIframeEmbedButton();
282
+		}
283
+		return '';
284
+	}
285
+
286
+
287
+
288
+	/**
289
+	 * @deprecated
290
+	 * @param int    $ID
291
+	 * @param string $external_url
292
+	 * @return string
293
+	 */
294
+	public static function ticket_selector_form_open($ID = 0, $external_url = '')
295
+	{
296
+		// todo add doing_it_wrong() notice during next major version
297
+		return EED_Ticket_Selector::ticketSelector()->formOpen($ID, $external_url);
298
+	}
299
+
300
+
301
+
302
+	/**
303
+	 * @deprecated
304
+	 * @return string
305
+	 */
306
+	public static function ticket_selector_form_close()
307
+	{
308
+		// todo add doing_it_wrong() notice during next major version
309
+		return EED_Ticket_Selector::ticketSelector()->formClose();
310
+	}
311
+
312
+
313
+
314
+	/**
315
+	 * @deprecated
316
+	 * @return string
317
+	 */
318
+	public static function no_tkt_slctr_end_dv()
319
+	{
320
+		// todo add doing_it_wrong() notice during next major version
321
+		return EED_Ticket_Selector::ticketSelector()->ticketSelectorEndDiv();
322
+	}
323
+
324
+
325
+
326
+	/**
327
+	 * @deprecated 4.9.13
328
+	 * @return string
329
+	 */
330
+	public static function tkt_slctr_end_dv()
331
+	{
332
+		return EED_Ticket_Selector::ticketSelector()->clearTicketSelector();
333
+	}
334
+
335
+
336
+
337
+	/**
338
+	 * @deprecated
339
+	 * @return string
340
+	 */
341
+	public static function clear_tkt_slctr()
342
+	{
343
+		return EED_Ticket_Selector::ticketSelector()->clearTicketSelector();
344
+	}
345
+
346
+
347
+
348
+	/**
349
+	 * @deprecated
350
+	 */
351
+	public static function load_tckt_slctr_assets_admin()
352
+	{
353
+		// todo add doing_it_wrong() notice during next major version
354
+		if (
355
+			\EE_Registry::instance()->REQ->get( 'page' ) === 'espresso_events'
356
+			&& \EE_Registry::instance()->REQ->get( 'action' ) === 'edit'
357
+		) {
358
+			$iframe_embed_button = \EED_Ticket_Selector::getIframeEmbedButton();
359
+			$iframe_embed_button->embedButtonAssets();
360
+		}
361
+	}
362 362
 
363 363
 
364 364
 }
Please login to merge, or discard this patch.