Airship\Cabin\Bridge\Landing\Admin::airshipLand PHP Method

airshipLand() public method

This function is called after the dependencies have been injected by AutoPilot. Think of it as a user-land constructor.
public airshipLand ( )
    public function airshipLand()
    {
        parent::airshipLand();
        $this->acct = $this->blueprint('UserAccounts');
        if (!empty($_GET['msg'])) {
            if ($_GET['msg'] === 'saved') {
                $this->storeLensVar('post_response', ['status' => 'OK', 'message' => \__('Your changes have been made successfully.')]);
            }
        }
        $this->storeLensVar('active_submenu', 'Admin');
    }