Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Zoom_Helpers::get_user()
get_user
Return Return
(void)
Source Source
File: src/integrations/zoom/helpers/zoom-helpers.php
public function get_user() { $users_option_exist = get_option( 'uap_zoom_api_connected_user', 'no' ); if ( 'no' !== $users_option_exist ) { return $users_option_exist; } try { $user = $this->api_get_user_info(); } catch ( \Exception $e ) { $user = false; } return $user; }
Expand full source code Collapse full source code View on Github