class-wpml-post-custom-field-setting.php 696 Bytes
<?php

class WPML_Post_Custom_Field_Setting extends WPML_Custom_Field_Setting {

	/**
	 * @return string
	 */
	protected function get_state_array_setting_index() {
		return WPML_Post_Custom_Field_Setting_Keys::get_state_array_setting_index();
	}

	/**
	 * @return string
	 */
	protected function get_unlocked_setting_index() {
		return WPML_Post_Custom_Field_Setting_Keys::get_unlocked_setting_index();
	}

	/**
	 * @return string
	 */
	protected function get_setting_prefix() {
		return WPML_Post_Custom_Field_Setting_Keys::get_setting_prefix();
	}

	/**
	 * @return  string[]
	 */
	protected function get_excluded_keys() {
		return WPML_Post_Custom_Field_Setting_Keys::get_excluded_keys();
	}
}