94 lines
2.4 KiB
PHP
94 lines
2.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @author OnTheGo Systems
|
|
*/
|
|
class WPML_Term_Element extends WPML_Translation_Element {
|
|
/** @var string Taxonomy name */
|
|
protected $taxonomy;
|
|
|
|
/**
|
|
* WPML_Term_Element constructor.
|
|
*
|
|
* @param int $id term_id of Term Element.
|
|
* @param SitePress $sitepress
|
|
* @param string $taxonomy
|
|
* @param WPML_WP_Cache $wpml_cache
|
|
*/
|
|
public function __construct( $id, SitePress $sitepress, $taxonomy = '', WPML_WP_Cache $wpml_cache = null ) {
|
|
$this->taxonomy = $taxonomy;
|
|
parent::__construct( $id, $sitepress, $wpml_cache );
|
|
}
|
|
|
|
/**
|
|
* @return array|null|WP_Error|WP_Term
|
|
*/
|
|
public function get_wp_object() {
|
|
$has_filter = remove_filter( 'get_term', array( $this->sitepress, 'get_term_adjust_id' ), 1 );
|
|
|
|
$term = get_term( $this->id, $this->taxonomy );
|
|
if ( ! $term || is_wp_error( $term ) ) {
|
|
$term = get_term_by( 'term_taxonomy_id', $this->id, $this->taxonomy );
|
|
$term = $term ?: null;
|
|
}
|
|
|
|
if ( $has_filter ) {
|
|
add_filter( 'get_term', array( $this->sitepress, 'get_term_adjust_id' ), 1, 1 );
|
|
}
|
|
|
|
return $term;
|
|
}
|
|
|
|
/**
|
|
* @param WP_Term $term
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_type( $term = null ) {
|
|
if ( ! $this->taxonomy && $term && ! is_wp_error( $term ) ) {
|
|
$this->taxonomy = $term->taxonomy;
|
|
}
|
|
|
|
return $this->taxonomy;
|
|
}
|
|
|
|
public function get_wpml_element_type() {
|
|
$element_type = '';
|
|
if ( ! is_wp_error( $this->get_wp_element_type() ) ) {
|
|
$element_type = 'tax_' . $this->get_wp_element_type();
|
|
}
|
|
|
|
return $element_type;
|
|
}
|
|
|
|
public function get_element_id() {
|
|
$element_id = null;
|
|
$term = $this->get_wp_object();
|
|
|
|
if ( $term && ! is_wp_error( $term ) ) {
|
|
$element_id = $term->term_taxonomy_id;
|
|
}
|
|
|
|
return $element_id;
|
|
}
|
|
|
|
/**
|
|
* @param null|stdClass $element_data null, or a standard object containing at least the `translation_id`, `language_code`, `element_id`, `source_language_code`, `element_type`, and `original` properties.
|
|
*
|
|
* @return WPML_Term_Element
|
|
* @throws \InvalidArgumentException Exception.
|
|
*/
|
|
public function get_new_instance( $element_data ) {
|
|
return new WPML_Term_Element( $element_data->element_id, $this->sitepress, $this->taxonomy, $this->wpml_cache );
|
|
}
|
|
|
|
public function is_translatable() {
|
|
return $this->sitepress->is_translated_taxonomy( $this->get_wp_element_type() );
|
|
}
|
|
|
|
public function is_display_as_translated() {
|
|
return $this->sitepress->is_display_as_translated_taxonomy( $this->get_wp_element_type() );
|
|
}
|
|
|
|
}
|