# weforms/1.6.15/includes/admin/class-admin-welcome.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.6.15. 64 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.6.15/code/includes/admin/class-admin-welcome.php
- Raw: https://pluginprobe.com/plugins/weforms/1.6.15/raw/includes/admin/class-admin-welcome.php
- Modified: 2020-10-20T13:26:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/weforms/1.6.15/code/includes/admin/class-admin-welcome.php#L10-L20`.

```php
<?php

/**
 * The welcome class after install
 *
 * @since 1.1.0
 */
class WeForms_Admin_Welcome {

    public function __construct() {
        add_action( 'admin_menu', [ $this, 'register_menu'  ] );
        add_action( 'admin_head', [ $this, 'hide_menu' ] );
        add_action( 'admin_init', [ $this, 'redirect_to_page' ], 9999 );
    }

    /**
     * Register the admin menu to setup the welcome message
     *
     * @return void
     */
    public function register_menu() {
        add_dashboard_page( __( 'Welcome to weForms', 'weforms' ), __( 'Welcome to weForms', 'weforms' ), 'manage_options', 'weforms-welcome', [ $this, 'welcome_page' ] );
    }

    /**
     * Hide the menu as we don't want to show the welcome page in admin menu
     *
     * @return void
     */
    public function hide_menu() {
        remove_submenu_page( 'index.php', 'weforms-welcome' );
    }

    /**
     * Redirect to the welcome page once the plugin is installed
     *
     * @return void
     */
    public function redirect_to_page() {
        if ( !get_transient( 'weforms_activation_redirect' ) ) {
            return;
        }

        delete_transient( 'weforms_activation_redirect' );

        // Only do this for single site installs.
        if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
            return;
        }

        wp_safe_redirect( admin_url( 'index.php?page=weforms-welcome' ) );
        exit;
    }

    /**
     * Render the welcome page
     *
     * @return void
     */
    public function welcome_page() {
        echo 'Hello There!';
    }
}

```
