2026-02-05 17:08:59 +03:00

15 lines
427 B
PHP

<?php
class NextendSocialProviderYahoo extends NextendSocialProviderDummy {
protected $color = '#720e9e';
public function __construct() {
$this->id = 'yahoo';
$this->docUrl = 'https://social-login.nextendweb.com/documentation/providers/yahoo/';
$this->label = 'Yahoo';
$this->path = dirname(__FILE__);
}
}
NextendSocialLogin::addProvider(new NextendSocialProviderYahoo());