@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | |
30 | 30 | |
31 | -require_once( EE_HELPERS . 'EEH_Base.helper.php' ); |
|
31 | +require_once(EE_HELPERS.'EEH_Base.helper.php'); |
|
32 | 32 | class EEH_Sideloader extends EEH_Base { |
33 | 33 | |
34 | 34 | private $_upload_to; |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | * @access public |
44 | 44 | * @param array $init array fo initializing the sideloader if keys match the properties. |
45 | 45 | */ |
46 | - public function __construct( $init = array() ) { |
|
47 | - $this->_init( $init ); |
|
46 | + public function __construct($init = array()) { |
|
47 | + $this->_init($init); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | |
@@ -55,24 +55,24 @@ discard block |
||
55 | 55 | * @param array $init array on init (keys match properties others ignored) |
56 | 56 | * @return void |
57 | 57 | */ |
58 | - private function _init( $init ) { |
|
58 | + private function _init($init) { |
|
59 | 59 | $defaults = array( |
60 | 60 | '_upload_to' => $this->_get_wp_uploads_dir(), |
61 | 61 | '_upload_from' => '', |
62 | 62 | '_permissions' => 0644, |
63 | - '_new_file_name' => 'EE_Sideloader_' . uniqid() . '.default' |
|
63 | + '_new_file_name' => 'EE_Sideloader_'.uniqid().'.default' |
|
64 | 64 | ); |
65 | 65 | |
66 | - $props = array_merge( $defaults, $init ); |
|
66 | + $props = array_merge($defaults, $init); |
|
67 | 67 | |
68 | - foreach ( $props as $key => $val ) { |
|
69 | - if ( EEH_Class_Tools::has_property( $this, $key ) ) { |
|
68 | + foreach ($props as $key => $val) { |
|
69 | + if (EEH_Class_Tools::has_property($this, $key)) { |
|
70 | 70 | $this->$key = $val; |
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
74 | 74 | //make sure we include the required wp file for needed functions |
75 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
75 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | |
@@ -80,16 +80,16 @@ discard block |
||
80 | 80 | private function _get_wp_uploads_dir() {} |
81 | 81 | |
82 | 82 | //setters |
83 | - public function set_upload_to( $upload_to_folder ) { |
|
83 | + public function set_upload_to($upload_to_folder) { |
|
84 | 84 | $this->_upload_to = $upload_to_folder; |
85 | 85 | } |
86 | - public function set_upload_from( $upload_from_folder ) { |
|
86 | + public function set_upload_from($upload_from_folder) { |
|
87 | 87 | $this->_upload_from_folder = $upload_from_folder; |
88 | 88 | } |
89 | - public function set_permissions( $permissions ) { |
|
89 | + public function set_permissions($permissions) { |
|
90 | 90 | $this->_permissions = $permissions; |
91 | 91 | } |
92 | - public function set_new_file_name( $new_file_name ) { |
|
92 | + public function set_new_file_name($new_file_name) { |
|
93 | 93 | $this->_new_file_name = $new_file_name; |
94 | 94 | } |
95 | 95 | |
@@ -111,34 +111,34 @@ discard block |
||
111 | 111 | //upload methods |
112 | 112 | public function sideload() { |
113 | 113 | //setup temp dir |
114 | - $temp_file = wp_tempnam( $this->_upload_from ); |
|
114 | + $temp_file = wp_tempnam($this->_upload_from); |
|
115 | 115 | |
116 | - if ( !$temp_file ) { |
|
117 | - EE_Error::add_error( __('Something went wrong with the upload. Unable to create a tmp file for the uploaded file on the server', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
116 | + if ( ! $temp_file) { |
|
117 | + EE_Error::add_error(__('Something went wrong with the upload. Unable to create a tmp file for the uploaded file on the server', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
118 | 118 | return false; |
119 | 119 | } |
120 | 120 | |
121 | - do_action( 'AHEE__EEH_Sideloader__sideload__before', $this, $temp_file ); |
|
121 | + do_action('AHEE__EEH_Sideloader__sideload__before', $this, $temp_file); |
|
122 | 122 | |
123 | - $wp_remote_args = apply_filters( 'FHEE__EEH_Sideloader__sideload__wp_remote_args', array( 'timeout' => 500, 'stream' => true, 'filename' => $temp_file ), $this, $temp_file ); |
|
123 | + $wp_remote_args = apply_filters('FHEE__EEH_Sideloader__sideload__wp_remote_args', array('timeout' => 500, 'stream' => true, 'filename' => $temp_file), $this, $temp_file); |
|
124 | 124 | |
125 | - $response = wp_safe_remote_get( $this->_upload_from, $wp_remote_args ); |
|
125 | + $response = wp_safe_remote_get($this->_upload_from, $wp_remote_args); |
|
126 | 126 | |
127 | - if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) { |
|
128 | - unlink( $temp_file ); |
|
129 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
130 | - EE_Error::add_error( sprintf( __('Unable to upload the file. Either the path given to upload from is incorrect, or something else happened. Here is the response returned:<br />%s<br />Here is the path given: %s', 'event_espresso'), var_export( $response, true ), $this->_upload_from ), __FILE__, __FUNCTION__, __LINE__ ); |
|
127 | + if (is_wp_error($response) || 200 != wp_remote_retrieve_response_code($response)) { |
|
128 | + unlink($temp_file); |
|
129 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
130 | + EE_Error::add_error(sprintf(__('Unable to upload the file. Either the path given to upload from is incorrect, or something else happened. Here is the response returned:<br />%s<br />Here is the path given: %s', 'event_espresso'), var_export($response, true), $this->_upload_from), __FILE__, __FUNCTION__, __LINE__); |
|
131 | 131 | } |
132 | 132 | return false; |
133 | 133 | } |
134 | 134 | |
135 | 135 | //possible md5 check |
136 | - $content_md5 = wp_remote_retrieve_header( $response, 'content-md5' ); |
|
137 | - if ( $content_md5 ) { |
|
138 | - $md5_check = verify_file_md5( $temp_file, $content_md5 ); |
|
139 | - if ( is_wp_error( $md5_check ) ) { |
|
140 | - unlink( $temp_file ); |
|
141 | - EE_Error::add_error( $md5_check->get_error_message(), __FILE__, __FUNCTION__, __LINE__ ); |
|
136 | + $content_md5 = wp_remote_retrieve_header($response, 'content-md5'); |
|
137 | + if ($content_md5) { |
|
138 | + $md5_check = verify_file_md5($temp_file, $content_md5); |
|
139 | + if (is_wp_error($md5_check)) { |
|
140 | + unlink($temp_file); |
|
141 | + EE_Error::add_error($md5_check->get_error_message(), __FILE__, __FUNCTION__, __LINE__); |
|
142 | 142 | return false; |
143 | 143 | } |
144 | 144 | } |
@@ -146,24 +146,24 @@ discard block |
||
146 | 146 | $file = $temp_file; |
147 | 147 | |
148 | 148 | //now we have the file, let's get it in the right directory with the right name. |
149 | - $path = apply_filters( 'FHEE__EEH_Sideloader__sideload__new_path', $this->_upload_to . $this->_new_file_name, $this ); |
|
149 | + $path = apply_filters('FHEE__EEH_Sideloader__sideload__new_path', $this->_upload_to.$this->_new_file_name, $this); |
|
150 | 150 | |
151 | 151 | //move file in |
152 | - if ( false === @ rename( $file, $path ) ) { |
|
153 | - unlink( $temp_file ); |
|
154 | - EE_Error::add_error( sprintf( __('Unable to move the file to new location (possible permissions errors). This is the path the class attempted to move the file to: %s', 'event_espresso' ), $path ), __FILE__, __FUNCTION__, __LINE__ ); |
|
152 | + if (false === @ rename($file, $path)) { |
|
153 | + unlink($temp_file); |
|
154 | + EE_Error::add_error(sprintf(__('Unable to move the file to new location (possible permissions errors). This is the path the class attempted to move the file to: %s', 'event_espresso'), $path), __FILE__, __FUNCTION__, __LINE__); |
|
155 | 155 | return false; |
156 | 156 | } |
157 | 157 | |
158 | 158 | //set permissions |
159 | - $permissions = apply_filters( 'FHEE__EEH_Sideloader__sideload__permissions_applied', $this->_permissions, $this ); |
|
160 | - chmod( $path, $permissions ); |
|
159 | + $permissions = apply_filters('FHEE__EEH_Sideloader__sideload__permissions_applied', $this->_permissions, $this); |
|
160 | + chmod($path, $permissions); |
|
161 | 161 | |
162 | 162 | //that's it. let's allow for actions after file uploaded. |
163 | - do_action( 'AHEE__EE_Sideloader__sideload_after', $this, $path ); |
|
163 | + do_action('AHEE__EE_Sideloader__sideload_after', $this, $path); |
|
164 | 164 | |
165 | 165 | //unlink tempfile |
166 | - @unlink( $temp_file ); |
|
166 | + @unlink($temp_file); |
|
167 | 167 | return true; |
168 | 168 | } |
169 | 169 |
@@ -44,16 +44,16 @@ discard block |
||
44 | 44 | * regardless of access. |
45 | 45 | * @return EE_Venue | null |
46 | 46 | */ |
47 | - public static function get_venue( $VNU_ID = 0, $look_in_event = TRUE, $privacy_check = true ) { |
|
48 | - $VNU_ID = absint( $VNU_ID ); |
|
47 | + public static function get_venue($VNU_ID = 0, $look_in_event = TRUE, $privacy_check = true) { |
|
48 | + $VNU_ID = absint($VNU_ID); |
|
49 | 49 | // do we already have the Venue you are looking for? |
50 | - if ( EEH_Venue_View::$_venue instanceof EE_Venue && EEH_Venue_View::$_venue->ID() == $VNU_ID ) { |
|
51 | - return EEH_Venue_View::_get_venue( $privacy_check ); |
|
50 | + if (EEH_Venue_View::$_venue instanceof EE_Venue && EEH_Venue_View::$_venue->ID() == $VNU_ID) { |
|
51 | + return EEH_Venue_View::_get_venue($privacy_check); |
|
52 | 52 | } |
53 | 53 | // international newspaper? |
54 | 54 | global $post; |
55 | - if ( $post instanceof WP_Post ) { |
|
56 | - switch ( $post->post_type ) { |
|
55 | + if ($post instanceof WP_Post) { |
|
56 | + switch ($post->post_type) { |
|
57 | 57 | // if this is being called from an EE_Venue post, |
58 | 58 | // and the EE_Venue post corresponds to the EE_Venue that is being asked for, |
59 | 59 | // then we can try to just grab the attached EE_Venue object |
@@ -61,31 +61,31 @@ discard block |
||
61 | 61 | // the post already contains the related EE_Venue object AND one of the following is TRUE: |
62 | 62 | // the requested Venue ID matches the post ID OR... |
63 | 63 | // there was no specific Venue ID requested |
64 | - if ( isset( $post->EE_Venue ) && ( $VNU_ID == $post->ID || ! $VNU_ID )) { |
|
64 | + if (isset($post->EE_Venue) && ($VNU_ID == $post->ID || ! $VNU_ID)) { |
|
65 | 65 | // use existing related EE_Venue object |
66 | - EEH_Venue_View::$_venue = $post->EE_Venue; |
|
67 | - } else if ( $VNU_ID ) { |
|
66 | + EEH_Venue_View::$_venue = $post->EE_Venue; |
|
67 | + } else if ($VNU_ID) { |
|
68 | 68 | // there WAS a specific Venue ID requested, but it's NOT the current post object |
69 | - EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID( $VNU_ID ); |
|
69 | + EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID($VNU_ID); |
|
70 | 70 | } else { |
71 | 71 | // no specific Venue ID requested, so use post ID to generate EE_Venue object |
72 | - EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID( $post->ID ); |
|
72 | + EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID($post->ID); |
|
73 | 73 | } |
74 | 74 | break; |
75 | 75 | |
76 | 76 | case 'espresso_events': |
77 | - if ( $look_in_event ) { |
|
77 | + if ($look_in_event) { |
|
78 | 78 | // grab the events related venues |
79 | 79 | $venues = EEH_Venue_View::get_event_venues(); |
80 | 80 | // make sure the result is an array |
81 | - $venues = is_array( $venues ) ? $venues : array(); |
|
81 | + $venues = is_array($venues) ? $venues : array(); |
|
82 | 82 | // do we have an ID for a specific venue? |
83 | - if ( $VNU_ID ) { |
|
83 | + if ($VNU_ID) { |
|
84 | 84 | // loop thru the related venues |
85 | - foreach( $venues as $venue ) { |
|
86 | - if ( $venue instanceof EE_Venue ) { |
|
85 | + foreach ($venues as $venue) { |
|
86 | + if ($venue instanceof EE_Venue) { |
|
87 | 87 | // until we find the venue we're looking for |
88 | - if ( $venue->ID() == $VNU_ID ) { |
|
88 | + if ($venue->ID() == $VNU_ID) { |
|
89 | 89 | EEH_Venue_View::$_venue = $venue; |
90 | 90 | break; |
91 | 91 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | // then the global post is an events post and this function was called with no argument |
98 | 98 | } else { |
99 | 99 | // just grab the first related event venue |
100 | - EEH_Venue_View::$_venue = reset( $venues ); |
|
100 | + EEH_Venue_View::$_venue = reset($venues); |
|
101 | 101 | } |
102 | 102 | } |
103 | 103 | break; |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | } |
106 | 106 | } |
107 | 107 | // now if we STILL do NOT have an EE_Venue model object, BUT we have a Venue ID... |
108 | - if ( ! EEH_Venue_View::$_venue instanceof EE_Venue && $VNU_ID ) { |
|
108 | + if ( ! EEH_Venue_View::$_venue instanceof EE_Venue && $VNU_ID) { |
|
109 | 109 | // sigh... pull it from the db |
110 | - EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID( $VNU_ID ); |
|
110 | + EEH_Venue_View::$_venue = EEM_Venue::instance()->get_one_by_ID($VNU_ID); |
|
111 | 111 | } |
112 | - return EEH_Venue_View::_get_venue( $privacy_check ); |
|
112 | + return EEH_Venue_View::_get_venue($privacy_check); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | |
@@ -121,9 +121,9 @@ discard block |
||
121 | 121 | * regardless of access. |
122 | 122 | * @return EE_Venue |
123 | 123 | */ |
124 | - protected static function _get_venue( $privacy_check = true ) { |
|
124 | + protected static function _get_venue($privacy_check = true) { |
|
125 | 125 | // check for private venues. |
126 | - if ( EEH_Venue_View::$_venue instanceof EE_Venue && EEH_Venue_View::$_venue->status() == 'private' && $privacy_check && ! EE_Registry::instance()->CAP->current_user_can( 'ee_read_private_venues', 'get_venues' ) ) { |
|
126 | + if (EEH_Venue_View::$_venue instanceof EE_Venue && EEH_Venue_View::$_venue->status() == 'private' && $privacy_check && ! EE_Registry::instance()->CAP->current_user_can('ee_read_private_venues', 'get_venues')) { |
|
127 | 127 | return null; |
128 | 128 | } |
129 | 129 | return EEH_Venue_View::$_venue instanceof EE_Venue ? EEH_Venue_View::$_venue : null; |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | */ |
140 | 140 | public static function get_event_venues() { |
141 | 141 | global $post; |
142 | - if ( $post->post_type == 'espresso_events' ) { |
|
143 | - if ( isset( $post->EE_Event ) && $post->EE_Event instanceof EE_Event ) { |
|
142 | + if ($post->post_type == 'espresso_events') { |
|
143 | + if (isset($post->EE_Event) && $post->EE_Event instanceof EE_Event) { |
|
144 | 144 | return $post->EE_Event->venues(); |
145 | 145 | } |
146 | 146 | } |
@@ -160,9 +160,9 @@ discard block |
||
160 | 160 | * |
161 | 161 | * @return bool|null |
162 | 162 | */ |
163 | - public static function is_venue_private( $VNU_ID = false ) { |
|
164 | - $venue = EEH_Venue_View::get_venue( $VNU_ID, true, true ); |
|
165 | - if ( ! $venue instanceof EE_Venue ) { |
|
163 | + public static function is_venue_private($VNU_ID = false) { |
|
164 | + $venue = EEH_Venue_View::get_venue($VNU_ID, true, true); |
|
165 | + if ( ! $venue instanceof EE_Venue) { |
|
166 | 166 | return null; |
167 | 167 | } |
168 | 168 | |
@@ -178,9 +178,9 @@ discard block |
||
178 | 178 | * @param int $VNU_ID |
179 | 179 | * @return string |
180 | 180 | */ |
181 | - public static function venue_description( $VNU_ID = 0 ) { |
|
182 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
183 | - if ( $venue instanceof EE_Venue ) { |
|
181 | + public static function venue_description($VNU_ID = 0) { |
|
182 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
183 | + if ($venue instanceof EE_Venue) { |
|
184 | 184 | return$venue->description(); |
185 | 185 | } |
186 | 186 | return ''; |
@@ -195,12 +195,12 @@ discard block |
||
195 | 195 | * @param int $VNU_ID |
196 | 196 | * @return string |
197 | 197 | */ |
198 | - public static function venue_excerpt( $VNU_ID = 0 ) { |
|
199 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
200 | - if ( $venue instanceof EE_Venue ) { |
|
198 | + public static function venue_excerpt($VNU_ID = 0) { |
|
199 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
200 | + if ($venue instanceof EE_Venue) { |
|
201 | 201 | $excerpt = $venue->excerpt() != NULL && $venue->excerpt() ? $venue->excerpt() : $venue->description(); |
202 | - $venue_link = ' ' . EEH_Venue_View::venue_details_link( $venue->ID(), __( 'more', 'event_espresso' ) . '…' ); |
|
203 | - return ! empty( $excerpt ) ? wp_trim_words( $excerpt, 25, '' ) . $venue_link : ''; |
|
202 | + $venue_link = ' '.EEH_Venue_View::venue_details_link($venue->ID(), __('more', 'event_espresso').'…'); |
|
203 | + return ! empty($excerpt) ? wp_trim_words($excerpt, 25, '').$venue_link : ''; |
|
204 | 204 | } |
205 | 205 | return ''; |
206 | 206 | } |
@@ -215,22 +215,22 @@ discard block |
||
215 | 215 | * @param bool $hide_uncategorized |
216 | 216 | * @return string |
217 | 217 | */ |
218 | - public static function venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE ) { |
|
218 | + public static function venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE) { |
|
219 | 219 | $category_links = array(); |
220 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
221 | - if ( $venue instanceof EE_Venue ) { |
|
220 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
221 | + if ($venue instanceof EE_Venue) { |
|
222 | 222 | // get category terms |
223 | - if ( $venue_categories = get_the_terms( $venue->ID(), 'espresso_venue_categories' )) { |
|
223 | + if ($venue_categories = get_the_terms($venue->ID(), 'espresso_venue_categories')) { |
|
224 | 224 | // loop thru terms and create links |
225 | - foreach ( $venue_categories as $term ) { |
|
226 | - $url = get_term_link( $term, 'espresso_venue_categories' ); |
|
227 | - if ( ! is_wp_error( $url ) && (( $hide_uncategorized && strtolower( $term->name ) != __( 'uncategorized', 'event_espresso' )) || ! $hide_uncategorized )) { |
|
228 | - $category_links[] = '<a href="' . esc_url( $url ) . '" rel="tag">' . $term->name . '</a> '; |
|
225 | + foreach ($venue_categories as $term) { |
|
226 | + $url = get_term_link($term, 'espresso_venue_categories'); |
|
227 | + if ( ! is_wp_error($url) && (($hide_uncategorized && strtolower($term->name) != __('uncategorized', 'event_espresso')) || ! $hide_uncategorized)) { |
|
228 | + $category_links[] = '<a href="'.esc_url($url).'" rel="tag">'.$term->name.'</a> '; |
|
229 | 229 | } |
230 | 230 | } |
231 | 231 | } |
232 | 232 | } |
233 | - return implode( ', ', $category_links ); |
|
233 | + return implode(', ', $category_links); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | |
@@ -245,11 +245,11 @@ discard block |
||
245 | 245 | * @param bool $add_wrapper |
246 | 246 | * @return string |
247 | 247 | */ |
248 | - public static function venue_address( $type = 'multiline', $VNU_ID = 0, $use_schema = true, $add_wrapper = true ) { |
|
249 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
250 | - if ( $venue instanceof EE_Venue ) { |
|
251 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
252 | - return EEH_Address::format( $venue, $type, $use_schema, $add_wrapper ); |
|
248 | + public static function venue_address($type = 'multiline', $VNU_ID = 0, $use_schema = true, $add_wrapper = true) { |
|
249 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
250 | + if ($venue instanceof EE_Venue) { |
|
251 | + EE_Registry::instance()->load_helper('Formatter'); |
|
252 | + return EEH_Address::format($venue, $type, $use_schema, $add_wrapper); |
|
253 | 253 | } |
254 | 254 | return ''; |
255 | 255 | } |
@@ -263,11 +263,11 @@ discard block |
||
263 | 263 | * @param int $VNU_ID |
264 | 264 | * @return bool|string |
265 | 265 | */ |
266 | - public static function venue_has_address( $VNU_ID = 0 ) { |
|
267 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
268 | - if ( $venue instanceof EE_Venue ) { |
|
269 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
270 | - return EEH_Address::format( $venue, 'inline', FALSE, FALSE ); |
|
266 | + public static function venue_has_address($VNU_ID = 0) { |
|
267 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
268 | + if ($venue instanceof EE_Venue) { |
|
269 | + EE_Registry::instance()->load_helper('Formatter'); |
|
270 | + return EEH_Address::format($venue, 'inline', FALSE, FALSE); |
|
271 | 271 | } |
272 | 272 | return false; |
273 | 273 | } |
@@ -282,31 +282,31 @@ discard block |
||
282 | 282 | * @param int $VNU_ID |
283 | 283 | * @return string |
284 | 284 | */ |
285 | - public static function venue_name( $link_to = 'details', $VNU_ID = 0 ) { |
|
286 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
287 | - if ( $venue instanceof EE_Venue ) { |
|
288 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
285 | + public static function venue_name($link_to = 'details', $VNU_ID = 0) { |
|
286 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
287 | + if ($venue instanceof EE_Venue) { |
|
288 | + EE_Registry::instance()->load_helper('Formatter'); |
|
289 | 289 | $venue_name = apply_filters( |
290 | 290 | 'FHEE__EEH_Venue__venue_name__append_private_venue_name', |
291 | 291 | EEH_Venue_View::is_venue_private() |
292 | - ? EEH_Venue_View::$_venue->name() . " " . __( '(Private)', 'event_espresso' ) |
|
292 | + ? EEH_Venue_View::$_venue->name()." ".__('(Private)', 'event_espresso') |
|
293 | 293 | : EEH_Venue_View::$_venue->name(), |
294 | 294 | EEH_Venue_View::$_venue |
295 | 295 | ); |
296 | - $venue_name = EEH_Schema::name( $venue_name ); |
|
296 | + $venue_name = EEH_Schema::name($venue_name); |
|
297 | 297 | |
298 | 298 | //if venue is trashed then ignore the "link to" setting because the venue is trashed. |
299 | - if ( $venue->get('status') == 'trash' ) { |
|
299 | + if ($venue->get('status') == 'trash') { |
|
300 | 300 | $link_to = ''; |
301 | 301 | } |
302 | - switch( $link_to ) { |
|
302 | + switch ($link_to) { |
|
303 | 303 | |
304 | 304 | case 'details' : |
305 | - return EEH_Venue_View::venue_details_link( $venue->ID(), $venue_name ); |
|
305 | + return EEH_Venue_View::venue_details_link($venue->ID(), $venue_name); |
|
306 | 306 | break; |
307 | 307 | |
308 | 308 | case 'website' : |
309 | - return EEH_Venue_View::venue_website_link( $venue->ID(), $venue_name ); |
|
309 | + return EEH_Venue_View::venue_website_link($venue->ID(), $venue_name); |
|
310 | 310 | break; |
311 | 311 | |
312 | 312 | default : |
@@ -326,10 +326,10 @@ discard block |
||
326 | 326 | * @param string $text |
327 | 327 | * @return string |
328 | 328 | */ |
329 | - public static function venue_details_link( $VNU_ID = 0, $text = '' ) { |
|
330 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
331 | - if ( $venue instanceof EE_Venue ) { |
|
332 | - return EEH_Schema::url( get_permalink( $venue->ID() ), $text ); |
|
329 | + public static function venue_details_link($VNU_ID = 0, $text = '') { |
|
330 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
331 | + if ($venue instanceof EE_Venue) { |
|
332 | + return EEH_Schema::url(get_permalink($venue->ID()), $text); |
|
333 | 333 | } |
334 | 334 | return ''; |
335 | 335 | } |
@@ -344,13 +344,13 @@ discard block |
||
344 | 344 | * @param string $text |
345 | 345 | * @return string |
346 | 346 | */ |
347 | - public static function venue_website_link( $VNU_ID = 0, $text = '' ) { |
|
348 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
349 | - if ( $venue instanceof EE_Venue ) { |
|
350 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
347 | + public static function venue_website_link($VNU_ID = 0, $text = '') { |
|
348 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
349 | + if ($venue instanceof EE_Venue) { |
|
350 | + EE_Registry::instance()->load_helper('Formatter'); |
|
351 | 351 | $url = $venue->venue_url(); |
352 | - $text = ! empty( $text ) ? $text : $url; |
|
353 | - return ! empty( $url ) ? EEH_Schema::url( $url, $text ) : ''; |
|
352 | + $text = ! empty($text) ? $text : $url; |
|
353 | + return ! empty($url) ? EEH_Schema::url($url, $text) : ''; |
|
354 | 354 | } |
355 | 355 | return ''; |
356 | 356 | } |
@@ -364,11 +364,11 @@ discard block |
||
364 | 364 | * @param int $VNU_ID |
365 | 365 | * @return string |
366 | 366 | */ |
367 | - public static function venue_phone( $VNU_ID = 0) { |
|
368 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
369 | - if ( $venue instanceof EE_Venue ) { |
|
370 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
371 | - return EEH_Schema::telephone( $venue->phone() ); |
|
367 | + public static function venue_phone($VNU_ID = 0) { |
|
368 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
369 | + if ($venue instanceof EE_Venue) { |
|
370 | + EE_Registry::instance()->load_helper('Formatter'); |
|
371 | + return EEH_Schema::telephone($venue->phone()); |
|
372 | 372 | } |
373 | 373 | return ''; |
374 | 374 | } |
@@ -384,51 +384,51 @@ discard block |
||
384 | 384 | * @param array $gmap map options |
385 | 385 | * @return string |
386 | 386 | */ |
387 | - public static function venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array() ) { |
|
387 | + public static function venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array()) { |
|
388 | 388 | |
389 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
390 | - if ( $venue instanceof EE_Venue ) { |
|
389 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
390 | + if ($venue instanceof EE_Venue) { |
|
391 | 391 | // check for global espresso_events post and use it's ID if no map_ID is set |
392 | 392 | global $post; |
393 | - $map_ID = empty( $map_ID ) && $post->post_type == 'espresso_events' ? $post->ID : $map_ID; |
|
393 | + $map_ID = empty($map_ID) && $post->post_type == 'espresso_events' ? $post->ID : $map_ID; |
|
394 | 394 | // grab map settings |
395 | 395 | $map_cfg = EE_Registry::instance()->CFG->map_settings; |
396 | 396 | // are maps enabled ? |
397 | - if ( $map_cfg->use_google_maps && $venue->enable_for_gmap() ) { |
|
397 | + if ($map_cfg->use_google_maps && $venue->enable_for_gmap()) { |
|
398 | 398 | |
399 | - EE_Registry::instance()->load_helper( 'Maps' ); |
|
400 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
399 | + EE_Registry::instance()->load_helper('Maps'); |
|
400 | + EE_Registry::instance()->load_helper('Formatter'); |
|
401 | 401 | |
402 | 402 | $details_page = is_single(); |
403 | 403 | $options = array(); |
404 | - $options['map_ID'] = $map_ID && $map_ID != $venue->ID() ? $map_ID . '-' . $venue->ID()/* . '-' . $static_map_id*/ : $venue->ID()/* . '-' . $static_map_id*/; |
|
404 | + $options['map_ID'] = $map_ID && $map_ID != $venue->ID() ? $map_ID.'-'.$venue->ID()/* . '-' . $static_map_id*/ : $venue->ID()/* . '-' . $static_map_id*/; |
|
405 | 405 | |
406 | - $options['location'] = EEH_Address::format( $venue, 'inline', FALSE, FALSE ); |
|
406 | + $options['location'] = EEH_Address::format($venue, 'inline', FALSE, FALSE); |
|
407 | 407 | |
408 | 408 | $options['ee_map_width'] = $details_page ? $map_cfg->event_details_map_width : $map_cfg->event_list_map_width; |
409 | - $options['ee_map_width'] = isset( $gmap['ee_map_width'] ) && ! empty( $gmap['ee_map_width'] ) ? $gmap['ee_map_width'] : $options['ee_map_width']; |
|
409 | + $options['ee_map_width'] = isset($gmap['ee_map_width']) && ! empty($gmap['ee_map_width']) ? $gmap['ee_map_width'] : $options['ee_map_width']; |
|
410 | 410 | |
411 | 411 | $options['ee_map_height'] = $details_page ? $map_cfg->event_details_map_height : $map_cfg->event_list_map_height; |
412 | - $options['ee_map_height'] = isset( $gmap['ee_map_height'] ) && ! empty( $gmap['ee_map_height'] ) ? $gmap['ee_map_height'] : $options['ee_map_height']; |
|
412 | + $options['ee_map_height'] = isset($gmap['ee_map_height']) && ! empty($gmap['ee_map_height']) ? $gmap['ee_map_height'] : $options['ee_map_height']; |
|
413 | 413 | |
414 | 414 | $options['ee_map_zoom'] = $details_page ? $map_cfg->event_details_map_zoom : $map_cfg->event_list_map_zoom; |
415 | - $options['ee_map_zoom'] = isset( $gmap['ee_map_zoom'] ) && ! empty( $gmap['ee_map_zoom'] ) ? $gmap['ee_map_zoom'] : $options['ee_map_zoom']; |
|
415 | + $options['ee_map_zoom'] = isset($gmap['ee_map_zoom']) && ! empty($gmap['ee_map_zoom']) ? $gmap['ee_map_zoom'] : $options['ee_map_zoom']; |
|
416 | 416 | |
417 | 417 | $options['ee_map_nav_display'] = $details_page ? $map_cfg->event_details_display_nav : $map_cfg->event_list_display_nav; |
418 | - $options['ee_map_nav_display'] = isset( $gmap['ee_map_nav_display'] ) && ! empty( $gmap['ee_map_nav_display'] ) ? 'true' : $options['ee_map_nav_display'];; |
|
418 | + $options['ee_map_nav_display'] = isset($gmap['ee_map_nav_display']) && ! empty($gmap['ee_map_nav_display']) ? 'true' : $options['ee_map_nav_display']; ; |
|
419 | 419 | |
420 | 420 | $options['ee_map_nav_size'] = $details_page ? $map_cfg->event_details_nav_size : $map_cfg->event_list_nav_size; |
421 | - $options['ee_map_nav_size'] = isset( $gmap['ee_map_nav_size'] ) && ! empty( $gmap['ee_map_nav_size'] )? $gmap['ee_map_nav_size'] : $options['ee_map_nav_size']; |
|
421 | + $options['ee_map_nav_size'] = isset($gmap['ee_map_nav_size']) && ! empty($gmap['ee_map_nav_size']) ? $gmap['ee_map_nav_size'] : $options['ee_map_nav_size']; |
|
422 | 422 | |
423 | 423 | $options['ee_map_type_control'] = $details_page ? $map_cfg->event_details_control_type : $map_cfg->event_list_control_type; |
424 | - $options['ee_map_type_control'] = isset( $gmap['ee_map_type_control'] ) && ! empty( $gmap['ee_map_type_control'] )? $gmap['ee_map_type_control'] : $options['ee_map_type_control']; |
|
424 | + $options['ee_map_type_control'] = isset($gmap['ee_map_type_control']) && ! empty($gmap['ee_map_type_control']) ? $gmap['ee_map_type_control'] : $options['ee_map_type_control']; |
|
425 | 425 | |
426 | 426 | $options['ee_map_align'] = $details_page ? $map_cfg->event_details_map_align : $map_cfg->event_list_map_align; |
427 | - $options['ee_map_align'] = isset( $gmap['ee_map_align'] ) && ! empty( $gmap['ee_map_align'] )? $gmap['ee_map_align'] : $options['ee_map_align']; |
|
427 | + $options['ee_map_align'] = isset($gmap['ee_map_align']) && ! empty($gmap['ee_map_align']) ? $gmap['ee_map_align'] : $options['ee_map_align']; |
|
428 | 428 | |
429 | - $options['ee_static_url'] = isset( $gmap['ee_static_url'] ) && ! empty( $gmap['ee_static_url'] ) ? (bool)absint( $gmap['ee_static_url'] ) : $venue->google_map_link(); |
|
429 | + $options['ee_static_url'] = isset($gmap['ee_static_url']) && ! empty($gmap['ee_static_url']) ? (bool) absint($gmap['ee_static_url']) : $venue->google_map_link(); |
|
430 | 430 | |
431 | - return EEH_Maps::google_map( $options ); |
|
431 | + return EEH_Maps::google_map($options); |
|
432 | 432 | |
433 | 433 | } |
434 | 434 | } |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | * @param array $atts like EEH_Maps::google_map_link |
444 | 444 | * @return string |
445 | 445 | */ |
446 | - public static function espresso_google_static_map( EE_Venue $venue, $atts = array() ){ |
|
446 | + public static function espresso_google_static_map(EE_Venue $venue, $atts = array()) { |
|
447 | 447 | EE_Registry::instance()->load_helper('Maps'); |
448 | 448 | $state = $venue->state_obj(); |
449 | 449 | $country = $venue->country_obj(); |
@@ -475,23 +475,23 @@ discard block |
||
475 | 475 | * @param string $after |
476 | 476 | * @return string |
477 | 477 | */ |
478 | - public static function edit_venue_link( $VNU_ID = 0, $link = '', $before = '<p class="edit-venue-lnk small-txt">', $after = '</p>' ) { |
|
479 | - $venue = EEH_Venue_View::get_venue( $VNU_ID ); |
|
480 | - if ( $venue instanceof EE_Venue ) { |
|
478 | + public static function edit_venue_link($VNU_ID = 0, $link = '', $before = '<p class="edit-venue-lnk small-txt">', $after = '</p>') { |
|
479 | + $venue = EEH_Venue_View::get_venue($VNU_ID); |
|
480 | + if ($venue instanceof EE_Venue) { |
|
481 | 481 | // can the user edit this post ? |
482 | - if ( current_user_can( 'edit_post', $venue->ID() )) { |
|
482 | + if (current_user_can('edit_post', $venue->ID())) { |
|
483 | 483 | // set link text |
484 | - $link = ! empty( $link ) ? $link : __('edit this venue'); |
|
484 | + $link = ! empty($link) ? $link : __('edit this venue'); |
|
485 | 485 | // generate nonce |
486 | - $nonce = wp_create_nonce( 'edit_nonce' ); |
|
486 | + $nonce = wp_create_nonce('edit_nonce'); |
|
487 | 487 | // generate url to venue editor for this venue |
488 | - $url = add_query_arg( array( 'page' => 'espresso_venues', 'action' => 'edit', 'post' => $venue->ID(), 'edit_nonce' => $nonce ), admin_url( 'admin.php' ) ); |
|
488 | + $url = add_query_arg(array('page' => 'espresso_venues', 'action' => 'edit', 'post' => $venue->ID(), 'edit_nonce' => $nonce), admin_url('admin.php')); |
|
489 | 489 | // get edit CPT text |
490 | - $post_type_obj = get_post_type_object( 'espresso_venues' ); |
|
490 | + $post_type_obj = get_post_type_object('espresso_venues'); |
|
491 | 491 | // build final link html |
492 | - $link = '<a class="post-edit-link" href="' . $url . '" title="' . esc_attr( $post_type_obj->labels->edit_item ) . '">' . $link . '</a>'; |
|
492 | + $link = '<a class="post-edit-link" href="'.$url.'" title="'.esc_attr($post_type_obj->labels->edit_item).'">'.$link.'</a>'; |
|
493 | 493 | // put it all together |
494 | - return $before . apply_filters( 'edit_post_link', $link, $venue->ID() ) . $after; |
|
494 | + return $before.apply_filters('edit_post_link', $link, $venue->ID()).$after; |
|
495 | 495 | } |
496 | 496 | } |
497 | 497 | return ''; |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @param mixed $info |
26 | 26 | * @return bool |
27 | 27 | */ |
28 | - public function add( $object, $info = null ); |
|
28 | + public function add($object, $info = null); |
|
29 | 29 | |
30 | 30 | |
31 | 31 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param mixed $info |
40 | 40 | * @return bool |
41 | 41 | */ |
42 | - public function set_info( $object, $info = null ); |
|
42 | + public function set_info($object, $info = null); |
|
43 | 43 | |
44 | 44 | |
45 | 45 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @param mixed |
53 | 53 | * @return null | object |
54 | 54 | */ |
55 | - public function get_by_info( $info ); |
|
55 | + public function get_by_info($info); |
|
56 | 56 | |
57 | 57 | |
58 | 58 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @param object $object |
66 | 66 | * @return bool |
67 | 67 | */ |
68 | - public function has( $object ); |
|
68 | + public function has($object); |
|
69 | 69 | |
70 | 70 | |
71 | 71 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @param $object |
79 | 79 | * @return void |
80 | 80 | */ |
81 | - public function remove( $object ); |
|
81 | + public function remove($object); |
|
82 | 82 | |
83 | 83 | |
84 | 84 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @return bool | int |
31 | 31 | * @throws \EE_Error |
32 | 32 | */ |
33 | - public function persist( $persistence_callback = '', $persistence_arguments = array() ); |
|
33 | + public function persist($persistence_callback = '', $persistence_arguments = array()); |
|
34 | 34 | |
35 | 35 | |
36 | 36 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @param string $persistence_callback name of method found on object that can be used for persisting it |
44 | 44 | * @return bool | int |
45 | 45 | */ |
46 | - public function persist_all( $persistence_callback = '' ); |
|
46 | + public function persist_all($persistence_callback = ''); |
|
47 | 47 | |
48 | 48 | } |
49 | 49 | // End of file EEI_Repository.interface.php |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EEI_Line_Item |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * @param mixed $field_value |
19 | 19 | * @param bool $use_default |
20 | 20 | */ |
21 | - public function set( $field_name, $field_value, $use_default = false ); |
|
21 | + public function set($field_name, $field_value, $use_default = false); |
|
22 | 22 | |
23 | 23 | |
24 | 24 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * Sets quantity |
57 | 57 | * @param int $quantity |
58 | 58 | */ |
59 | - function set_quantity( $quantity ); |
|
59 | + function set_quantity($quantity); |
|
60 | 60 | |
61 | 61 | |
62 | 62 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * @param int $txn_id if none is provided, assumes $this->TXN_ID() |
116 | 116 | * @return int count of items saved |
117 | 117 | */ |
118 | - function save_this_and_descendants_to_txn( $txn_id = null ); |
|
118 | + function save_this_and_descendants_to_txn($txn_id = null); |
|
119 | 119 | |
120 | 120 | |
121 | 121 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | * @param bool $set_order |
143 | 143 | * @return bool true for success, false for fail |
144 | 144 | */ |
145 | - function add_child_line_item( EEI_Line_Item $line_item, $set_order = true ); |
|
145 | + function add_child_line_item(EEI_Line_Item $line_item, $set_order = true); |
|
146 | 146 | |
147 | 147 | |
148 | 148 | |
@@ -197,14 +197,14 @@ discard block |
||
197 | 197 | * @param float $total |
198 | 198 | * @return boolean |
199 | 199 | */ |
200 | - function set_total( $total ); |
|
200 | + function set_total($total); |
|
201 | 201 | |
202 | 202 | /** |
203 | 203 | * Sets unit_price |
204 | 204 | * @param float $unit_price |
205 | 205 | * @return boolean |
206 | 206 | */ |
207 | - function set_unit_price( $unit_price ); |
|
207 | + function set_unit_price($unit_price); |
|
208 | 208 | |
209 | 209 | /** |
210 | 210 | * If this line item has been saved to the DB, deletes its child with LIN_code == $code. If this line |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * @param bool $stop_search_once_found |
216 | 216 | * @return int count of items deleted (or simply removed from the line item's cache, if not has not been saved to the DB yet) |
217 | 217 | */ |
218 | - function delete_child_line_item( $code, $stop_search_once_found = true ); |
|
218 | + function delete_child_line_item($code, $stop_search_once_found = true); |
|
219 | 219 | |
220 | 220 | /** |
221 | 221 | * Forgets the cached model of the given relation Name. So the next time we request it, |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | * @param boolean $allow_persist |
239 | 239 | * @return boolean |
240 | 240 | */ |
241 | - function set_allow_persist( $allow_persist ); |
|
241 | + function set_allow_persist($allow_persist); |
|
242 | 242 | |
243 | 243 | |
244 | 244 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @param \EEI_Line_Item $line_item |
27 | 27 | * @return \EEI_Line_Item |
28 | 28 | */ |
29 | - public function process( EEI_Line_Item $line_item ); |
|
29 | + public function process(EEI_Line_Item $line_item); |
|
30 | 30 | |
31 | 31 | |
32 | 32 |
@@ -1,20 +1,20 @@ discard block |
||
1 | 1 | <?php |
2 | -class EE_Sample_Form extends EE_Form_Section_Proper{ |
|
3 | - function __construct(){ |
|
2 | +class EE_Sample_Form extends EE_Form_Section_Proper { |
|
3 | + function __construct() { |
|
4 | 4 | $this->_subsections = array( |
5 | 5 | 'h1'=>new EE_Form_Section_HTML('hello wordl'), |
6 | - 'name'=>new EE_Text_Input(array('required'=>true,'default'=>'your name here')), |
|
6 | + 'name'=>new EE_Text_Input(array('required'=>true, 'default'=>'your name here')), |
|
7 | 7 | 'email'=>new EE_Email_Input(array('required'=>false)), |
8 | - 'shirt_size'=>new EE_Select_Input(array(''=>'Please select...', 's'=> __("Small", "event_espresso"),'m'=> __("Medium", "event_espresso"),'l'=> __("Large", "event_espresso")),array('required'=>true,'default'=>'s')), |
|
8 | + 'shirt_size'=>new EE_Select_Input(array(''=>'Please select...', 's'=> __("Small", "event_espresso"), 'm'=> __("Medium", "event_espresso"), 'l'=> __("Large", "event_espresso")), array('required'=>true, 'default'=>'s')), |
|
9 | 9 | 'month_normal'=>new EE_Month_Input(), |
10 | 10 | 'month_leading_zero'=>new EE_Month_Input(true), |
11 | 11 | 'year_2'=>new EE_Year_Input(false, 1, 1), |
12 | - 'year_4'=>new EE_Year_Input(true, 0,10,array('default'=>'2017')), |
|
12 | + 'year_4'=>new EE_Year_Input(true, 0, 10, array('default'=>'2017')), |
|
13 | 13 | 'yes_no'=>new EE_Yes_No_Input(array('html_label_text'=> __("Yes or No", "event_espresso"))), |
14 | 14 | 'credit_card'=>new EE_Credit_Card_Input(), |
15 | 15 | 'image_1'=>new EE_Admin_File_Uploader_Input(), |
16 | 16 | 'image_2'=>new EE_Admin_File_Uploader_Input(), |
17 | - 'skillz'=>new EE_Checkbox_Multi_Input(array('php'=>'PHP','mysql'=>'MYSQL'),array('default'=>array('php'))), |
|
17 | + 'skillz'=>new EE_Checkbox_Multi_Input(array('php'=>'PHP', 'mysql'=>'MYSQL'), array('default'=>array('php'))), |
|
18 | 18 | 'float'=>new EE_Float_Input(), |
19 | 19 | 'essay'=>new EE_Text_Area_Input(), |
20 | 20 | 'amenities'=>new EE_Select_Multiple_Input( |
@@ -40,16 +40,16 @@ discard block |
||
40 | 40 | * Extra validation for the 'name' input. |
41 | 41 | * @param EE_Text_Input $form_input |
42 | 42 | */ |
43 | - function _validate_name($form_input){ |
|
44 | - if($form_input->raw_value() != 'Mike'){ |
|
43 | + function _validate_name($form_input) { |
|
44 | + if ($form_input->raw_value() != 'Mike') { |
|
45 | 45 | $form_input->add_validation_error(__("You are not mike. You must be brent or darren. Thats ok, I guess", 'event_espresso'), 'not-mike'); |
46 | 46 | } |
47 | 47 | } |
48 | 48 | |
49 | - function _validate(){ |
|
49 | + function _validate() { |
|
50 | 50 | parent::_validate(); |
51 | - if($this->_subsections['shirt_size']->normalized_value() =='s' |
|
52 | - && $this->_subsections['year_4']->normalized_value() < 2010){ |
|
51 | + if ($this->_subsections['shirt_size']->normalized_value() == 's' |
|
52 | + && $this->_subsections['year_4']->normalized_value() < 2010) { |
|
53 | 53 | $this->add_validation_error(__("If you want a small shirt, you should be born after 2010. Otherwise theyre just too big", 'event_espresso'), 'too-old'); |
54 | 54 | } |
55 | 55 | } |
@@ -2,16 +2,16 @@ |
||
2 | 2 | if (!defined('EVENT_ESPRESSO_VERSION')) |
3 | 3 | exit('No direct script access allowed'); |
4 | 4 | /** |
5 | - * EE_Form_Section_HTML |
|
6 | - * HTML to be laid out like a proper subsection |
|
7 | - * |
|
8 | - * |
|
9 | - * @package Event Espresso |
|
10 | - * @subpackage |
|
11 | - * @author Mike Nelson |
|
12 | - * |
|
13 | - * ------------------------------------------------------------------------ |
|
14 | - */ |
|
5 | + * EE_Form_Section_HTML |
|
6 | + * HTML to be laid out like a proper subsection |
|
7 | + * |
|
8 | + * |
|
9 | + * @package Event Espresso |
|
10 | + * @subpackage |
|
11 | + * @author Mike Nelson |
|
12 | + * |
|
13 | + * ------------------------------------------------------------------------ |
|
14 | + */ |
|
15 | 15 | class EE_Form_Section_HTML extends EE_Form_Section_Base{ |
16 | 16 | |
17 | 17 | protected $_html = ''; |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('No direct script access allowed'); |
4 | 4 | /** |
5 | 5 | * EE_Form_Section_HTML |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * |
13 | 13 | * ------------------------------------------------------------------------ |
14 | 14 | */ |
15 | -class EE_Form_Section_HTML extends EE_Form_Section_Base{ |
|
15 | +class EE_Form_Section_HTML extends EE_Form_Section_Base { |
|
16 | 16 | |
17 | 17 | protected $_html = ''; |
18 | 18 | |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | * @param string $html |
23 | 23 | * @param array $options_array |
24 | 24 | */ |
25 | - public function __construct( $html = '', $options_array = array() ) { |
|
25 | + public function __construct($html = '', $options_array = array()) { |
|
26 | 26 | $this->_html = $html; |
27 | - parent::__construct( $options_array ); |
|
27 | + parent::__construct($options_array); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | /** |
6 | 7 | * Event Espresso |
7 | 8 | * |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -25,10 +25,10 @@ discard block |
||
25 | 25 | * |
26 | 26 | * ------------------------------------------------------------------------ |
27 | 27 | */ |
28 | -class EE_Form_Section_HTML_From_Template extends EE_Form_Section_HTML{ |
|
29 | - public function __construct($template_file,$args = array(), $options_array = array()) { |
|
28 | +class EE_Form_Section_HTML_From_Template extends EE_Form_Section_HTML { |
|
29 | + public function __construct($template_file, $args = array(), $options_array = array()) { |
|
30 | 30 | EE_Registry::instance()->load_helper('Template'); |
31 | - $html = EEH_Template::locate_template( $template_file, $args ); |
|
31 | + $html = EEH_Template::locate_template($template_file, $args); |
|
32 | 32 | |
33 | 33 | // echo " filepath:$template_file html $html"; |
34 | 34 | parent::__construct($html, $options_array); |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | /** |
6 | 7 | * Event Espresso |
7 | 8 | * |