@@ -15,268 +15,268 @@ |
||
15 | 15 | abstract class EE_Help_Tour extends EE_Base |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * This is the label for the tour. It is used when regenerating restart buttons for the tour. Set this in the |
|
20 | - * constructor of the child class. |
|
21 | - * |
|
22 | - * @access protected |
|
23 | - * @var string |
|
24 | - */ |
|
25 | - protected $_label = ''; |
|
26 | - |
|
27 | - |
|
28 | - /** |
|
29 | - * This is the slug for the tour. It should be unique from all tours and is used for starting a tour and setting |
|
30 | - * cookies for the tour. Set this in the constructor of the child class. |
|
31 | - * |
|
32 | - * @access protected |
|
33 | - * @var string |
|
34 | - */ |
|
35 | - protected $_slug = ''; |
|
36 | - |
|
37 | - |
|
38 | - /** |
|
39 | - * This will contain the formatted array for the stops that gets used by EE_Admin_Page->_add_help_tour() for |
|
40 | - * setting up a tour on a given page. format for array is: array( |
|
41 | - * 0 => array( |
|
42 | - * 'id' => 'id_element', //if attached to an css id for an element then use this param. id's will take |
|
43 | - * precendence even if you also set class. |
|
44 | - * 'class' => 'class_element', //if attached to a css class for an element anchoring the stop then use |
|
45 | - * this param. The first element for that class is the anchor. If the class or the id are empty then the |
|
46 | - * stop will be a modal on the page anchored to the main body. |
|
47 | - * 'custom_class' => 'some_custom_class', //optional custom class to add for this stop. |
|
48 | - * 'button_text' => 'custom text for button', //optional |
|
49 | - * 'content' => 'The content for the stop', //required |
|
50 | - * 'pause_after' => false, //indicate if you want the tour to pause after this stop and it will get |
|
51 | - * added to the pauseAfter global option array setup for the joyride instance. This is only applicable |
|
52 | - * when this tour has been set to run on timer. |
|
53 | - * 'options' => array( |
|
54 | - * //override any of the global options set via the help_tour "option_callback" for the joyride |
|
55 | - * instance on this specific stop. |
|
56 | - * ) |
|
57 | - * ) |
|
58 | - * ); |
|
59 | - * |
|
60 | - * @access protected |
|
61 | - * @var array |
|
62 | - */ |
|
63 | - protected $_stops = array(); |
|
64 | - |
|
65 | - |
|
66 | - /** |
|
67 | - * This contains any stop specific options for the tour. |
|
68 | - * defaults are set but child classes can override. |
|
69 | - * |
|
70 | - * @access protected |
|
71 | - * @var array |
|
72 | - */ |
|
73 | - protected $_options = array(); |
|
74 | - |
|
75 | - |
|
76 | - /** |
|
77 | - * holds anything found in the $_REQUEST object (however we override any _gets with _post data). |
|
78 | - * |
|
79 | - * @access protected |
|
80 | - * @var array |
|
81 | - */ |
|
82 | - protected $_req_data = array(); |
|
83 | - |
|
84 | - |
|
85 | - /** |
|
86 | - * a flag that is set on init for whether this help_tour is happening on a caf install or not. |
|
87 | - * |
|
88 | - * @var boolean |
|
89 | - */ |
|
90 | - protected $_is_caf = false; |
|
91 | - |
|
92 | - |
|
93 | - /** |
|
94 | - * _constructor |
|
95 | - * initialized the tour object and sets up important properties required to setup the tour. |
|
96 | - * |
|
97 | - * @access public |
|
98 | - * @param boolean $caf used to indicate if this tour is happening on caf install or not. |
|
99 | - * @return void |
|
100 | - */ |
|
101 | - public function __construct($caf = false) |
|
102 | - { |
|
103 | - $this->_is_caf = $caf; |
|
104 | - $this->_req_data = array_merge($_GET, $_POST); |
|
105 | - $this->_set_tour_properties(); |
|
106 | - $this->_set_tour_stops(); |
|
107 | - $this->_set_tour_options(); |
|
108 | - |
|
109 | - // make sure the last tour stop has "end tour" for its button |
|
110 | - $end = array_pop($this->_stops); |
|
111 | - $end['button_text'] = __('End Tour', 'event_espresso'); |
|
112 | - // add back to stops |
|
113 | - $this->_stops[] = $end; |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - /** |
|
118 | - * required method that has the sole purpose of setting up the tour $_label and $_slug properties |
|
119 | - * |
|
120 | - * @abstract |
|
121 | - * @access protected |
|
122 | - * @return void |
|
123 | - */ |
|
124 | - abstract protected function _set_tour_properties(); |
|
125 | - |
|
126 | - |
|
127 | - /** |
|
128 | - * required method that's sole purpose is to setup the $_stops property |
|
129 | - * |
|
130 | - * @abstract |
|
131 | - * @access protected |
|
132 | - * @return void |
|
133 | - */ |
|
134 | - abstract protected function _set_tour_stops(); |
|
135 | - |
|
136 | - |
|
137 | - /** |
|
138 | - * The method can optionally be overridden by child classes to set the _options array if there are any default |
|
139 | - * options the child wishes to override for a this tour. See property definition for more info |
|
140 | - * |
|
141 | - * @access protected |
|
142 | - * @return void |
|
143 | - */ |
|
144 | - protected function _set_tour_options($options = array()) |
|
145 | - { |
|
146 | - $defaults = array( |
|
147 | - 'tipLocation' => 'bottom', |
|
148 | - // 'top', 'bottom', 'right', 'left' in relation to parent |
|
149 | - 'nubPosition' => 'auto', |
|
150 | - // override on a per tooltip bases. can be "auto", "right", "top", "bottom", "left" |
|
151 | - 'tipAdjustmentY' => 0, |
|
152 | - // allow for adjustment of tip |
|
153 | - 'tipAdjustmentX' => 0, |
|
154 | - // allow for adjustment of tip |
|
155 | - 'scroll' => true, |
|
156 | - // whether to scrollTo the next step or not |
|
157 | - 'scrollSpeed' => 300, |
|
158 | - // Page scrolling speed in ms |
|
159 | - 'timer' => 0, |
|
160 | - // 0 = off, all other numbers = time(ms) |
|
161 | - 'autoStart' => true, |
|
162 | - // true or false - false tour starts when restart called |
|
163 | - 'startTimerOnClick' => true, |
|
164 | - // true/false to start timer on first click |
|
165 | - 'nextButton' => true, |
|
166 | - // true/false for next button visibility |
|
167 | - 'button_text' => __('Next', 'event_espresso'), |
|
168 | - 'tipAnimation' => 'fade', |
|
169 | - // 'pop' or 'fade' in each tip |
|
170 | - 'pauseAfter' => array(), |
|
171 | - // array of indexes where to pause the tour after |
|
172 | - 'tipAnimationFadeSpeed' => 300, |
|
173 | - // if 'fade'- speed in ms of transition |
|
174 | - 'cookieMonster' => true, |
|
175 | - // true/false for whether cookies are used |
|
176 | - 'cookieName' => $this->get_slug(), |
|
177 | - // choose your own cookie name (setup will add the prefix for the specific page joyride) |
|
178 | - 'cookieDomain' => false, |
|
179 | - // set to false or yoursite.com |
|
180 | - // 'tipContainer' => 'body', // Where the tip be attached if not inline |
|
181 | - 'modal' => false, |
|
182 | - // Whether to cover page with modal during the tour |
|
183 | - 'expose' => false, |
|
184 | - // Whether to expose the elements at each step in the tour (requires modal:true), |
|
185 | - 'postExposeCallback' => 'EEHelpTour.postExposeCallback', |
|
186 | - // A method to call after an element has been exposed |
|
187 | - 'preRideCallback' => 'EEHelpTour_preRideCallback', |
|
188 | - // A method to call before the tour starts (passed index, tip, and cloned exposed element) |
|
189 | - 'postRideCallback' => 'EEHelpTour_postRideCallback', |
|
190 | - // a method to call once the tour closes. This will correspond to the name of a js method that will have to be defined in loaded js. |
|
191 | - 'preStepCallback' => 'EEHelpTour_preStepCallback', |
|
192 | - // A method to call before each step |
|
193 | - 'postStepCallback' => 'EEHelpTour_postStepCallback', |
|
194 | - // A method to call after each step (remember this will correspond with a js method that you will have to define in a js file BEFORE ee-help-tour.js loads, if the default methods do not exist, then ee-help-tour.js just substitues empty functions $.noop)/**/ |
|
195 | - ); |
|
196 | - |
|
197 | - $options = ! empty($options) && is_array($options) ? array_merge($defaults, $options) : $defaults; |
|
198 | - $this->_options = $options; |
|
199 | - } |
|
200 | - |
|
201 | - |
|
202 | - /** |
|
203 | - * getter functions to return all the properties for the tour. |
|
204 | - */ |
|
205 | - |
|
206 | - |
|
207 | - /** |
|
208 | - * get_slug |
|
209 | - * |
|
210 | - * @return string slug for the tour |
|
211 | - */ |
|
212 | - public function get_slug() |
|
213 | - { |
|
214 | - if (empty($this->_slug)) { |
|
215 | - throw new EE_Error( |
|
216 | - sprintf( |
|
217 | - __( |
|
218 | - 'There is no slug set for the help tour class (%s). Make sure that the $_slug property is set in the class constructor', |
|
219 | - 'event_espresso' |
|
220 | - ), |
|
221 | - get_class($this) |
|
222 | - ) |
|
223 | - ); |
|
224 | - } |
|
225 | - return $this->_slug; |
|
226 | - } |
|
227 | - |
|
228 | - |
|
229 | - /** |
|
230 | - * get_label |
|
231 | - * |
|
232 | - * @return string |
|
233 | - */ |
|
234 | - public function get_label() |
|
235 | - { |
|
236 | - if (empty($this->_label)) { |
|
237 | - throw new EE_Error( |
|
238 | - sprintf( |
|
239 | - __( |
|
240 | - 'There is no label set for the help tour class (%s). Make sure that the $_label property is set in the class constructor', |
|
241 | - 'event_espresso' |
|
242 | - ), |
|
243 | - get_class($this) |
|
244 | - ) |
|
245 | - ); |
|
246 | - } |
|
247 | - return $this->_label; |
|
248 | - } |
|
249 | - |
|
250 | - |
|
251 | - /** |
|
252 | - * get_stops |
|
253 | - * |
|
254 | - * @return array |
|
255 | - */ |
|
256 | - public function get_stops() |
|
257 | - { |
|
258 | - foreach ($this->_stops as $ind => $stop) { |
|
259 | - if (! isset($stop['button_text'])) { |
|
260 | - $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
261 | - } |
|
262 | - } |
|
263 | - return $this->_stops; |
|
264 | - } |
|
265 | - |
|
266 | - |
|
267 | - /** |
|
268 | - * get options |
|
269 | - * |
|
270 | - * @return array |
|
271 | - */ |
|
272 | - public function get_options() |
|
273 | - { |
|
274 | - // let's make sure there are not pauses set |
|
275 | - foreach ($this->_stops as $ind => $stop) { |
|
276 | - if (isset($stop['pause_after']) && $stop['pause_after']) { |
|
277 | - $this->_options['pauseAfter'][] = $ind; |
|
278 | - } |
|
279 | - } |
|
280 | - return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
281 | - } |
|
18 | + /** |
|
19 | + * This is the label for the tour. It is used when regenerating restart buttons for the tour. Set this in the |
|
20 | + * constructor of the child class. |
|
21 | + * |
|
22 | + * @access protected |
|
23 | + * @var string |
|
24 | + */ |
|
25 | + protected $_label = ''; |
|
26 | + |
|
27 | + |
|
28 | + /** |
|
29 | + * This is the slug for the tour. It should be unique from all tours and is used for starting a tour and setting |
|
30 | + * cookies for the tour. Set this in the constructor of the child class. |
|
31 | + * |
|
32 | + * @access protected |
|
33 | + * @var string |
|
34 | + */ |
|
35 | + protected $_slug = ''; |
|
36 | + |
|
37 | + |
|
38 | + /** |
|
39 | + * This will contain the formatted array for the stops that gets used by EE_Admin_Page->_add_help_tour() for |
|
40 | + * setting up a tour on a given page. format for array is: array( |
|
41 | + * 0 => array( |
|
42 | + * 'id' => 'id_element', //if attached to an css id for an element then use this param. id's will take |
|
43 | + * precendence even if you also set class. |
|
44 | + * 'class' => 'class_element', //if attached to a css class for an element anchoring the stop then use |
|
45 | + * this param. The first element for that class is the anchor. If the class or the id are empty then the |
|
46 | + * stop will be a modal on the page anchored to the main body. |
|
47 | + * 'custom_class' => 'some_custom_class', //optional custom class to add for this stop. |
|
48 | + * 'button_text' => 'custom text for button', //optional |
|
49 | + * 'content' => 'The content for the stop', //required |
|
50 | + * 'pause_after' => false, //indicate if you want the tour to pause after this stop and it will get |
|
51 | + * added to the pauseAfter global option array setup for the joyride instance. This is only applicable |
|
52 | + * when this tour has been set to run on timer. |
|
53 | + * 'options' => array( |
|
54 | + * //override any of the global options set via the help_tour "option_callback" for the joyride |
|
55 | + * instance on this specific stop. |
|
56 | + * ) |
|
57 | + * ) |
|
58 | + * ); |
|
59 | + * |
|
60 | + * @access protected |
|
61 | + * @var array |
|
62 | + */ |
|
63 | + protected $_stops = array(); |
|
64 | + |
|
65 | + |
|
66 | + /** |
|
67 | + * This contains any stop specific options for the tour. |
|
68 | + * defaults are set but child classes can override. |
|
69 | + * |
|
70 | + * @access protected |
|
71 | + * @var array |
|
72 | + */ |
|
73 | + protected $_options = array(); |
|
74 | + |
|
75 | + |
|
76 | + /** |
|
77 | + * holds anything found in the $_REQUEST object (however we override any _gets with _post data). |
|
78 | + * |
|
79 | + * @access protected |
|
80 | + * @var array |
|
81 | + */ |
|
82 | + protected $_req_data = array(); |
|
83 | + |
|
84 | + |
|
85 | + /** |
|
86 | + * a flag that is set on init for whether this help_tour is happening on a caf install or not. |
|
87 | + * |
|
88 | + * @var boolean |
|
89 | + */ |
|
90 | + protected $_is_caf = false; |
|
91 | + |
|
92 | + |
|
93 | + /** |
|
94 | + * _constructor |
|
95 | + * initialized the tour object and sets up important properties required to setup the tour. |
|
96 | + * |
|
97 | + * @access public |
|
98 | + * @param boolean $caf used to indicate if this tour is happening on caf install or not. |
|
99 | + * @return void |
|
100 | + */ |
|
101 | + public function __construct($caf = false) |
|
102 | + { |
|
103 | + $this->_is_caf = $caf; |
|
104 | + $this->_req_data = array_merge($_GET, $_POST); |
|
105 | + $this->_set_tour_properties(); |
|
106 | + $this->_set_tour_stops(); |
|
107 | + $this->_set_tour_options(); |
|
108 | + |
|
109 | + // make sure the last tour stop has "end tour" for its button |
|
110 | + $end = array_pop($this->_stops); |
|
111 | + $end['button_text'] = __('End Tour', 'event_espresso'); |
|
112 | + // add back to stops |
|
113 | + $this->_stops[] = $end; |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + /** |
|
118 | + * required method that has the sole purpose of setting up the tour $_label and $_slug properties |
|
119 | + * |
|
120 | + * @abstract |
|
121 | + * @access protected |
|
122 | + * @return void |
|
123 | + */ |
|
124 | + abstract protected function _set_tour_properties(); |
|
125 | + |
|
126 | + |
|
127 | + /** |
|
128 | + * required method that's sole purpose is to setup the $_stops property |
|
129 | + * |
|
130 | + * @abstract |
|
131 | + * @access protected |
|
132 | + * @return void |
|
133 | + */ |
|
134 | + abstract protected function _set_tour_stops(); |
|
135 | + |
|
136 | + |
|
137 | + /** |
|
138 | + * The method can optionally be overridden by child classes to set the _options array if there are any default |
|
139 | + * options the child wishes to override for a this tour. See property definition for more info |
|
140 | + * |
|
141 | + * @access protected |
|
142 | + * @return void |
|
143 | + */ |
|
144 | + protected function _set_tour_options($options = array()) |
|
145 | + { |
|
146 | + $defaults = array( |
|
147 | + 'tipLocation' => 'bottom', |
|
148 | + // 'top', 'bottom', 'right', 'left' in relation to parent |
|
149 | + 'nubPosition' => 'auto', |
|
150 | + // override on a per tooltip bases. can be "auto", "right", "top", "bottom", "left" |
|
151 | + 'tipAdjustmentY' => 0, |
|
152 | + // allow for adjustment of tip |
|
153 | + 'tipAdjustmentX' => 0, |
|
154 | + // allow for adjustment of tip |
|
155 | + 'scroll' => true, |
|
156 | + // whether to scrollTo the next step or not |
|
157 | + 'scrollSpeed' => 300, |
|
158 | + // Page scrolling speed in ms |
|
159 | + 'timer' => 0, |
|
160 | + // 0 = off, all other numbers = time(ms) |
|
161 | + 'autoStart' => true, |
|
162 | + // true or false - false tour starts when restart called |
|
163 | + 'startTimerOnClick' => true, |
|
164 | + // true/false to start timer on first click |
|
165 | + 'nextButton' => true, |
|
166 | + // true/false for next button visibility |
|
167 | + 'button_text' => __('Next', 'event_espresso'), |
|
168 | + 'tipAnimation' => 'fade', |
|
169 | + // 'pop' or 'fade' in each tip |
|
170 | + 'pauseAfter' => array(), |
|
171 | + // array of indexes where to pause the tour after |
|
172 | + 'tipAnimationFadeSpeed' => 300, |
|
173 | + // if 'fade'- speed in ms of transition |
|
174 | + 'cookieMonster' => true, |
|
175 | + // true/false for whether cookies are used |
|
176 | + 'cookieName' => $this->get_slug(), |
|
177 | + // choose your own cookie name (setup will add the prefix for the specific page joyride) |
|
178 | + 'cookieDomain' => false, |
|
179 | + // set to false or yoursite.com |
|
180 | + // 'tipContainer' => 'body', // Where the tip be attached if not inline |
|
181 | + 'modal' => false, |
|
182 | + // Whether to cover page with modal during the tour |
|
183 | + 'expose' => false, |
|
184 | + // Whether to expose the elements at each step in the tour (requires modal:true), |
|
185 | + 'postExposeCallback' => 'EEHelpTour.postExposeCallback', |
|
186 | + // A method to call after an element has been exposed |
|
187 | + 'preRideCallback' => 'EEHelpTour_preRideCallback', |
|
188 | + // A method to call before the tour starts (passed index, tip, and cloned exposed element) |
|
189 | + 'postRideCallback' => 'EEHelpTour_postRideCallback', |
|
190 | + // a method to call once the tour closes. This will correspond to the name of a js method that will have to be defined in loaded js. |
|
191 | + 'preStepCallback' => 'EEHelpTour_preStepCallback', |
|
192 | + // A method to call before each step |
|
193 | + 'postStepCallback' => 'EEHelpTour_postStepCallback', |
|
194 | + // A method to call after each step (remember this will correspond with a js method that you will have to define in a js file BEFORE ee-help-tour.js loads, if the default methods do not exist, then ee-help-tour.js just substitues empty functions $.noop)/**/ |
|
195 | + ); |
|
196 | + |
|
197 | + $options = ! empty($options) && is_array($options) ? array_merge($defaults, $options) : $defaults; |
|
198 | + $this->_options = $options; |
|
199 | + } |
|
200 | + |
|
201 | + |
|
202 | + /** |
|
203 | + * getter functions to return all the properties for the tour. |
|
204 | + */ |
|
205 | + |
|
206 | + |
|
207 | + /** |
|
208 | + * get_slug |
|
209 | + * |
|
210 | + * @return string slug for the tour |
|
211 | + */ |
|
212 | + public function get_slug() |
|
213 | + { |
|
214 | + if (empty($this->_slug)) { |
|
215 | + throw new EE_Error( |
|
216 | + sprintf( |
|
217 | + __( |
|
218 | + 'There is no slug set for the help tour class (%s). Make sure that the $_slug property is set in the class constructor', |
|
219 | + 'event_espresso' |
|
220 | + ), |
|
221 | + get_class($this) |
|
222 | + ) |
|
223 | + ); |
|
224 | + } |
|
225 | + return $this->_slug; |
|
226 | + } |
|
227 | + |
|
228 | + |
|
229 | + /** |
|
230 | + * get_label |
|
231 | + * |
|
232 | + * @return string |
|
233 | + */ |
|
234 | + public function get_label() |
|
235 | + { |
|
236 | + if (empty($this->_label)) { |
|
237 | + throw new EE_Error( |
|
238 | + sprintf( |
|
239 | + __( |
|
240 | + 'There is no label set for the help tour class (%s). Make sure that the $_label property is set in the class constructor', |
|
241 | + 'event_espresso' |
|
242 | + ), |
|
243 | + get_class($this) |
|
244 | + ) |
|
245 | + ); |
|
246 | + } |
|
247 | + return $this->_label; |
|
248 | + } |
|
249 | + |
|
250 | + |
|
251 | + /** |
|
252 | + * get_stops |
|
253 | + * |
|
254 | + * @return array |
|
255 | + */ |
|
256 | + public function get_stops() |
|
257 | + { |
|
258 | + foreach ($this->_stops as $ind => $stop) { |
|
259 | + if (! isset($stop['button_text'])) { |
|
260 | + $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
261 | + } |
|
262 | + } |
|
263 | + return $this->_stops; |
|
264 | + } |
|
265 | + |
|
266 | + |
|
267 | + /** |
|
268 | + * get options |
|
269 | + * |
|
270 | + * @return array |
|
271 | + */ |
|
272 | + public function get_options() |
|
273 | + { |
|
274 | + // let's make sure there are not pauses set |
|
275 | + foreach ($this->_stops as $ind => $stop) { |
|
276 | + if (isset($stop['pause_after']) && $stop['pause_after']) { |
|
277 | + $this->_options['pauseAfter'][] = $ind; |
|
278 | + } |
|
279 | + } |
|
280 | + return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
281 | + } |
|
282 | 282 | } |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | public function get_stops() |
257 | 257 | { |
258 | 258 | foreach ($this->_stops as $ind => $stop) { |
259 | - if (! isset($stop['button_text'])) { |
|
260 | - $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
259 | + if ( ! isset($stop['button_text'])) { |
|
260 | + $this->_stops[$ind]['button_text'] = $this->_options['button_text']; |
|
261 | 261 | } |
262 | 262 | } |
263 | 263 | return $this->_stops; |
@@ -277,6 +277,6 @@ discard block |
||
277 | 277 | $this->_options['pauseAfter'][] = $ind; |
278 | 278 | } |
279 | 279 | } |
280 | - return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
280 | + return apply_filters('FHEE__'.get_class($this).'__get_options', $this->_options, $this); |
|
281 | 281 | } |
282 | 282 | } |
@@ -4,19 +4,19 @@ |
||
4 | 4 | <div class="about-text"><?php echo ! empty($admin_page_subtitle) ? $admin_page_subtitle : ''; ?></div> |
5 | 5 | <div class="ee-badge"><img class="" src=" <?php echo EE_GLOBAL_ASSETS_URL; ?>images/event-espresso-cup-90x90.png" |
6 | 6 | width="90" height="90" alt="<?php |
7 | - printf( |
|
8 | - esc_attr__('%s Logo', 'event_espresso'), |
|
9 | - 'Event Espresso' |
|
10 | - ); ?>"/> |
|
7 | + printf( |
|
8 | + esc_attr__('%s Logo', 'event_espresso'), |
|
9 | + 'Event Espresso' |
|
10 | + ); ?>"/> |
|
11 | 11 | <br/><?php printf(__('Version %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); ?></div> |
12 | 12 | |
13 | 13 | <?php echo $nav_tabs; ?> |
14 | 14 | |
15 | 15 | |
16 | 16 | <?php |
17 | - do_action('AHEE__admin_wrapper__template__before_about_admin_page_content'); |
|
18 | - echo $about_admin_page_content; |
|
19 | - do_action('AHEE__admin_wrapper__template__after_about_admin_page_content'); |
|
20 | - ?> |
|
17 | + do_action('AHEE__admin_wrapper__template__before_about_admin_page_content'); |
|
18 | + echo $about_admin_page_content; |
|
19 | + do_action('AHEE__admin_wrapper__template__after_about_admin_page_content'); |
|
20 | + ?> |
|
21 | 21 | |
22 | 22 | </div> |
@@ -10,17 +10,17 @@ discard block |
||
10 | 10 | <dl class="alignleft ee-list-table-legend"> |
11 | 11 | <?php foreach ($items as $item => $details) : ?> |
12 | 12 | <?php |
13 | - if ($per_col < $count) : ?> |
|
13 | + if ($per_col < $count) : ?> |
|
14 | 14 | </dl> |
15 | 15 | <dl class="alignleft ee-list-table-legend"> |
16 | 16 | <?php $count = 1; |
17 | - endif; ?> |
|
17 | + endif; ?> |
|
18 | 18 | <dt id="ee-legend-item-<?php echo $item; ?>"> |
19 | 19 | <?php $class = ! empty($details['class']) ? $details['class'] : 'ee-legend-img-container'; ?> |
20 | 20 | <?php |
21 | - if (strpos($details['class'], '<span') !== false) { |
|
22 | - echo $class; |
|
23 | - } else { ?> |
|
21 | + if (strpos($details['class'], '<span') !== false) { |
|
22 | + echo $class; |
|
23 | + } else { ?> |
|
24 | 24 | <span class="<?php echo $class; ?>"> |
25 | 25 | <?php if (! empty($details['icon'])) : ?> |
26 | 26 | <img src="<?php echo $details['icon']; ?>" class="ee-legend-icon" |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | <?php endif; ?> |
29 | 29 | </span> |
30 | 30 | <?php |
31 | - } ?> |
|
31 | + } ?> |
|
32 | 32 | <span class="ee-legend-description"><?php echo $details['desc']; ?></span> |
33 | 33 | </dt> |
34 | 34 | <?php $count++; |
35 | - endforeach; ?> |
|
35 | + endforeach; ?> |
|
36 | 36 | </dl> |
37 | 37 | <div style="clear:both"></div> |
38 | 38 | </div> |
@@ -22,7 +22,7 @@ |
||
22 | 22 | echo $class; |
23 | 23 | } else { ?> |
24 | 24 | <span class="<?php echo $class; ?>"> |
25 | - <?php if (! empty($details['icon'])) : ?> |
|
25 | + <?php if ( ! empty($details['icon'])) : ?> |
|
26 | 26 | <img src="<?php echo $details['icon']; ?>" class="ee-legend-icon" |
27 | 27 | alt="<?php echo esc_attr($details['desc']); ?>"/> |
28 | 28 | <?php endif; ?> |
@@ -7,11 +7,11 @@ |
||
7 | 7 | <?php echo $nav_tabs; ?> |
8 | 8 | |
9 | 9 | <?php |
10 | - do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
11 | - echo $before_admin_page_content; |
|
12 | - echo $admin_page_content; |
|
13 | - echo $after_admin_page_content; |
|
14 | - do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
15 | - ?> |
|
10 | + do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
11 | + echo $before_admin_page_content; |
|
12 | + echo $admin_page_content; |
|
13 | + echo $after_admin_page_content; |
|
14 | + do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
15 | + ?> |
|
16 | 16 | |
17 | 17 | </div> |
@@ -9,11 +9,11 @@ |
||
9 | 9 | </div> <!-- post-body-content --> |
10 | 10 | |
11 | 11 | <?php |
12 | - // let's loop through the columns |
|
13 | - for ($i = 1; $i <= $num_columns; $i++) { |
|
14 | - $metaref = ($i === 1) ? 'normal' : 'side'; |
|
15 | - $metaref = ($i > 2) ? 'column' . $i : $metaref; |
|
16 | - ?> |
|
12 | + // let's loop through the columns |
|
13 | + for ($i = 1; $i <= $num_columns; $i++) { |
|
14 | + $metaref = ($i === 1) ? 'normal' : 'side'; |
|
15 | + $metaref = ($i > 2) ? 'column' . $i : $metaref; |
|
16 | + ?> |
|
17 | 17 | |
18 | 18 | <div id='postbox-container-<?php echo $i; ?>' class='postbox-container'> |
19 | 19 | <?php do_meta_boxes($current_page, $metaref, null); ?> |
@@ -12,7 +12,7 @@ |
||
12 | 12 | // let's loop through the columns |
13 | 13 | for ($i = 1; $i <= $num_columns; $i++) { |
14 | 14 | $metaref = ($i === 1) ? 'normal' : 'side'; |
15 | - $metaref = ($i > 2) ? 'column' . $i : $metaref; |
|
15 | + $metaref = ($i > 2) ? 'column'.$i : $metaref; |
|
16 | 16 | ?> |
17 | 17 | |
18 | 18 | <div id='postbox-container-<?php echo $i; ?>' class='postbox-container'> |
@@ -2,16 +2,16 @@ discard block |
||
2 | 2 | <ul class="infolinks"> |
3 | 3 | <li> |
4 | 4 | <?php |
5 | - echo '<a href="http://eventespresso.com/wiki/installation/" target="_blank">' |
|
6 | - . __( |
|
7 | - 'Installation', |
|
8 | - 'event_espresso' |
|
9 | - ) |
|
10 | - . '</a> & <a href="http://eventespresso.com/wiki/setting-up-event-espresso/" target="_blank">' |
|
11 | - . __( |
|
12 | - 'Usage Guide', |
|
13 | - 'event_espresso' |
|
14 | - ) . '</a>'; ?> |
|
5 | + echo '<a href="http://eventespresso.com/wiki/installation/" target="_blank">' |
|
6 | + . __( |
|
7 | + 'Installation', |
|
8 | + 'event_espresso' |
|
9 | + ) |
|
10 | + . '</a> & <a href="http://eventespresso.com/wiki/setting-up-event-espresso/" target="_blank">' |
|
11 | + . __( |
|
12 | + 'Usage Guide', |
|
13 | + 'event_espresso' |
|
14 | + ) . '</a>'; ?> |
|
15 | 15 | </li> |
16 | 16 | <li> |
17 | 17 | <a href="http://eventespresso.com/wiki/put-custom-templates/" target="_blank"> |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | </li> |
42 | 42 | <li> |
43 | 43 | <?php echo '<a href="http://eventespresso.com/pricing/" target="_blank">' |
44 | - . __( |
|
45 | - 'Plugins', |
|
46 | - 'event_espresso' |
|
47 | - ) |
|
48 | - . '</a> & <a href="http://eventespresso.com/add-ons/" target="_blank">' |
|
49 | - . __( |
|
50 | - 'Add-ons', |
|
51 | - 'event_espresso' |
|
52 | - ) . '</a>'; ?><br/> |
|
44 | + . __( |
|
45 | + 'Plugins', |
|
46 | + 'event_espresso' |
|
47 | + ) |
|
48 | + . '</a> & <a href="http://eventespresso.com/add-ons/" target="_blank">' |
|
49 | + . __( |
|
50 | + 'Add-ons', |
|
51 | + 'event_espresso' |
|
52 | + ) . '</a>'; ?><br/> |
|
53 | 53 | <br/> |
54 | 54 | <ol> |
55 | 55 | <li> |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | . __( |
12 | 12 | 'Usage Guide', |
13 | 13 | 'event_espresso' |
14 | - ) . '</a>'; ?> |
|
14 | + ).'</a>'; ?> |
|
15 | 15 | </li> |
16 | 16 | <li> |
17 | 17 | <a href="http://eventespresso.com/wiki/put-custom-templates/" target="_blank"> |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | . __( |
50 | 50 | 'Add-ons', |
51 | 51 | 'event_espresso' |
52 | - ) . '</a>'; ?><br/> |
|
52 | + ).'</a>'; ?><br/> |
|
53 | 53 | <br/> |
54 | 54 | <ol> |
55 | 55 | <li> |
@@ -7,7 +7,7 @@ |
||
7 | 7 | <option<?php selected($cur_status, $status); ?> |
8 | 8 | value='<?php echo $status; ?>'><?php echo $label; ?></option> |
9 | 9 | <?php |
10 | - endforeach; |
|
11 | - ?> |
|
10 | + endforeach; |
|
11 | + ?> |
|
12 | 12 | </select> |
13 | 13 | </div> |
14 | 14 | \ No newline at end of file |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | // action for registering metaboxes |
7 | 7 | do_action('add_meta_boxes', $post_type, $post); |
8 | 8 | ?> |
9 | -<?php if (! empty($admin_page_header)) : ?> |
|
9 | +<?php if ( ! empty($admin_page_header)) : ?> |
|
10 | 10 | <div id="admin-page-header"> |
11 | 11 | <?php echo $admin_page_header; ?> |
12 | 12 | </div> |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | <!-- admin-page-header --> |
16 | 16 | <div id="post-body" class="metabox-holder columns-2"> |
17 | 17 | |
18 | - <?php if (! empty($post_body_content)) : ?> |
|
18 | + <?php if ( ! empty($post_body_content)) : ?> |
|
19 | 19 | <div id="post-body-content"> |
20 | 20 | <?php echo $post_body_content; ?> |
21 | 21 | </div> |
@@ -3,11 +3,11 @@ |
||
3 | 3 | |
4 | 4 | <div class="ee-notices"><?php echo isset($ajax_notices) ? $ajax_notices : ''; ?></div> |
5 | 5 | <?php |
6 | - do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
7 | - echo $before_admin_page_content; |
|
8 | - echo $admin_page_content; |
|
9 | - echo $after_admin_page_content; |
|
10 | - do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
11 | - ?> |
|
6 | + do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
7 | + echo $before_admin_page_content; |
|
8 | + echo $admin_page_content; |
|
9 | + echo $after_admin_page_content; |
|
10 | + do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
11 | + ?> |
|
12 | 12 | </div> |
13 | 13 | <!-- espresso-admin --> |
14 | 14 | \ No newline at end of file |