19 lines
346 B
PHP
19 lines
346 B
PHP
<?php
|
|
|
|
namespace WPML\TM\Jobs;
|
|
|
|
class ExtraFieldDataInEditorFactory implements \IWPML_Backend_Action_Loader {
|
|
/**
|
|
* @return ExtraFieldDataInEditor
|
|
*/
|
|
public function create() {
|
|
return new ExtraFieldDataInEditor(
|
|
new \WPML_Custom_Field_Editor_Settings(
|
|
new \WPML_Custom_Field_Setting_Factory( wpml_load_core_tm() )
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
}
|