15 lines
432 B
PHP
15 lines
432 B
PHP
<?php
|
|
|
|
class NextendSocialProviderAmazon extends NextendSocialProviderDummy {
|
|
|
|
protected $color = '#2f292b';
|
|
|
|
public function __construct() {
|
|
$this->id = 'amazon';
|
|
$this->docUrl = 'https://social-login.nextendweb.com/documentation/providers/amazon/';
|
|
$this->label = 'Amazon';
|
|
$this->path = dirname(__FILE__);
|
|
}
|
|
}
|
|
|
|
NextendSocialLogin::addProvider(new NextendSocialProviderAmazon()); |