: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace WPForms\Admin\Tools\Importers;
* Interface WPForms_Importer_Interface to handle common methods for all importers.
interface ImporterInterface {
* Define required properties.
public function get_forms();
* @param int $id Form ID.
public function get_form( $id );
* Import a single form using AJAX.
public function import_form();
* Replace 3rd-party form provider tags/shortcodes with our own Smart Tags.
* @param string $string Text to look for Smart Tags in.
* @param array $fields List of fields to process Smart Tags in.
public function get_smarttags( $string, $fields );