VaultPress::admin_menu PHP Method

admin_menu() public method

public admin_menu ( )
    function admin_menu()
    {
        // if Jetpack is loaded then we need to wait for that menu to be added
        if (class_exists('Jetpack')) {
            add_action('jetpack_admin_menu', array($this, 'load_menu'));
        } else {
            $this->load_menu();
        }
    }
VaultPress