This repository was archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathclass-agentpress-listings.php
426 lines (346 loc) · 11.9 KB
/
class-agentpress-listings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<?php
/**
* This file contains the AgentPress_Listings class.
*
* @package agentpress-listings
*/
/**
* This class handles the creation of the "Listings" post type, and creates a
* UI to display the Listing-specific data on the admin screens.
*/
class AgentPress_Listings {
/**
* Settings field.
*
* @var string
*/
public $settings_field = 'agentpress_taxonomies';
/**
* Menu page.
*
* @var string
*/
public $menu_page = 'register-taxonomies';
/**
* Property details array.
*
* @var array
*/
public $property_details;
/**
* Allowed tags.
*
* @var array
*/
public $allowed_tags;
/**
* Construct Method.
*/
public function __construct() {
$this->property_details = apply_filters(
'agentpress_property_details',
array(
'col1' => array(
__( 'Price:', 'agentpress-listings' ) => '_listing_price',
__( 'Address:', 'agentpress-listings' ) => '_listing_address',
__( 'City:', 'agentpress-listings' ) => '_listing_city',
__( 'State:', 'agentpress-listings' ) => '_listing_state',
__( 'ZIP:', 'agentpress-listings' ) => '_listing_zip',
),
'col2' => array(
__( 'MLS #:', 'agentpress-listings' ) => '_listing_mls',
__( 'Square Feet:', 'agentpress-listings' ) => '_listing_sqft',
__( 'Bedrooms:', 'agentpress-listings' ) => '_listing_bedrooms',
__( 'Bathrooms:', 'agentpress-listings' ) => '_listing_bathrooms',
__( 'Basement:', 'agentpress-listings' ) => '_listing_basement',
),
)
);
$this->allowed_tags = apply_filters(
'agentpress_featured_listings_allowed_html',
array(
'p' => array(),
'label' => array(),
'br' => array(),
'input' => array(
'type' => array(),
'name' => array(),
'value' => array(),
),
'iframe' => array(
'allow' => array(),
'allowfullscreen' => array(),
'csp' => array(),
'height' => array(),
'importance' => array(),
'name' => array(),
'referrerpolicy' => array(),
'sandbox' => array(),
'src' => array(),
'srcdoc' => array(),
'width' => array(),
'align' => array(),
'frameborder' => array(),
'longdes' => array(),
'marginheight' => array(),
'marginwidth' => array(),
'scrolling' => array(),
'class' => array(),
'id' => array(),
'style' => array(),
'title' => array(),
'role' => array(),
'data-*' => array(),
),
)
);
add_action( 'init', array( $this, 'create_post_type' ) );
add_filter( 'manage_edit-listing_columns', array( $this, 'columns_filter' ) );
add_action( 'manage_posts_custom_column', array( $this, 'columns_data' ) );
add_action( 'admin_menu', array( $this, 'register_meta_boxes' ), 5 );
add_action( 'save_post', array( $this, 'metabox_save' ), 1, 2 );
add_shortcode( 'property_details', array( $this, 'property_details_shortcode' ) );
add_shortcode( 'property_map', array( $this, 'property_map_shortcode' ) );
add_shortcode( 'property_video', array( $this, 'property_video_shortcode' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_js' ) );
add_filter( 'search_template', array( $this, 'search_template' ) );
add_filter( 'genesis_build_crumbs', array( $this, 'breadcrumbs' ), 10, 2 );
}
/**
* Creates our "Listing" post type.
*/
public function create_post_type() {
$args = apply_filters(
'agentpress_listings_post_type_args',
array(
'labels' => array(
'name' => __( 'Listings', 'agentpress-listings' ),
'singular_name' => __( 'Listing', 'agentpress-listings' ),
'add_new' => __( 'Add New', 'agentpress-listings' ),
'add_new_item' => __( 'Add New Listing', 'agentpress-listings' ),
'edit' => __( 'Edit', 'agentpress-listings' ),
'edit_item' => __( 'Edit Listing', 'agentpress-listings' ),
'new_item' => __( 'New Listing', 'agentpress-listings' ),
'view' => __( 'View Listing', 'agentpress-listings' ),
'view_item' => __( 'View Listing', 'agentpress-listings' ),
'search_items' => __( 'Search Listings', 'agentpress-listings' ),
'not_found' => __( 'No listings found', 'agentpress-listings' ),
'not_found_in_trash' => __( 'No listings found in Trash', 'agentpress-listings' ),
),
'public' => true,
'query_var' => true,
'menu_position' => 6,
'menu_icon' => 'dashicons-admin-home',
'has_archive' => true,
'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'genesis-seo', 'genesis-layouts', 'genesis-simple-sidebars' ),
'rewrite' => array( 'slug' => 'listings' ),
)
);
register_post_type( 'listing', $args );
}
/**
* Register meta boxes.
*/
public function register_meta_boxes() {
add_meta_box( 'listing_details_metabox', __( 'Property Details', 'agentpress-listings' ), array( &$this, 'listing_details_metabox' ), 'listing', 'normal', 'high' );
}
/**
* Includes the metabox details view file.
*/
public function listing_details_metabox() {
include dirname( __FILE__ ) . '/views/listing-details-metabox.php';
}
/**
* Save action.
*
* @param string $post_id Post Id.
* @param array $post Post.
*/
public function metabox_save( $post_id, $post ) {
if ( ! isset( $_POST['agentpress_details_metabox_nonce'] ) || ! isset( $_POST['ap'] ) ) {
return;
}
/** Verify the nonce */
if ( ! isset( $_POST['agentpress_details_metabox_nonce'] ) || ! wp_verify_nonce( sanitize_key( $_POST['agentpress_details_metabox_nonce'] ), 'agentpress_details_metabox_save' ) ) {
return;
}
/** Run only on listings post type save */
if ( 'listing' !== $post->post_type ) {
return;
}
// Don't try to save the data under autosave, ajax, or future post.
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
return;
}
// Check permissions.
if ( ! current_user_can( 'edit_post', $post_id ) ) {
return;
}
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
$property_details = (array) wp_unslash( $_POST['ap'] );
array_walk( $property_details, array( $this, 'sanitize_detail' ) );
/** Store the custom fields */
foreach ( (array) $property_details as $key => $value ) {
/** Save/Update/Delete */
if ( $value ) {
update_post_meta( $post->ID, $key, $value );
} else {
delete_post_meta( $post->ID, $key );
}
}
// Extra check for price that can create a sortable value.
if ( isset( $property_details['_listing_price'] ) && ! empty( $property_details['_listing_price'] ) ) {
$price_sortable = preg_replace( '/[^0-9\.]/', '', $property_details['_listing_price'] );
update_post_meta( $post_id, '_listing_price_sortable', floatval( $price_sortable ) );
} else {
delete_post_meta( $post_id, '_listing_price_sortable' );
}
}
/**
* Filter the columns in the "Listings" screen, define our own.
*
* @param array $columns Columns data.
* @return array Modified columns data.
*/
public function columns_filter( $columns ) {
$columns = array(
'cb' => '<input type="checkbox" />',
'listing_thumbnail' => __( 'Thumbnail', 'agentpress-listings' ),
'title' => __( 'Listing Title', 'agentpress-listings' ),
'listing_details' => __( 'Details', 'agentpress-listings' ),
'listing_features' => __( 'Features', 'agentpress-listings' ),
'listing_categories' => __( 'Categories', 'agentpress-listings' ),
);
return $columns;
}
/**
* Filter the data that shows up in the columns in the "Listings" screen, define our own.
*
* @param string $column Columns.
*/
public function columns_data( $column ) {
global $post, $wp_taxonomies;
$allowed_tags = array(
'img' => array(
'width' => array(),
'height' => array(),
'src' => array(),
'class' => array(),
'alt' => array(),
'srcset' => array(),
'sizes' => array(),
),
);
switch ( $column ) {
case 'listing_thumbnail':
printf( '<p>%s</p>', wp_kses( genesis_get_image( array( 'size' => 'thumbnail' ) ), $allowed_tags ) );
break;
case 'listing_details':
foreach ( (array) $this->property_details['col1'] as $label => $key ) {
printf( '<b>%s</b> %s<br />', esc_html( $label ), wp_kses( get_post_meta( $post->ID, $key, true ), $this->allowed_tags ) );
}
foreach ( (array) $this->property_details['col2'] as $label => $key ) {
printf( '<b>%s</b> %s<br />', esc_html( $label ), wp_kses( get_post_meta( $post->ID, $key, true ), $this->allowed_tags ) );
}
break;
case 'listing_features':
echo get_the_term_list( $post->ID, 'features', '', ', ', '' );
break;
case 'listing_categories':
foreach ( (array) get_option( $this->settings_field ) as $key => $data ) {
printf( '<b>%s:</b> %s<br />', esc_html( $data['labels']['singular_name'] ), get_the_term_list( $post->ID, $key, '', ', ', '' ) );
}
break;
}
}
/**
* Shortcode.
*
* @param array $atts Attributes.
*/
public function property_details_shortcode( $atts ) {
global $post;
$output = '';
$output .= '<div class="property-details">';
$output .= '<div class="property-details-col1 one-half first">';
foreach ( (array) $this->property_details['col1'] as $label => $key ) {
$output .= sprintf( '<b>%s</b> %s<br />', esc_html( $label ), wp_kses( get_post_meta( $post->ID, $key, true ), $this->allowed_tags ) );
}
$output .= '</div><div class="property-details-col2 one-half">';
foreach ( (array) $this->property_details['col2'] as $label => $key ) {
$output .= sprintf( '<b>%s</b> %s<br />', esc_html( $label ), wp_kses( get_post_meta( $post->ID, $key, true ), $this->allowed_tags ) );
}
$output .= '</div><div class="clear">';
$output .= sprintf( '<p><b>%s</b><br /> %s</p></div>', __( 'Additional Features:', 'agentpress-listings' ), get_the_term_list( $post->ID, 'features', '', ', ', '' ) );
$output .= '</div>';
return $output;
}
/**
* Map shortcode.
*
* @param array $atts Attributes.
*/
public function property_map_shortcode( $atts ) {
return genesis_get_custom_field( '_listing_map' );
}
/**
* Video shortcode.
*
* @param array $atts Attributes.
*/
public function property_video_shortcode( $atts ) {
return genesis_get_custom_field( '_listing_video' );
}
/**
* Enqueue the JavaScript.
*/
public function admin_js() {
wp_enqueue_script( 'accesspress-admin-js', APL_URL . 'includes/js/admin.js', array(), APL_VERSION, true );
}
/**
* Search templates.
*
* @param array $template Template.
* @return string|array The template filename or the original template data.
*/
public function search_template( $template ) {
$post_type = get_query_var( 'post_type' );
if ( is_array( $post_type ) || 'listing' !== $post_type ) {
return $template;
}
$listing_template = locate_template( array( 'archive-listing.php' ), false );
return $listing_template ? $listing_template : $template;
}
/**
* Breadcrumbs.
*
* @param array $crumbs Breadcrumbs.
* @param array $args Arguments.
*
* @return array Breadcrumbs.
*/
public function breadcrumbs( $crumbs, $args ) {
$post_type = get_query_var( 'post_type' );
if ( is_array( $post_type ) || 'listing' !== $post_type ) {
return $crumbs;
}
array_pop( $crumbs );
$crumbs[] = __( 'Listing Search Results', 'agentpress-listings' );
return $crumbs;
}
/**
* Callback for `array_walk` to sanitize property details during save.
*
* @param string $detail The property meta data.
* @param mixed $key Key, unused.
*/
protected function sanitize_detail( &$detail, $key ) {
$detail = wp_kses( $detail, (array) $this->allowed_tags );
}
}