This repository has been archived on 2022-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
divi/core/components/api/init.php

8 lines
194 B
PHP

<?php
if ( ! function_exists( 'et_core_api_init' ) ):
function et_core_api_init() {
add_action( 'admin_init', array( 'ET_Core_API_OAuthHelper', 'finish_oauth2_authorization' ), 20 );
}
endif;