settings_factory->get_post_meta_keys(); } /** * @param string $key * * @return WPML_Post_Custom_Field_Setting */ protected function get_setting( $key ) { return $this->settings_factory->post_meta_setting( $key ); } /** * @return string */ protected function get_title() { return __( 'Custom Fields Translation', 'wpml-translation-management' ); } /** * @return string */ protected function kind_shorthand() { return 'cf'; } public function get_no_data_message() { return __( 'No custom fields found. It is possible that they will only show up here after you add more posts after installing a new plugin.', 'wpml-translation-management' ); } public function get_column_header( $id ) { $header = $id; if('name' === $id) { $header = __( 'Custom fields', 'wpml-translation-management' ); } return $header; } }