Elementor\Admin::admin_footer_text PHP Method

    public function admin_footer_text($footer_text)
    {
        $current_screen = get_current_screen();
        $is_elementor_screen = $current_screen && false !== strpos($current_screen->base, 'elementor');
        if ($is_elementor_screen) {
            $footer_text = sprintf(__('Enjoyed <strong>Elementor</strong>? Please leave us a %s rating. We really appreciate your support!', 'elementor'), '<a href="https://wordpress.org/support/view/plugin-reviews/elementor?filter=5#postform" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
        }
        return $footer_text;
    }