Opal-Estate-Pro/inc/admin/property/class-property.php

165 lines
4.4 KiB
PHP
Raw Normal View History

2019-09-10 06:27:33 +02:00
<?php
/**
* $Desc$
*
* @version $Id$
* @package opalestate
* @author Opal Team <info@wpopal.com >
* @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* @website http://www.wpopal.com
* @support http://www.wpopal.com/support/forum.html
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Opalestate_Admin_Property {
/**
* @var $tab
*/
private $tab;
/**
* Opalestate_Admin_Property constructor.
*/
public function __construct() {
add_filter( 'cmb2_admin_init', [ $this, 'metaboxes' ] );
add_action( 'transition_opalestate_property_status', [ $this, 'process_publish_property' ], 10, 1 );
/* property column */
add_filter( 'manage_opalestate_property_posts_columns', [ $this, 'columns' ] );
add_action( 'manage_opalestate_property_posts_custom_column', [ $this, 'custom_columns' ], 10, 2 );
add_action( 'admin_menu', [ $this, 'remove_meta_boxes' ] );
// add_action( 'transition_post_status', array( __CLASS__, 'save_post' ), 10, 3 );
}
2019-09-30 11:28:04 +02:00
2019-09-10 06:27:33 +02:00
/**
*
*/
public static function save_post( $new_status, $old_status, $post ){
if ( $new_status == 'publish' && $post->post_type == "opalestate_property" ) {
$user_id = $post->post_author;
$user = get_user_by( 'id', $user_id );
if ( ! is_object( $user ) ) {
$from_name = opalestate_get_option( 'from_name' );
$from_email = opalestate_get_option( 'from_email' );
$subject = opalestate_get_option( 'publish_submission_email_subject' );
$headers = sprintf( "From: %s <%s>\r\n Content-type: text/html", $from_name, $from_email );
$property_link = get_permalink( $post );
$tags = [ "{first_name}", "{last_name}", "{property_link}" ];
$values = [ $user->first_name, $user->last_name, $property_link ];
$body = opalestate_get_option( 'publish_submission_email_body' );
$body = html_entity_decode( $body );
$message = str_replace( $tags, $values, $body );
return wp_mail( $user->user_email, $subject, $message, $headers );
}
}
}
/**
*
*/
public function metaboxes() {
global $pagenow;
if ( ( $pagenow == 'post.php' || $pagenow == 'post-new.php' ) ) {
$metabox = new Opalestate_Property_MetaBox();
return $metabox->register_admin_fields();
}
}
private function add_fields_to_tab( $fields, $tab ) {
foreach ( $fields as $field ) {
$field['tab'] = $tab;
$field['render_row_cb'] = [ 'CMB2_Tabs', 'tabs_render_row_cb' ];
$this->tab->add_field( $field );
}
}
/**
*
*/
public function columns( $columns ) {
$comments = $columns['comments'];
unset( $columns['author'], $columns['date'], $columns['comments'] );
$columns['featured'] = esc_html__( 'Featured', 'opalestate-pro' );
$columns['sku'] = esc_html__( 'Sku', 'opalestate-pro' );
$columns['address'] = esc_html__( 'Address', 'opalestate-pro' );
$columns['comments'] = $comments;
$columns['author'] = esc_html__( 'Author', 'opalestate-pro' );
$columns['date'] = esc_html__( 'Date', 'opalestate-pro' );
return $columns;
}
/**
*
*/
public function custom_columns( $column, $post_id ) {
$property = new Opalestate_Property( $post_id );
$nonce = wp_create_nonce( 'opalestate_property' );
switch ( $column ) {
case 'featured':
if ( $property->featured ) {
$url = add_query_arg( [
'action' => 'opalestate_remove_feature_property',
'property_id' => $post_id,
'nonce' => $nonce,
], admin_url( 'admin-ajax.php' ) );
echo '<a href="' . esc_url( $url ) . '">';
echo '<i class="dashicons dashicons-star-filled"></i>';
echo '</a>';
} else {
$url = add_query_arg( [
'action' => 'opalestate_set_feature_property',
'property_id' => $post_id,
'nonce' => $nonce,
], admin_url( 'admin-ajax.php' ) );
echo '<a href="' . esc_url( $url ) . '">';
echo '<i class="dashicons dashicons-star-empty"></i>';
echo '</a>';
}
break;
case 'sku':
if ( $property->sku ) {
echo sprintf( '%s', $property->sku );
}
break;
case 'address':
if ( $property->address ) {
echo sprintf( '%s', $property->address );
}
break;
default:
# code...
break;
}
}
public function remove_meta_boxes() {
remove_meta_box( 'authordiv', 'opalestate_property', 'normal' );
}
}
new Opalestate_Admin_Property();
?>