Envato_Theme_Setup_Wizard::setup_wizard_footer PHP Метод

        public function setup_wizard_footer()
        {
            ?>
		<?php 
            if ('next_steps' === $this->step) {
                ?>
			<a class="wc-return-to-dashboard"
			   href="<?php 
                echo esc_url(admin_url());
                ?>
"><?php 
                esc_html_e('Return to the WordPress Dashboard');
                ?>
</a>
		<?php 
            }
            ?>
		</body>
		<?php 
            @do_action('admin_footer');
            // this was spitting out some errors in some admin templates. quick @ fix until I have time to find out what's causing errors.
            do_action('admin_print_footer_scripts');
            ?>
		</html>
		<?php 
        }