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

15 lines
442 B
PHP

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