54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
class WPML_TM_MCS_Post_Custom_Field_Settings_Menu extends WPML_TM_MCS_Custom_Field_Settings_Menu {
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function get_meta_type() {
|
|
return WPML_Custom_Field_Setting_Query_Factory::TYPE_POSTMETA;
|
|
}
|
|
|
|
/**
|
|
* @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';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
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' );
|
|
}
|
|
|
|
/**
|
|
* @param string $id
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_column_header( $id ) {
|
|
$header = $id;
|
|
if('name' === $id) {
|
|
$header = __( 'Custom fields', 'wpml-translation-management' );
|
|
}
|
|
return $header;
|
|
}
|
|
} |