Helper::get_access_token()
Return the access token for the Vimeo API.
Return
(bool|string) The access token or bool false if no token is set
Source
File: includes/libs/helper.class.php
public static function get_access_token(){ $options = Plugin::instance()->get_options(); $token = false; if( !empty( $options['oauth_secret'] ) ){ $token = $options['oauth_secret']; }elseif( !empty( $options['oauth_token'] ) ){ $token = $options['oauth_token']; } /** * Filter on Vimeo access token. * Allows setup of a different access token by code. * * @param string $token The Vimeo API token */ return apply_filters( 'vimeotheque\vimeo_api\access_token', $token ); }