* @since 1.50.0 */ namespace AdvancedAds\Importers; use AdvancedAds\Interfaces\Importer as Interface_Importer; defined( 'ABSPATH' ) || exit; /** * Tutorials. */ class Tutorials extends Importer implements Interface_Importer { /** * Get the unique identifier (ID) of the importer. * * @return string The unique ID of the importer. */ public function get_id(): string { return 'import-tutorials'; } /** * Get the title or name of the importer. * * @return string The title of the importer. */ public function get_title(): string { return __( 'Tutorials', 'advanced-ads' ); } /** * Get a description of the importer. * * @return string The description of the importer. */ public function get_description(): string { return ''; } /** * Get the icon to this importer. * * @return string The icon for the importer. */ public function get_icon(): string { return ''; } /** * Detect the importer in database. * * @return bool True if detected; otherwise, false. */ public function detect(): bool { return true; } /** * Show import button or not. * * @return bool */ public function show_button(): bool { return false; } /** * Render form. * * @return void */ public function render_form(): void { ?>
request a feature.', 'advanced-ads' ) ); ?>