%PDF- %PDF-
| Direktori : /home/gachan/www/wp-content/plugins/sitepress-multilingual-cms/inc/ |
| Current File : /home/gachan/www/wp-content/plugins/sitepress-multilingual-cms/inc/wpml-private-actions.php |
<?php
function wpml_new_duplicated_terms_filter( $post_ids, $duplicates_only = true ) {
global $wpdb, $sitepress;
require_once ICL_PLUGIN_PATH . '/inc/taxonomy-term-translation/wpml-term-hierarchy-duplication.class.php';
$hier_dupl = new WPML_Term_Hierarchy_Duplication( $wpdb, $sitepress );
$taxonomies = $hier_dupl->duplicates_require_sync( $post_ids, $duplicates_only );
if ( (bool) $taxonomies ) {
$text = __(
"The posts you just saved led to the creation of new hierarchical terms.\nTheir hierarchical relationship to one another is not yet synchronized with the original post's terms for the following taxonomies:",
'wpml-translation-management'
);
$text = '<p>' . $text . '</p>';
foreach ( $taxonomies as $taxonomy ) {
$text .= '<p><a href="admin.php?page='
. ICL_PLUGIN_FOLDER . '/menu/taxonomy-translation.php&taxonomy='
. $taxonomy . '&sync=1">' . get_taxonomy_labels(
get_taxonomy( $taxonomy )
)->name . '</a></p>';
}
$message_args = array(
'id' => 'duplication-tm-dashboard-notification',
'text' => $text,
'type' => 'information',
'group' => 'duplication-notification',
'admin_notice' => true,
'show_once' => true,
'hide_per_user' => true
);
ICL_AdminNotifier::add_message( $message_args );
}
}
add_action( 'wpml_new_duplicated_terms', 'wpml_new_duplicated_terms_filter', 10, 2 );