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