Update shortcodes.
This commit is contained in:
parent
48f08a674e
commit
bc7e0cf458
@ -17,11 +17,11 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @class OpalEstate_Shortcodes
|
* @class OpalEstate_Shortcodes
|
||||||
*
|
*
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
class OpalEstate_Shortcodes{
|
class OpalEstate_Shortcodes {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Static $shortcodes
|
* Static $shortcodes
|
||||||
@ -31,92 +31,103 @@ class OpalEstate_Shortcodes{
|
|||||||
/**
|
/**
|
||||||
* defined list of shortcode and functions of this for each.
|
* defined list of shortcode and functions of this for each.
|
||||||
*/
|
*/
|
||||||
public function __construct(){
|
public function __construct() {
|
||||||
|
|
||||||
$this->shortcodes = array(
|
$this->shortcodes = [
|
||||||
|
|
||||||
'search_properties_result' => array( 'code' => 'search_properties_result', 'label' => esc_html__( 'Search Properties Result', 'opalestate-pro' ) ),
|
'search_properties_form' => [ 'code' => 'search_properties_form', 'label' => esc_html__( 'Search Properties Form', 'opalestate-pro' ) ],
|
||||||
'search_properties' => array( 'code' => 'search_properties', 'label' => esc_html__( 'Search Properties', 'opalestate-pro' ) ),
|
'properties' => [ 'code' => 'properties', 'label' => esc_html__( 'Properties', 'opalestate-pro' ) ],
|
||||||
'search_properties_v' => array( 'code' => 'search_properties_v', 'label' => esc_html__( 'Search Properties Vertical', 'opalestate-pro' ) ),
|
'search_properties_result' => [ 'code' => 'search_properties_result', 'label' => esc_html__( 'Search Properties Result', 'opalestate-pro' ) ],
|
||||||
|
'search_properties' => [ 'code' => 'search_properties', 'label' => esc_html__( 'Search Properties', 'opalestate-pro' ) ],
|
||||||
|
'search_properties_v' => [ 'code' => 'search_properties_v', 'label' => esc_html__( 'Search Properties Vertical', 'opalestate-pro' ) ],
|
||||||
|
|
||||||
'search_map_properties' => array( 'code' => 'search_map_properties', 'label' => esc_html__( 'Search Map Properties', 'opalestate-pro' ) ),
|
'search_map_properties' => [ 'code' => 'search_map_properties', 'label' => esc_html__( 'Search Map Properties', 'opalestate-pro' ) ],
|
||||||
'ajax_map_search' => array( 'code' => 'ajax_map_search', 'label' => esc_html__( 'Ajax Search Map Properties', 'opalestate-pro' ) ),
|
'ajax_map_search' => [ 'code' => 'ajax_map_search', 'label' => esc_html__( 'Ajax Search Map Properties', 'opalestate-pro' ) ],
|
||||||
'ajax_map_quick_search' => array( 'code' => 'ajax_map_quick_search', 'label' => esc_html__( 'Ajax Search Map Properties', 'opalestate-pro' ) ),
|
'ajax_map_quick_search' => [ 'code' => 'ajax_map_quick_search', 'label' => esc_html__( 'Ajax Search Map Properties', 'opalestate-pro' ) ],
|
||||||
'register_form' => array( 'code' => 'register_form', 'label' => esc_html__( 'Register User Form', 'opalestate-pro' ) ),
|
'register_form' => [ 'code' => 'register_form', 'label' => esc_html__( 'Register User Form', 'opalestate-pro' ) ],
|
||||||
'login_form' => array( 'code' => 'login_form', 'label' => esc_html__( 'Login Form', 'opalestate-pro' ) ),
|
'login_form' => [ 'code' => 'login_form', 'label' => esc_html__( 'Login Form', 'opalestate-pro' ) ],
|
||||||
);
|
];
|
||||||
|
|
||||||
foreach( $this->shortcodes as $shortcode ){
|
foreach ( $this->shortcodes as $shortcode ) {
|
||||||
add_shortcode( 'opalestate_'.$shortcode['code'] , array( $this, $shortcode['code'] ) );
|
add_shortcode( 'opalestate_' . $shortcode['code'], [ $this, $shortcode['code'] ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( is_admin() ){
|
if ( is_admin() ) {
|
||||||
add_action( 'media_buttons', array( $this, 'shortcode_button' ) );
|
add_action( 'media_buttons', [ $this, 'shortcode_button' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function shortcode_button(){
|
public function shortcode_button() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function search_properties_result(){
|
public function search_properties_form() {
|
||||||
|
return opalestate_load_template_path( 'search-box/collapse-advanced' );
|
||||||
|
}
|
||||||
|
|
||||||
|
public function properties() {
|
||||||
|
return opalestate_load_template_path( 'shortcodes/properties' );
|
||||||
|
}
|
||||||
|
|
||||||
|
public function search_properties_result() {
|
||||||
return opalestate_load_template_path( 'shortcodes/search-properties-result' );
|
return opalestate_load_template_path( 'shortcodes/search-properties-result' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display all properties follow user when logined
|
* Display all properties follow user when logined
|
||||||
*/
|
*/
|
||||||
public function agent_property(){
|
public function agent_property() {
|
||||||
return opalestate_load_template_path( 'shortcodes/agent-property-listing' );
|
return opalestate_load_template_path( 'shortcodes/agent-property-listing' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render search property page with horizontal form and map
|
* Render search property page with horizontal form and map
|
||||||
*/
|
*/
|
||||||
public function search_properties(){
|
public function search_properties() {
|
||||||
return opalestate_load_template_path( 'shortcodes/search-properties', array( 'loop' => '') );
|
return opalestate_load_template_path( 'shortcodes/search-properties', [ 'loop' => '' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render search property page with vertical form and map
|
* Render search property page with vertical form and map
|
||||||
*/
|
*/
|
||||||
public function search_properties_v(){
|
public function search_properties_v() {
|
||||||
return opalestate_load_template_path( 'shortcodes/search-properties-v', array( 'loop' => '') );
|
return opalestate_load_template_path( 'shortcodes/search-properties-v', [ 'loop' => '' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function search_map_properties(){
|
public function search_map_properties() {
|
||||||
return opalestate_load_template_path( 'shortcodes/search-map-properties', array( 'loop' => '') );
|
return opalestate_load_template_path( 'shortcodes/search-map-properties', [ 'loop' => '' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function ajax_map_search(){
|
public function ajax_map_search() {
|
||||||
wp_enqueue_script( 'sticky-kit', OPALESTATE_PLUGIN_URL . 'assets/js/jquery.sticky-kit.min.js' );
|
wp_enqueue_script( 'sticky-kit', OPALESTATE_PLUGIN_URL . 'assets/js/jquery.sticky-kit.min.js' );
|
||||||
return opalestate_load_template_path( 'shortcodes/ajax-map-search', array( 'loop' => '') );
|
|
||||||
|
return opalestate_load_template_path( 'shortcodes/ajax-map-search', [ 'loop' => '' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function ajax_map_quick_search(){
|
public function ajax_map_quick_search() {
|
||||||
return opalestate_load_template_path( 'shortcodes/ajax-map-quick-search', array( 'loop' => '') );
|
return opalestate_load_template_path( 'shortcodes/ajax-map-quick-search', [ 'loop' => '' ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* register form show up */
|
/* register form show up */
|
||||||
public function register_form( $atts = array() ) {
|
public function register_form( $atts = [] ) {
|
||||||
$atts = shortcode_atts( array(
|
$atts = shortcode_atts( [
|
||||||
'message' => '',
|
'message' => '',
|
||||||
'redirect' => '',
|
'redirect' => '',
|
||||||
'hide_title' => false
|
'hide_title' => false,
|
||||||
), $atts );
|
], $atts );
|
||||||
|
|
||||||
return opalestate_load_template_path( 'user/register-form', $atts );
|
return opalestate_load_template_path( 'user/register-form', $atts );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* sign in show up */
|
/* sign in show up */
|
||||||
public function login_form( $atts = array() ) {
|
public function login_form( $atts = [] ) {
|
||||||
$atts = shortcode_atts( array(
|
$atts = shortcode_atts( [
|
||||||
'message' => '',
|
'message' => '',
|
||||||
'redirect' => '',
|
'redirect' => '',
|
||||||
'hide_title' => false
|
'hide_title' => false,
|
||||||
), $atts );
|
], $atts );
|
||||||
|
|
||||||
return opalestate_load_template_path( 'user/login-form', $atts );
|
return opalestate_load_template_path( 'user/login-form', $atts );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
24
templates/shortcodes/properties.php
Executable file
24
templates/shortcodes/properties.php
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$args = [
|
||||||
|
'posts_per_page' => -1,
|
||||||
|
];
|
||||||
|
|
||||||
|
$query = Opalestate_Query::get_property_query( $args );
|
||||||
|
|
||||||
|
$class = 'column-item';
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="opalesate-property-collection">
|
||||||
|
|
||||||
|
<?php if ( $query->have_posts() ): ?>
|
||||||
|
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
|
||||||
|
<div class="column-item">
|
||||||
|
<?php echo opalestate_load_template_path( 'content-property-grid-v2' ); ?>
|
||||||
|
</div>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
<?php else: ?>
|
||||||
|
<?php echo opalestate_load_template_path( 'content-no-results' ); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
<?php wp_reset_postdata(); ?>
|
Loading…
Reference in New Issue
Block a user