Elementor\Tools::display_settings_page PHP Method

display_settings_page() public method

    public function display_settings_page()
    {
        ?>
		<div class="wrap">
			<h2><?php 
        _e('Elementor Tools', 'elementor');
        ?>
</h2>
			<form method="post" action="">
				<?php 
        settings_fields(self::PAGE_ID);
        do_settings_sections(self::PAGE_ID);
        ?>
			</form>
		</div><!-- /.wrap -->

		<?php 
    }