Opal-Estate-Pro/inc/taxonomies/class-taxonomy-locations.php
2019-09-10 11:27:33 +07:00

153 lines
4.5 KiB
PHP
Executable File

<?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_Taxonomy_Location {
/**
*
*/
public function __construct() {
add_action( 'init', [ $this, 'definition' ] );
add_filter( 'opalestate_taxomony_location_metaboxes', [ $this, 'metaboxes' ] );
add_action( 'cmb2_admin_init', [ $this, 'taxonomy_metaboxes' ] );
}
/**
*
*/
public function definition() {
$labels = [
'name' => esc_html__( 'Countries', 'opalestate-pro' ),
'singular_name' => esc_html__( 'Properties By Country', 'opalestate-pro' ),
'search_items' => esc_html__( 'Search Countries', 'opalestate-pro' ),
'all_items' => esc_html__( 'All Countries', 'opalestate-pro' ),
'parent_item' => esc_html__( 'Parent Country', 'opalestate-pro' ),
'parent_item_colon' => esc_html__( 'Parent Country:', 'opalestate-pro' ),
'edit_item' => esc_html__( 'Edit Country', 'opalestate-pro' ),
'update_item' => esc_html__( 'Update Country', 'opalestate-pro' ),
'add_new_item' => esc_html__( 'Add New Country', 'opalestate-pro' ),
'new_item_name' => esc_html__( 'New Country', 'opalestate-pro' ),
'menu_name' => esc_html__( 'Countries', 'opalestate-pro' ),
];
register_taxonomy( 'opalestate_location', 'opalestate_property', [
'labels' => apply_filters( 'opalestate_taxomony_location_labels', $labels ),
'hierarchical' => true,
'query_var' => 'location',
'rewrite' => [ 'slug' => esc_html__( 'location', 'opalestate-pro' ) ],
'public' => true,
'show_ui' => true,
] );
}
/**
*
*/
public function metaboxes() {
}
/**
* Hook in and add a metabox to add fields to taxonomy terms
*/
public function taxonomy_metaboxes() {
$prefix = 'opalestate_location_';
/**
* Metabox to add fields to categories and tags
*/
$cmb_term = new_cmb2_box( [
'id' => $prefix . 'edit',
'title' => esc_html__( 'Country Metabox', 'opalestate-pro' ), // Doesn't output for term boxes
'object_types' => [ 'term' ], // Tells CMB2 to use term_meta vs post_meta
'taxonomies' => [ 'opalestate_location' ], // Tells CMB2 which taxonomies should have these fields
// 'new_term_section' => true, // Will display in the "Add New Category" section
] );
$cmb_term->add_field( [
'name' => esc_html__( 'Image', 'opalestate-pro' ),
'desc' => esc_html__( 'Country image', 'opalestate-pro' ),
'id' => $prefix . 'image',
'type' => 'file',
'preview_size' => 'small',
'options' => [
'url' => false, // Hide the text input for the url
],
] );
}
/**
*
*/
public static function get_list() {
return get_terms( 'opalestate_location', [ 'hide_empty' => false ] );
}
/**
*
*/
public static function dropdown_agents_list( $selected = 0 ) {
$id = "opalestate_location" . rand();
$args = [
'show_option_none' => esc_html__( 'Select Country', 'opalestate-pro' ),
'id' => $id,
'class' => 'form-control',
'name' => 'location',
'show_count' => 0,
'hierarchical' => '',
'selected' => $selected,
'value_field' => 'slug',
'taxonomy' => 'opalestate_agent_location',
];
return wp_dropdown_categories( $args );
}
/**
*
*/
public static function dropdown_list( $selected = 0 ) {
$id = 'opalestate_location' . rand();
$args = [
'show_option_none' => esc_html__( 'Select Country', 'opalestate-pro' ),
'id' => $id,
'class' => 'form-control',
'name' => 'location',
'show_count' => 0,
'hierarchical' => '',
'selected' => $selected,
'value_field' => 'slug',
'taxonomy' => 'opalestate_location',
'orderby' => 'name',
'order' => 'ASC',
'echo' => 0,
];
$label = '<label class="opalestate-label opalestate-label--country" for="' . esc_attr( $id ) . '">' . esc_html__( 'Country', 'opalestate-pro' ) . '</label>';
echo $label . wp_dropdown_categories( $args );
}
public static function get_multi_check_list() {
}
}
new Opalestate_Taxonomy_Location();