getMainClass(); return $mainClass->getClassPrefix() . '_description_editor'; } public function onlyForAdmin() { return true; } public function process() { $productId = isset($_POST['id']) ? sanitize_text_field($_POST['id']) : ""; $product = ProductFactory::getWithId($productId); if ($product->getPhotos() === '#needload#') { echo '

Description not load yet! Click "load more details"

'; } else { wp_editor( $product->getDescription(), $product->getFullId('-'), ['media_buttons' => false] ); echo ''; echo ''; echo ''; _WP_Editors::enqueue_scripts(); wp_enqueue_script('jquery-ui-dialog'); print_footer_scripts(); _WP_Editors::editor_js(); } wp_die(); } }