Skip to Content
Menu

is_initialized_before()

Check if Nebula has been previously initialized.

PHP March 16, 2017

Usage

PHP
nebula()->is_initialized_before()

Parameters

This function does not accept any parameters. Is this incorrect?

Was this page helpful? Yes No


    A feedback message is required to submit this form.


    Please check that you have entered a valid email address.

    Enter your email address if you would like a response.

    Thank you for your feedback!

    Source File

    Located in /libs/Admin/Automation.php on line 460.

    No Hooks

    This function does not have any filters or actions available. Request one?
    PHP
            public function is_initialized_before(){
                $nebula_initialized_option = $this->get_data('initialized');
    
                if ( empty($nebula_initialized_option) ){
                    return false;
                }
    
                return true;
            }
    

    Override

    This function can not be short-circuited with an override filter. Request one?