data = $doc_data; $this->post_statuses = $post_statuses; $this->selected = $selected; $this->post_types = $post_types; $this->active_languages = $active_languages; $this->translation_filter = $translation_filter; $this->sitepress = $sitepress; $this->translatable_element_provider = $translatable_element_provider; } public function get_word_count() { $current_document = $this->data; $type = 'post'; if ( $this->is_external_type() ) { $type = 'package'; } $translatable_element = $this->translatable_element_provider->get_from_type( $type, $current_document->ID ); return apply_filters( 'wpml_tm_estimated_words_count', $translatable_element->get_words_count(), $current_document ); } public function get_title() { return $this->data->title ? $this->data->title : __( '(missing title)', 'wpml-translation-management' ); } private function is_external_type() { $doc = $this->data; return strpos( $doc->translation_element_type, 'post_' ) !== 0; } public function get_type_prefix() { $type = $this->data->translation_element_type; $type = explode( '_', $type ); if ( count( $type ) > 1 ) { $type = $type[0]; } return $type; } public function get_type() { $type = $this->data->translation_element_type; $type = explode( '_', $type ); if ( count( $type ) > 1 ) { unset( $type[0] ); } $type = join( '_', $type ); return $type; } public function display() { global $iclTranslationManagement; $current_document = $this->data; $count = $this->get_word_count(); $post_actions = array(); $post_actions_link = ''; $element_type = $this->get_type_prefix(); $check_field_name = $element_type; $post_title = $this->get_title(); $post_view_link = ''; $post_edit_link = ''; if ( ! $this->is_external_type() ) { $post_link_factory = new WPML_TM_Post_Link_Factory( $this->sitepress ); $post_edit_link = $post_link_factory->edit_link_anchor( $current_document->ID, __( 'Edit', 'wpml-translation-management' ) ); $post_view_link = $post_link_factory->view_link_anchor( $current_document->ID, __( 'View', 'wpml-translation-management' ) ); } $jobs = ( new PostJobsRepository() )->getJobsGroupedByLang( $current_document->ID, $element_type ); $post_edit_link = apply_filters( 'wpml_document_edit_item_link', $post_edit_link, __( 'Edit', 'wpml-translation-management' ), $current_document, $element_type, $this->get_type() ); if ( $post_edit_link ) { $post_actions[] = "" . $post_edit_link . ''; } $post_view_link = apply_filters( 'wpml_document_view_item_link', $post_view_link, __( 'View', 'wpml-translation-management' ), $current_document, $element_type, $this->get_type() ); if ( $post_view_link ) { $post_actions[] = "" . $post_view_link . ''; } if ( $post_actions ) { $post_actions_link .= '
' . implode( ' | ', $post_actions ) . '
'; } $row_data = apply_filters( 'wpml_translation_dashboard_row_data', array( 'word_count' => $count ), $this->data ); $row_data_str = ''; foreach ( $row_data as $key => $value ) { $row_data_str .= 'data-' . esc_attr( $key ) . '="' . esc_attr( $value ) . '" '; } ?> > selected, false ); ?> />
is_translation ) { $note = WPML_TM_Translator_Note::get( $current_document->ID ); $this->note_text = ''; if ( $note ) { $this->note_text = __( 'Edit note for the translators', 'wpml-translation-management' ); $this->note_icon_class = 'otgs-ico-note-edit-o'; } else { $this->note_text = __( 'Add note for the translators', 'wpml-translation-management' ); $this->note_icon_class = 'otgs-ico-note-add-o'; } } ?>
post_types[ $this->get_type() ] ) ) { $custom_post_type_labels = $this->post_types[ $this->get_type() ]->labels; if ( $custom_post_type_labels->singular_name != '' ) { echo $custom_post_type_labels->singular_name; } else { echo $custom_post_type_labels->name; } } else { echo $this->get_type(); } ?> active_languages as $code => $lang ) { if ( $code == $this->data->language_code ) { continue; } if ( isset( $jobs[ $code ] ) ) { $job = $jobs[ $code ]; $status = $job['status'] ?: $this->get_status_in_lang( $code ); $job_entity_id = $job['entity_id']; $job_id = $job['job_id']; } else { $status = $this->get_status_in_lang( $code ); $job_entity_id = $job_id = 0; } switch ( $status ) { case ICL_TM_NOT_TRANSLATED: $translation_status_text = esc_attr( __( 'Not translated', 'wpml-translation-management' ) ); break; case ICL_TM_WAITING_FOR_TRANSLATOR: $translation_status_text = esc_attr( __( 'Waiting for translator', 'wpml-translation-management' ) ); break; case ICL_TM_IN_BASKET: $translation_status_text = esc_attr( __( 'In basket', 'wpml-translation-management' ) ); break; case ICL_TM_IN_PROGRESS: $translation_status_text = esc_attr( __( 'In progress', 'wpml-translation-management' ) ); $has_jobs_in_progress = true; break; case ICL_TM_TRANSLATION_READY_TO_DOWNLOAD: $translation_status_text = esc_attr( __( 'Translation ready to download', 'wpml-translation-management' ) ); $has_jobs_in_progress = true; break; case ICL_TM_DUPLICATE: $translation_status_text = esc_attr( __( 'Duplicate', 'wpml-translation-management' ) ); break; case ICL_TM_COMPLETE: $translation_status_text = esc_attr( __( 'Complete', 'wpml-translation-management' ) ); break; case ICL_TM_NEEDS_UPDATE: $translation_status_text = ' - ' . esc_attr( __( 'needs update', 'wpml-translation-management' ) ); break; default: $translation_status_text = ''; } $status_icon_class = $iclTranslationManagement->status2icon_class( $status, ICL_TM_NEEDS_UPDATE === (int) $status ); ?> get_date(); if ( $element_date ) { echo date( 'Y-m-d', strtotime( $element_date ) ); } echo '
'; echo $this->get_general_status(); ?> is_translation ) { ?> has_remote_jobs( $jobs ) ) { ?> is_external_type() ) { /** @var WP_Post $post */ $post = get_post( $this->data->ID ); $date = get_post_time( 'U', false, $post ); } else { $date = apply_filters( 'wpml_tm_dashboard_date', time(), $this->data->ID, $this->data->translation_element_type ); } $date = date( 'y-m-d', $date ); return $date; } private function has_remote_jobs( $jobs ) { foreach ( $jobs as $job ) { if ( ! $job['isLocal'] ) { return true; } } return false; } private function get_general_status() { if ( ! $this->is_external_type() ) { $status = get_post_status( $this->data->ID ); $status_text = isset( $this->post_statuses[ $status ] ) ? $this->post_statuses[ $status ] : $status; } else { $status_text = apply_filters( 'wpml_tm_dashboard_status', 'external', $this->data->ID, $this->data->translation_element_type ); } return $status_text; } private function get_status_in_lang( $language_code ) { $status_helper = wpml_get_post_status_helper(); return $status_helper->get_status( false, $this->data->trid, $language_code ); } }