/**
 * For backwards compatibility only: this echoes the html created in auth_googleoauth2_render_buttons
 */
function auth_googleoauth2_display_buttons($echo = true)
{
    $html = auth_googleoauth2_render_buttons();
    if ($echo) {
        echo $html;
    }
    return $html;
}
Esempio n. 2
0
/**
 * For backwards compatibility only: this echoes the html created in auth_googleoauth2_render_buttons
 */
function auth_googleoauth2_display_buttons()
{
    echo auth_googleoauth2_render_buttons();
}