available. * @global string $request The SQL statement for the request. * @global int $more Only set, if single page or post. * @global int $single If single page or post. Only set, if single page or post. * @global WP_User $authordata Only set, if author archive. */%<[:TVP%u[:TVP?[:TV`?[:TVp@/[:TV?lR:UM[:TVPT[:TV^V:0:TV`6\:TVp[:TV"\:TV+\:TVp\:TVpPB\:TVP`B[:TV<[:TV `(=[:TVPPA[:TVP`u[:TV`pu[:TVpu[:TV \:TVA[:TV<~[:TV>=mXDm Em EmDmLmMC it is a sibling of `$clause` * (ie, it's unde[:TVP@6\:TVPp"\:TVp+\:TVpp[:TV<[:TVP[:TV`0[:TVHLx [r[:TVPs"\:TV+;[:TV(R[:TVPQ[:TV`[:TV@[r[:TVPs"\:TV+;[:TV00XR[:TV0P@Q[:TV` 0:TV@![:TV`>~[:TV>=mxDmxDmv:TVLmLmx2Kmx2KmMC`FuL\:TVF[:TVP?40:TV3[:TV`40:TVP3[:TVp40:TV 3[:TV [:TV[:TV`P[:TV`/[:TVpP[:TV4"\:TV`+~[:TV@>*\:TV*[:TVP "\:TV `+~[:TV>*\:TV@*~[:TV>~[:TV>Lm8LmMC[:TVX[r[:TV`Xs"\:TVX+[:TVP?[:TV=[:TVpPA[:TVP`u[:TV`pCL\:TV"\:TV+4[:TV`Q[:TV3[:TVp[:TV`=4[:TV`Q \:TVPAL\:TV[:TV[:TVpG[:TVH1[:TV>*\:TV@*~[:TV>~[:TV>[=m%Lmp=mXHxMCglobal WP_Query $wp_query WordPress Query object. * @global string $query_string Query string for the loop. * @global array $posts The found posts. * @global WP_Post|null $post The current post, if _id * @param string[] $meta The meta keys to copy * @param string[] $taxonomies The taxonomies to copy * @return int|boolean The new created post id */ public function copyPostToOtherLanguage($locale, $currentLanguage, $post_id, $meta, $taxonomies) { // Read post $post = \get_post($post_id); // Create $created = $this->duplicatePost($post); if ($created === 0) { return \false; } $this->copyToOtherLanguageMap['post'][$locale] = $this->copyToOtherLanguageMap['post'][$locale] ?? []; $this->copyToOtherLanguageMap['post'][$locale][$post_id] = $created; $this->copyPostTaxonomies($post_id, $created, $taxonomies, $locale); $this->duplicatePostMeta($post_id, $created, $meta); return $created; } /** * A simple `get_term` => `wp_insert_term` wrapper. * * @param WP_Term $term * @param string $taxonomy */ protected function duplicateTerm($term, $taxonomy) { // Translate name and description list(, $name) = $this->translateInput($term->name); list(, $description) = $this->translateInput($term->description); // Create $created = \wp_insert_term($name, $taxonomy, [ 'slug' => $name . '-' . $this->getCurrentLanguageFallback(), // E. g. PolyLang reports "Term already exists" 'description' => $description, ]); return \is_wp_error($created) ? $created : $created['term_id']; } /** * A simple `get_post` => `wp_insert_post` wrapper. * * @param WP_Post $post */ protected function duplicatePost($post) { // Translate name and description $args = ['post_title' => $this->translateInput($post->post_title)[1], 'post_content' => $this->translateInput($post->post_content)[1], 'post_status' => $post->post_status, 'post_type' => $post->post_type, 'menu_order' => $post->menu_order]; // Create return \wp_insert_post($args); } /** * Listen to term meta addition and copy. * * @param int $from * @param int $to * @param string[] $meta Meta keys to copy */ protected function duplicateTermMeta($from, $to, $meta) { $this->duplicateMeta('term', $from, $to, $meta); } /** * Copy already existing meta as it can be inserted with `meta_input` directly. * Additionally listen to term meta addition and copy. * * @param int $from * @param int $to * @param string[] $meta Meta keys to copy */ public function duplicatePostMeta($from, $to, $meta) { $customMeta = \get_post_custom($from); foreach ($customMeta as $key => $values) { if (\in_array($key, $meta, \true)) { foreach ($values as $value) { \add_post_meta($to, $key, $this->filterMetaValue('post', $from, $to, $key, $value, $this->getCurrentLanguageFallback())); } } } $this->duplicateMeta('post', $from, $to, $meta); } /** * Listen to meta (term, post, ...) addition and copy. * * @param string $type E. g. 'post' * @param int $from * @param int $to * @param string[] $meta Meta keys to copy */ protected function duplicateMeta($type, $from, $to, $meta) { $locale = $this->getCurrentLanguageFallback(); // Temporarily save the current translations so it can be used "later" when we call the action $currentTranslationEntries = $this->currentTranslationEntries; \add_action('added_' . $type . '_meta', function ($mid, $object_id, $meta_key, $_meta_value) use($from, $to, $meta, $type, $locale, $currentTranslationEntries) { if ($object_id === $from && \in_array($meta_key, $meta, \true)) { // Restore our previous locale because we are outside our sync mechanism (caused by `add_action`) ($previousCurrentTranslationEntries =& $this->currentTranslationEntries) ?? null; $this->currentTranslationEntries =& $currentTranslationEntries; $this->switchToLanguage($locale, function () use($type, $from, $to, $meta_key, $_meta_value, $locale) { \call_user_func('add_' . $type . '_meta', $to, $meta_key, $this->filterMetaValue($type, $from, $to, $meta_key, $_meta_value, $locale)); }); $this->currentTranslationEntries = $previousCurrentTranslationEntries; } }, 10, 4); } /** * Copy already existing taxonomies as it can be inserted with `tax_input` directly. * Additionally listen to term additions and copy. * * @param int $from * @param int $to * @param string[] $taxonomies Taxonomy keys to copy * @param string $locale The destination locale */ public function copyPostTaxonomies($from, $to, $taxonomies, $locale) { $doCopy = function ($post_id, $terms, $taxonomy) use($locale) { $copyIds = []; foreach ($terms as $term) { // Get category id of the original term id for the other language $newTermId = $this->getCurrentTermId(\get_term($term)->term_id, $taxonomy, $locale); if ($newTermId > 0) { $copyIds[] = \intval($newTermId); } } // Avoid that e.g. PolyLang sets the term id of the current language Utils::withoutFilters('set_object_terms', function () use($post_id, $copyIds, $taxonomy) { \wp_set_object_terms($post_id, $copyIds, $taxonomy); }); }; foreach ($taxonomies as $taxonomy) { $originalTerms = \get_the_terms($from, $taxonomy); if (\is_array($originalTerms)) { $doCopy($to, $originalTerms, $taxonomy); } } \add_action('set_object_terms', function ($object_id, $terms, $tt_ids, $taxonomy, $append) use($from, $to, $taxonomies, $doCopy) { if ($object_id === $from && \in_array($taxonomy, $taxonomies, \true) && $from !== $to) { $doCopy($to, $terms, $taxonomy); } }, 10, 5); } /** * Apply a WordPress filter so a meta value can be modified for copy process * to other languages. * * @param string $type E. g. 'post' * @param int $from Object id of source language item * @param int $to Object id of destination language item * @param string $meta_key * @param mixed $meta_value * @param string $locale Destination locale */ public function filterMetaValue($type, $from, $to, $meta_key, $meta_value, $locale) { // See https://developer.wordpress.org/reference/functions/update_post_meta/#workaround if (Utils::isJson($meta_value)) { $meta_value = \wp_slash($meta_value); } /** * Allows to modify a meta value when it gets copied to another language. * * @hook DevOwl/Multilingual/Copy/Meta/$type/$meta_key * @param {mixed} $meta_value * @param {int} $from Object id of source language item * @param {int} $to Object id of destination language item * @param string $locale Destination locale * @param string $meta_key * @return {mixed} */ return \apply_filters('DevOwl/Multilingual/Copy/Meta/' . $type . '/' . $meta_key, $meta_value, $from, $to, $locale, $meta_key); } }
Fatal error: Uncaught Error: Class "DevOwl\RealCookieBanner\Vendor\DevOwl\Multilingual\AbstractSyncPlugin" not found in /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/vendor/devowl-wp/multilingual/src/WPML.php:13 Stack trace: #0 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/host-webfonts-local/vendor/composer/ClassLoader.php(576): include() #1 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/host-webfonts-local/vendor/composer/ClassLoader.php(427): Composer\Autoload\{closure}() #2 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/vendor/devowl-wp/multilingual/src/AbstractLanguagePlugin.php(874): Composer\Autoload\ClassLoader->loadClass() #3 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/inc/Core.php(203): DevOwl\RealCookieBanner\Vendor\DevOwl\Multilingual\AbstractLanguagePlugin::determineImplementation() #4 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/inc/Core.php(716): DevOwl\RealCookieBanner\Core->__construct() #5 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/inc/base/others/start.php(39): DevOwl\RealCookieBanner\Core::getInstance() #6 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/index.php(48): require_once('...') #7 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-settings.php(526): include_once('...') #8 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-config.php(125): require_once('...') #9 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-load.php(50): require_once('...') #10 /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-blog-header.php(13): require_once('...') #11 /var/www/vhosts/christenrat-ffb.de/httpdocs/index.php(17): require('...') #12 {main} thrown in /var/www/vhosts/christenrat-ffb.de/httpdocs/wp-content/plugins/real-cookie-banner/vendor/devowl-wp/multilingual/src/WPML.php on line 13