whoami7 - Manager
:
/
home
/
techyfnq
/
public_html
/
wp-content
/
plugins
/
site-reviews
/
plugin
/
Modules
/
Multilingual
/
Upload File:
files >> //home/techyfnq/public_html/wp-content/plugins/site-reviews/plugin/Modules/Multilingual/Wpml.php
<?php namespace GeminiLabs\SiteReviews\Modules\Multilingual; use GeminiLabs\SiteReviews\Contracts\MultilingualContract as Contract; use GeminiLabs\SiteReviews\Database\OptionManager; use GeminiLabs\SiteReviews\Helper; use GeminiLabs\SiteReviews\Helpers\Arr; class Wpml implements Contract { public $pluginName = 'WPML'; public $supportedVersion = '3.3.5'; /** * {@inheritdoc} */ public function getPostId($postId) { $postId = trim($postId); if (!is_numeric($postId)) { return 0; } if ($this->isEnabled()) { $postId = apply_filters('wpml_object_id', $postId, 'any', true); } return intval($postId); } /** * {@inheritdoc} */ public function getPostIds(array $postIds) { if (!$this->isEnabled()) { return $postIds; } $newPostIds = []; foreach (Arr::uniqueInt($postIds) as $postId) { $postType = get_post_type($postId); if (!$postType) { continue; } $elementType = 'post_'.$postType; $trid = apply_filters('wpml_element_trid', null, $postId, $elementType); $translations = apply_filters('wpml_get_element_translations', null, $trid, $elementType); if (!is_array($translations)) { $translations = []; } $translatedPostIds = array_values(wp_list_pluck($translations, 'element_id')); $newPostIds = array_merge($newPostIds, $translatedPostIds); } return Arr::uniqueInt($newPostIds); } /** * {@inheritdoc} */ public function isActive() { return defined('ICL_SITEPRESS_VERSION'); } /** * {@inheritdoc} */ public function isEnabled() { return $this->isActive() && 'wpml' === glsr(OptionManager::class)->get('settings.general.multilingual'); } /** * {@inheritdoc} */ public function isSupported() { return $this->isActive() && Helper::isGreaterThanOrEqual(ICL_SITEPRESS_VERSION, $this->supportedVersion); } }
Copyright ©2021 || Defacer Indonesia